|
|
|
@ -13,48 +13,61 @@ import org.springblade.core.tool.api.R;
|
|
|
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
|
import java.util.Map; |
|
|
|
|
import java.util.Set; |
|
|
|
|
|
|
|
|
|
public interface ITrunklineAdvanceDetailService extends BaseService<TrunklineAdvanceDetailEntity> { |
|
|
|
|
|
|
|
|
|
void updatePackageStatusById(String packageStatus, Long advanceDetailId,Long warehouseId,String warehouseName); |
|
|
|
|
void updatePackageStatusById(String packageStatus, Long advanceDetailId, Long warehouseId, String warehouseName); |
|
|
|
|
|
|
|
|
|
TrunklineAdvanceDetailEntity findEntityByOrderPackageCodeAndWarehouseId(String orderPackageCode, Long warehouseId); |
|
|
|
|
TrunklineAdvanceDetailEntity findEntityByOrderPackageCodeAndWarehouseId(String orderPackageCode, Long warehouseId); |
|
|
|
|
|
|
|
|
|
List<TrunklineAdvanceDetailVO> findList(Long advanceId); |
|
|
|
|
List<TrunklineAdvanceDetailVO> findList(Long advanceId); |
|
|
|
|
|
|
|
|
|
List<AdvanceDetailGoodsVO> findGoodsListByAdvanceIds(List<Long> advanceIds); |
|
|
|
|
List<AdvanceDetailGoodsVO> findGoodsListByAdvanceIds(List<Long> advanceIds); |
|
|
|
|
|
|
|
|
|
AdvanceDetailStockNumVO findStockNumByAdvanceIds(List<Long> advanceIds); |
|
|
|
|
|
|
|
|
|
List<BillladingPackageVO> findBillladingPackageByAdvanceIdsAnd(List<Long> advanceIds); |
|
|
|
|
|
|
|
|
|
IPage<TrunklineAdvanceDetailVO> advanceDetailPageList(AdvanceDetailDTO advanceDetailDTO); |
|
|
|
|
IPage<TrunklineAdvanceDetailVO> advanceDetailPageList(AdvanceDetailDTO advanceDetailDTO); |
|
|
|
|
|
|
|
|
|
TrunklineAdvanceDetailEntity findEntityByOrderPackageCode(String orderPackageCode); |
|
|
|
|
TrunklineAdvanceDetailEntity findEntityByOrderPackageCode(String orderPackageCode); |
|
|
|
|
|
|
|
|
|
Integer getIncomingNum(Long advanceId); |
|
|
|
|
Integer getIncomingNum(Long advanceId); |
|
|
|
|
|
|
|
|
|
TrunklineAdvanceDetailEntity findEntityByOrderPackageCodeAndTrainNumberAndServiceNumAndOrderCode(String orderPackageCode, String trainNumber, String serviceNum, String orderCode); |
|
|
|
|
TrunklineAdvanceDetailEntity findEntityByOrderPackageCodeAndTrainNumberAndServiceNumAndOrderCode(String orderPackageCode, String trainNumber, String serviceNum, String orderCode); |
|
|
|
|
|
|
|
|
|
Integer getNumByAdvanceId(Long advanceId); |
|
|
|
|
|
|
|
|
|
OrderPackgeCodeDataVO showAdvancePackgeCode(Map<String, Object> params) throws Exception; |
|
|
|
|
OrderPackgeCodeDataVO showAdvancePackgeCode(Map<String, Object> params) throws Exception; |
|
|
|
|
|
|
|
|
|
List<TrunklineAdvanceDetailEntity> findListByAdvanceId(Long advanceId); |
|
|
|
|
|
|
|
|
|
List<String> findOrderPackageCodesByAdvanceId(Long advanceId); |
|
|
|
|
|
|
|
|
|
void deleteByAdvanceId(Long advanceId); |
|
|
|
|
void deleteByAdvanceId(Long advanceId); |
|
|
|
|
|
|
|
|
|
R deleteAdvanceDetail(AdvanceDetailDTO advanceDetailDTO); |
|
|
|
|
R deleteAdvanceDetail(AdvanceDetailDTO advanceDetailDTO); |
|
|
|
|
|
|
|
|
|
Integer findTotalNumByOrderCode(String orderCode); |
|
|
|
|
Integer findTotalNumByOrderCode(String orderCode); |
|
|
|
|
|
|
|
|
|
void updateWaybillNoByAdvanceId(Long advanceId, String waybillNo, Long waybillId); |
|
|
|
|
|
|
|
|
|
List<String> findIncomingWarehouseName(Long advanceId); |
|
|
|
|
|
|
|
|
|
List<String> findNoIncomingPackageCode(Long advanceId); |
|
|
|
|
List<String> findNoIncomingPackageCode(Long advanceId); |
|
|
|
|
|
|
|
|
|
Integer findListByAdvanceIdAndPackageStatus(Long advanceId, String packageStatus); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 根据包裹代码集合查找暂存单中存在的包裹编码。 |
|
|
|
|
* |
|
|
|
|
* @param orderPackageCodes 订单包裹代码的集合,类型为Set<String>。 |
|
|
|
|
* 这是需要查询的订单包裹的唯一标识符集合。 |
|
|
|
|
* @return 返回一个List<String>类型的列表,包含与输入的订单包裹代码相匹配的所有包裹编码。 |
|
|
|
|
* 如果没有找到匹配的包裹编码,则返回空列表。 |
|
|
|
|
*/ |
|
|
|
|
List<String> findPackageCodeByCodes(Set<String> orderPackageCodes); |
|
|
|
|
|
|
|
|
|
Integer findListByAdvanceIdAndPackageStatus(Long advanceId, String packageStatus); |
|
|
|
|
} |
|
|
|
|