|
|
|
@ -108,8 +108,8 @@ public class PurApplyController {
|
|
|
|
|
/**
|
|
|
|
|
* 查询申购单列表
|
|
|
|
|
*/
|
|
|
|
|
@GetMapping("/purchase/apply/list")
|
|
|
|
|
public BaseResponse list(PurApplyRequest purApplyRequest) {
|
|
|
|
|
@PostMapping("/purchase/apply/list")
|
|
|
|
|
public BaseResponse list(@RequestBody PurApplyRequest purApplyRequest) {
|
|
|
|
|
|
|
|
|
|
if (purApplyRequest.getStatus() == null) {
|
|
|
|
|
purApplyRequest.setStatus(11); //查询未审核和草稿状态
|
|
|
|
@ -129,8 +129,8 @@ public class PurApplyController {
|
|
|
|
|
/**
|
|
|
|
|
* 查询申购单列表
|
|
|
|
|
*/
|
|
|
|
|
@GetMapping("/purchase/apply/auditList")
|
|
|
|
|
public BaseResponse auditList(PurApplyRequest purApplyRequest) {
|
|
|
|
|
@PostMapping("/purchase/apply/auditList")
|
|
|
|
|
public BaseResponse auditList(@RequestBody PurApplyRequest purApplyRequest) {
|
|
|
|
|
|
|
|
|
|
if (purApplyRequest.getStatus() == null) {
|
|
|
|
|
purApplyRequest.setStatus(10); //查询未审核和已审核状态
|
|
|
|
|