From 2263d722551f8179376c7291124148effa391672 Mon Sep 17 00:00:00 2001
From: guoyuji <guoyujie@ng.com>
Date: 星期五, 26 一月 2024 16:14:28 +0800
Subject: [PATCH] 修改order实体类文件
---
north-glass-erp/src/main/java/com/example/erp/controller/mm/FinishedGoodsInventoryController.java | 24 +++++++++++++++++++++---
1 files changed, 21 insertions(+), 3 deletions(-)
diff --git a/north-glass-erp/src/main/java/com/example/erp/controller/mm/FinishedGoodsInventoryController.java b/north-glass-erp/src/main/java/com/example/erp/controller/mm/FinishedGoodsInventoryController.java
index 23331b2..6f36346 100644
--- a/north-glass-erp/src/main/java/com/example/erp/controller/mm/FinishedGoodsInventoryController.java
+++ b/north-glass-erp/src/main/java/com/example/erp/controller/mm/FinishedGoodsInventoryController.java
@@ -1,10 +1,18 @@
package com.example.erp.controller.mm;
+
+
+import com.example.erp.common.Constants;
import com.example.erp.common.Result;
+import com.example.erp.entity.pp.FlowCard;
+import com.example.erp.exception.ServiceException;
import com.example.erp.service.mm.FinishedGoodsInventoryService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import com.example.erp.entity.mm.FinishedGoodsInventory;
+
+
+import java.util.Map;
@RestController
@RequestMapping("/FinishedGoodsInventory")
@@ -19,8 +27,18 @@
}
@PostMapping("/getseletwarehousing/{pageNum}/{pageSize}")
- public Result getseletwarehousing(@PathVariable Integer pageNum, @PathVariable Integer pageSize, @RequestBody FinishedGoodsInventory finishedGoodsInventory){
- System.out.println(finishedGoodsInventory);
- return Result.seccess(finishedGoodsInventoryService.getseletwarehousing(pageNum,pageSize,finishedGoodsInventory));
+ public Result getseletwarehousing(@PathVariable Integer pageNum, @PathVariable Integer pageSize, @RequestBody FlowCard flowCard){
+ System.out.println(flowCard);
+ return Result.seccess(finishedGoodsInventoryService.getseletwarehousing(pageNum,pageSize,flowCard));
+ }
+
+ @PostMapping("/addseletwarehousing")
+ public Result addseletwarehousing( @RequestBody Map<String,Map<String,Object>> object){
+ if(finishedGoodsInventoryService.addseletwarehousing(object)){
+ return Result.seccess();
+ }else {
+ throw new ServiceException(Constants.Code_500,"鍏ュ簱澶辫触");
+
+ }
}
}
--
Gitblit v1.8.0