|
|
@ -2,6 +2,7 @@ package org.nl.wms.st.outbill.rest; |
|
|
|
|
|
|
|
import com.alibaba.fastjson.JSONObject; |
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
import org.nl.b_lms.storage_manage.ios.enums.IOSEnum; |
|
|
|
import org.nl.b_lms.storage_manage.ios.service.iostorInv.IStIvtIostorinvOutService; |
|
|
|
import org.nl.common.TableDataInfo; |
|
|
|
import org.nl.common.domain.query.PageQuery; |
|
|
@ -17,6 +18,7 @@ import org.springframework.http.ResponseEntity; |
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
|
|
|
|
import javax.annotation.Resource; |
|
|
|
import java.util.Map; |
|
|
|
|
|
|
|
/** |
|
|
|
* 出库单管理 |
|
|
@ -72,4 +74,15 @@ public class CheckOutBillController { |
|
|
|
public ResponseEntity<Object> getInvTypes() { |
|
|
|
return new ResponseEntity<>(dictService.getInvTypes(), HttpStatus.OK); |
|
|
|
} |
|
|
|
@GetMapping("/getOutBillDis2") |
|
|
|
@Log("查询未出库单分配") |
|
|
|
public ResponseEntity<Object> getOutBillDis2(@RequestParam Map whereJson) { |
|
|
|
return new ResponseEntity<>(checkOutBillService.getOutBillDis2(whereJson), HttpStatus.OK); |
|
|
|
} |
|
|
|
@PostMapping("/allDiv") |
|
|
|
@Log("出库单全部分配") |
|
|
|
public ResponseEntity<Object> allDiv(@RequestBody JSONObject whereJson) { |
|
|
|
iStIvtIostorinvOutService.allDiv(whereJson); |
|
|
|
return new ResponseEntity<>(HttpStatus.NO_CONTENT); |
|
|
|
} |
|
|
|
} |
|
|
|