Merge remote-tracking branch 'origin/master'

liweidong
ShiJiuZhou 3 days ago
commit 59e80047aa
  1. 4
      blade-service-api/blade-erpdata-api/src/main/java/org/springblade/erpdata/feign/IErpDataProduceClient.java

@ -42,6 +42,8 @@ public interface IErpDataProduceClient {
String SAVE_DECLARE = API_PREFIX + "/saveDeclare"; String SAVE_DECLARE = API_PREFIX + "/saveDeclare";
String TRAIL_ITEM_LIST = API_PREFIX + "/trialItemList"; String TRAIL_ITEM_LIST = API_PREFIX + "/trialItemList";
String CHECK_COMPLETE = API_PREFIX + "/checkComplete"; String CHECK_COMPLETE = API_PREFIX + "/checkComplete";
String PRO_RBINVIOGEN = API_PREFIX + "/proRbinviogen";
String PRO_RBTRANSFERLEV = API_PREFIX + "/proRbtransferlev";
/** /**
@ -188,6 +190,7 @@ public interface IErpDataProduceClient {
/** /**
* 入库单发送erp * 入库单发送erp
*/ */
@GetMapping(PRO_RBINVIOGEN)
R<ErpReturnDataVO> proRbinviogen(@RequestParam(value = "hrCode") String hrCode, @RequestParam(value = "partCode") String partCode, R<ErpReturnDataVO> proRbinviogen(@RequestParam(value = "hrCode") String hrCode, @RequestParam(value = "partCode") String partCode,
@RequestParam(value = "handoverQty") Integer handoverQty, @RequestParam(value = "prodIdent", required = false) String prodIdent, @RequestParam(value = "handoverQty") Integer handoverQty, @RequestParam(value = "prodIdent", required = false) String prodIdent,
@RequestParam(value = "batchNo") String batchNo, @RequestParam(value = "ypCode") String ypCode, @RequestParam(value = "batchNo") String batchNo, @RequestParam(value = "ypCode") String ypCode,
@ -200,6 +203,7 @@ public interface IErpDataProduceClient {
/** /**
* 转工单发送erp * 转工单发送erp
*/ */
@GetMapping(PRO_RBTRANSFERLEV)
R<ErpReturnDataVO> proRbtransferlev(@RequestParam(value = "hrCode") String hrCode, @RequestParam(value = "ypCode") String ypCode, R<ErpReturnDataVO> proRbtransferlev(@RequestParam(value = "hrCode") String hrCode, @RequestParam(value = "ypCode") String ypCode,
@RequestParam(value = "woCode") String woCode, @RequestParam(value = "cardNo") String cardNo, @RequestParam(value = "woCode") String woCode, @RequestParam(value = "cardNo") String cardNo,
@RequestParam(value = "partCode") String partCode, @RequestParam(value = "batchNo") String batchNo, @RequestParam(value = "partCode") String partCode, @RequestParam(value = "batchNo") String batchNo,

Loading…
Cancel
Save