| | |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.annotation.Resource; |
| | | import jakarta.annotation.Resource; |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | |
| | | return pdaOutStockService.containerRebinding(param,getLoginUserId()); |
| | | } |
| | | |
| | | @PostMapping("/orderOut/buffStore/callEmpty") |
| | | @ApiOperation("灌桶入库呼叫空桶") |
| | | public R buffStoreCallEmpty(@RequestBody PdaGeneralParam param) { |
| | | param.getSta1(); |
| | | return R.ok(); |
| | | @PostMapping("/orderOut/getOrderItem") |
| | | @ApiOperation("灌桶入库呼叫新料") |
| | | public R getOrderItem(@RequestBody PdaGeneralParam param) { |
| | | return pdaOutStockService.getOrderItem(param); |
| | | } |
| | | |
| | | @PostMapping("/orderOut/buffStore/callNewMat") |
| | | @PostMapping("/orderOut/getStationArea") |
| | | @ApiOperation("灌桶入库呼叫新料") |
| | | public R buffStoreCallNewMat(@RequestBody PdaGeneralParam param) { |
| | | param.getSta2(); |
| | | return R.ok(); |
| | | public R getStationArea(@RequestBody PdaGeneralParam param) { |
| | | return pdaOutStockService.getStationArea(param); |
| | | } |
| | | |
| | | @PostMapping("/orderOut/productionDirectDelivery") |
| | | @ApiOperation("生产直送") |
| | | public R productionDirectDelivery(@RequestBody PdaGeneralParam param) { |
| | | return pdaOutStockService.productionDirectDelivery(param,getLoginUserId()); |
| | | } |
| | | |
| | | @PostMapping("/orderOut/finishedProductDirectOutput") |
| | | @ApiOperation("成品直出") |
| | | public R finishedProductDirectOutput(@RequestBody PdaGeneralParam param) { |
| | | return pdaOutStockService.finishedProductDirectOutput(param,getLoginUserId()); |
| | | } |
| | | |
| | | } |
| | | |