退料打印
This commit is contained in:
parent
dba1d641d8
commit
ee5c92c324
|
|
@ -44,6 +44,7 @@ public class BackApplyInfoController extends BaseController {
|
||||||
@RequiresPermissions("back:info:list")
|
@RequiresPermissions("back:info:list")
|
||||||
@GetMapping("/list")
|
@GetMapping("/list")
|
||||||
public TableDataInfo list(BackApplyInfo backApplyInfo) {
|
public TableDataInfo list(BackApplyInfo backApplyInfo) {
|
||||||
|
backApplyInfo.setIsExport(false);
|
||||||
startPage();
|
startPage();
|
||||||
List<BackApplyInfo> list = backApplyInfoService.selectBackApplyInfoList(backApplyInfo);
|
List<BackApplyInfo> list = backApplyInfoService.selectBackApplyInfoList(backApplyInfo);
|
||||||
return getDataTable(list);
|
return getDataTable(list);
|
||||||
|
|
@ -113,12 +114,25 @@ public class BackApplyInfoController extends BaseController {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ApiOperation(value = "修改退料任务打印状态")
|
||||||
|
@PreventRepeatSubmit
|
||||||
|
@RequiresPermissions("back:info:edit")
|
||||||
|
@SysLog(title = "退料任务", businessType = OperaType.UPDATE, logType = 1,module = "仓储管理->修改退料任务")
|
||||||
|
@PostMapping("/editPrintStatus")
|
||||||
|
public AjaxResult editPrintStatus(@RequestBody BackApplyInfo dto) {
|
||||||
|
try {
|
||||||
|
return backApplyInfoService.editPrintStatus(dto);
|
||||||
|
} catch (Exception e) {
|
||||||
|
return error("系统错误, " + e.getMessage());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 退料申请提交
|
* 退料申请提交
|
||||||
*/
|
*/
|
||||||
@ApiOperation(value = "退料申请提交")
|
@ApiOperation(value = "退料申请提交")
|
||||||
//@PreventRepeatSubmit
|
@PreventRepeatSubmit
|
||||||
//@RequiresPermissions("back:info:submit")
|
@RequiresPermissions("back:info:submit")
|
||||||
@SysLog(title = "退料任务", businessType = OperaType.UPDATE, logType = 1,module = "仓储管理->退料申请提交")
|
@SysLog(title = "退料任务", businessType = OperaType.UPDATE, logType = 1,module = "仓储管理->退料申请提交")
|
||||||
@PostMapping("/submitBackApply")
|
@PostMapping("/submitBackApply")
|
||||||
public AjaxResult submitBackApply(@RequestBody BackApplyInfo backApplyInfo) {
|
public AjaxResult submitBackApply(@RequestBody BackApplyInfo backApplyInfo) {
|
||||||
|
|
|
||||||
|
|
@ -74,4 +74,11 @@ public interface IBackApplyInfoService {
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
AjaxResult submitBackApply(BackApplyInfo backApplyInfo);
|
AjaxResult submitBackApply(BackApplyInfo backApplyInfo);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 确认打印
|
||||||
|
* @param dto
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
AjaxResult editPrintStatus(BackApplyInfo dto);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -594,6 +594,17 @@ public class BackApplyInfoServiceImpl implements IBackApplyInfoService {
|
||||||
return AjaxResult.error(HttpCodeEnum.FAIL.getCode(), HttpCodeEnum.FAIL.getMsg());
|
return AjaxResult.error(HttpCodeEnum.FAIL.getCode(), HttpCodeEnum.FAIL.getMsg());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 编辑打印状态
|
||||||
|
* @param dto
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public AjaxResult editPrintStatus(BackApplyInfo dto) {
|
||||||
|
int result = backApplyInfoMapper.updateBackApplyInfo(dto);
|
||||||
|
return result > 0 ? AjaxResult.success() : AjaxResult.error(HttpCodeEnum.FAIL.getCode(), HttpCodeEnum.FAIL.getMsg());
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 更新任务表及退料申请表状态
|
* 更新任务表及退料申请表状态
|
||||||
* @param backApplyInfo
|
* @param backApplyInfo
|
||||||
|
|
|
||||||
|
|
@ -513,6 +513,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="backTime != null">back_time = #{backTime},</if>
|
<if test="backTime != null">back_time = #{backTime},</if>
|
||||||
<if test="status != null">status = #{status},</if>
|
<if test="status != null">status = #{status},</if>
|
||||||
<if test="directId != null">direct_id = #{directId},</if>
|
<if test="directId != null">direct_id = #{directId},</if>
|
||||||
|
<if test="printStatus != null">print_status = #{printStatus},</if>
|
||||||
</trim>
|
</trim>
|
||||||
where id = #{id}
|
where id = #{id}
|
||||||
</update>
|
</update>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue