|
@@ -66,6 +66,8 @@ public class WarehouseInOutInfoServiceImpl extends ServiceImpl<WarehouseInOutInf
|
|
|
|
|
|
@Autowired
|
|
@Autowired
|
|
private INewWorkflowService workflowService;
|
|
private INewWorkflowService workflowService;
|
|
|
|
+ @Autowired
|
|
|
|
+ private IContractManagementInfoService contractManagementInfoService;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 待完成页面列表
|
|
* 待完成页面列表
|
|
@@ -612,6 +614,24 @@ public class WarehouseInOutInfoServiceImpl extends ServiceImpl<WarehouseInOutInf
|
|
List<WarehouseInOutInfo> dataList = baseMapper.selectInfoByKeyWord(pageView);
|
|
List<WarehouseInOutInfo> dataList = baseMapper.selectInfoByKeyWord(pageView);
|
|
return dataList;
|
|
return dataList;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 根据合同号查询公司id
|
|
|
|
+ *
|
|
|
|
+ * @param contractNo
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ @Override
|
|
|
|
+ public String selectCompId(String contractNo) {
|
|
|
|
+ ContractManagementInfo contractManagementInfo = contractManagementInfoService.selectOne(new EntityWrapper<ContractManagementInfo>()
|
|
|
|
+ .eq("contract_no",contractNo));
|
|
|
|
+ if(contractManagementInfo != null){
|
|
|
|
+ return contractManagementInfo.getCompId();
|
|
|
|
+ }
|
|
|
|
+ return "0" ;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 流转记录查询(临时仓库)
|
|
* 流转记录查询(临时仓库)
|
|
*
|
|
*
|