add:空托盘出库
This commit is contained in:
@@ -5,7 +5,8 @@ import lombok.RequiredArgsConstructor;
|
||||
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.b_lms.storage_manage.ios.service.iostorInv.util.impl.VehicleManageServiceImpl;
|
||||
import org.nl.b_lms.storage_manage.ios.service.iostorInv.util.impl.InVehicleManageServiceImpl;
|
||||
import org.nl.b_lms.storage_manage.ios.service.iostorInv.util.impl.OutVehicleManageServiceImpl;
|
||||
import org.nl.modules.logging.annotation.Log;
|
||||
import org.nl.wms.st.inbill.service.CheckOutBillService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
@@ -363,10 +364,16 @@ public class CheckOutBillController {
|
||||
|
||||
|
||||
@PostMapping("/testInEmp")
|
||||
@Log("销售出库回传mes")
|
||||
|
||||
@Log("空载具入库测试")
|
||||
public ResponseEntity<Object> testInEmp(@RequestBody JSONObject whereJson) {
|
||||
new VehicleManageServiceImpl().inVehicle(whereJson);
|
||||
new InVehicleManageServiceImpl().inVehicle(whereJson);
|
||||
return new ResponseEntity<>(HttpStatus.OK);
|
||||
}
|
||||
|
||||
@PostMapping("/testOutEmp")
|
||||
@Log("空载具出库测试")
|
||||
public ResponseEntity<Object> testOutEmp(@RequestBody JSONObject whereJson) {
|
||||
new OutVehicleManageServiceImpl().outVehicle(whereJson);
|
||||
return new ResponseEntity<>(HttpStatus.OK);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user