pda交接作业单图片上传并出库

This commit is contained in:
zhou-hongcheng
2026-02-04 13:46:33 +08:00
parent a7e0a00d88
commit 06830c2fc1
2 changed files with 3 additions and 2 deletions
@@ -196,7 +196,8 @@ public class HandoverTaskOrderApplicationService {
//pda上传图片插入出库管理
stockOutOrderService.update(new LambdaUpdateWrapper<StockOutOrder>()
.eq(StockOutOrder::getOutOrderNumber,handoverTaskOrderDO.getOrderNumber())
.set(StockOutOrder::getPictureApp,handoverTaskOrderDO.getPictureApp())
.set(StockOutOrder::getStatus,"9")//设置为出库
.set(StockOutOrder::getPictureApp,handoverTaskOrderDO.getPictureApp())//多张图片以,逗号隔开
);
}
}
@@ -115,7 +115,7 @@ public class HandoverTaskOrderApi extends BaseController {
return toAjax(handoverTaskOrderApplicationService.completeHandover(handoverTaskOrderDO));
}
@ApiOperation("交接作业单APP上传图片")
@ApiOperation("交接作业单APP上传图片并出库")
@PostMapping("/pictureApp")
public AjaxResult pictureApp(@RequestBody HandoverTaskOrderDTO handoverTaskOrderDTO) {
HandoverTaskOrderDO handoverTaskOrderDO = handoverTaskOrderAssembler.toDO(handoverTaskOrderDTO);