|
@@ -816,13 +816,12 @@ public class WarehouseBaseInfoServiceImpl extends ServiceImpl<WarehouseBaseInfoM
|
|
|
}
|
|
|
return temp;
|
|
|
}
|
|
|
- //查采购合同编号(不包含自运)
|
|
|
+ //查采购合同编号
|
|
|
if (flag == 0) {
|
|
|
List<ContractManagementInfo> contractManagementInfoList = contractManagementInfoService.selectList(new EntityWrapper<ContractManagementInfo>()
|
|
|
.eq("comp_id", compId)
|
|
|
.eq("contract_type", "2")
|
|
|
.eq("status_flag", "1")
|
|
|
- .eq("deliver_type", "2")
|
|
|
.eq("delete_flag", "0")
|
|
|
.orderBy("update_date", false));
|
|
|
for (ContractManagementInfo contractManagementInfo : contractManagementInfoList) {
|
|
@@ -1214,6 +1213,24 @@ public class WarehouseBaseInfoServiceImpl extends ServiceImpl<WarehouseBaseInfoM
|
|
|
}
|
|
|
return temp;
|
|
|
}
|
|
|
+ //采购合同不包含自运
|
|
|
+ else if (flag == 8) {
|
|
|
+ List<ContractManagementInfo> contractManagementInfoList = contractManagementInfoService.selectList(new EntityWrapper<ContractManagementInfo>()
|
|
|
+ .eq("comp_id", compId)
|
|
|
+ .eq("contract_type", "2")
|
|
|
+ .eq("status_flag", "1")
|
|
|
+ .eq("deliver_type", "2")
|
|
|
+ .eq("delete_flag", "0")
|
|
|
+ .orderBy("update_date", false));
|
|
|
+ for (ContractManagementInfo contractManagementInfo : contractManagementInfoList) {
|
|
|
+ ContractGoodsInfo contractGoodsInfo = contractGoodsInfoService.selectOne(new EntityWrapper<ContractGoodsInfo>()
|
|
|
+ .eq("contract_id", contractManagementInfo.getId()));
|
|
|
+ contractManagementInfo.setGoodsName(contractGoodsInfo.getGoodsName());
|
|
|
+ contractManagementInfo.setGoodsNameKey(contractGoodsInfo.getGoodsNameKey());
|
|
|
+ temp.add(contractManagementInfo);
|
|
|
+ }
|
|
|
+ return temp;
|
|
|
+ }
|
|
|
//查采购、销售合同编号,以及移库任务编号
|
|
|
else {
|
|
|
List<ContractManagementInfo> contractManagementInfoList = contractManagementInfoService.selectList(new EntityWrapper<ContractManagementInfo>()
|