添加入库单类型枚举
This commit is contained in:
parent
fcacfda606
commit
b2c0cc3b34
|
|
@ -1,5 +1,6 @@
|
|||
package com.ruoyi.web.controller.app;
|
||||
|
||||
import com.alibaba.fastjson2.JSON;
|
||||
import com.ruoyi.app.domain.*;
|
||||
import com.ruoyi.app.domain.DTO.PmsStockInCompleteReq;
|
||||
import com.ruoyi.app.service.*;
|
||||
|
|
@ -47,7 +48,7 @@ public class AppPmsController extends BaseController {
|
|||
@Autowired
|
||||
private IAppStockService appStockService;
|
||||
|
||||
private final List<Integer> orderInTypeList = Arrays.asList(1, 2, 3, 4, 5, 6);
|
||||
private final List<Integer> orderInTypeList = Arrays.asList(1, 2, 3, 4, 5, 6,7,8);
|
||||
|
||||
/**
|
||||
* Pms入库单请求
|
||||
|
|
@ -57,6 +58,7 @@ public class AppPmsController extends BaseController {
|
|||
@PostMapping("/orderIn")
|
||||
@Anonymous
|
||||
public AjaxResult pmsOrderIn(@RequestBody PmsOrderInRequest orderInRequest) {
|
||||
logger.info("Pms入库单请求:{}", JSON.toJSONString(orderInRequest));
|
||||
// TODO
|
||||
// 判断数据是否缺失
|
||||
Integer orderType = orderInRequest.getOrderType();
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user