用户修改,单据类型修改,往来单位修改,单据管理

master
anthonywj 2 years ago
parent 02e236724a
commit 4c3ef4f4f6

@ -75,7 +75,7 @@ public class InvWarehouseController extends BaseController {
* @return
*/
@AuthRuleAnnotation("")
@GetMapping("spms/inv/warehouse/findByUser")
@GetMapping("spms/inv/warehouse/findByDept")
public BaseResponse findByDept(FilterInvWarehouseRequest filterInvWarehouseRequest) {
AuthAdmin authAdmin = getUser();
filterInvWarehouseRequest.setUserId(authAdmin.getId());

@ -13,6 +13,4 @@ public class IoOrderController {
@Resource
IoOrderService orderService;
}

@ -0,0 +1,167 @@
package com.glxp.api.res.inout;
import cn.hutool.core.util.StrUtil;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
import java.util.Date;
@Data
public class IoOrderResponse {
private Integer id;
/**
*
*/
private String billNo;
/**
*
*/
private String corpOrderId;
/**
*
*/
private String mainAction;
/**
*
*/
private String action;
/**
*
*/
private String fromCorp;
/**
*
*/
private String fromDeptCode;
/**
*
*/
private String fromInvCode;
/**
* 1.UDIMS2.3.pda4.pda5.pc
*/
private Integer fromType;
/**
* 1:稿2:;3:;3:;4:;5:;6:;7:
*/
private Integer status;
/**
* 1.稿2:;3:
*/
private Integer dealStatus;
/**
*
*/
private String createUser;
/**
*
*/
private Date createTime;
/**
*
*/
private String updateUser;
/**
*
*/
private Date updateTime;
/**
*
*/
private String reviewUser;
/**
*
*/
private Date auditTime;
/**
* ID
*/
private Long customerId;
/**
*
*/
private String deptCode;
/**
*
*/
private String invCode;
/**
*
*/
private Boolean outChangeEnable;
/**
*
*/
private String originUllageSupNo;
/**
*
*/
private String ullageSupNo;
/**
*
*/
private String supplementNo;
/**
* (
*/
private String thirdBillNo;
/**
* 使,
*/
private String replicateNo;
/**
*
*/
private String printRemark;
/**
*
*/
private String remark;
private static final long serialVersionUID = 1L;
private String fromCorpName;
private String fromInvName;
private String fromName;
public String getFromName() {
if (StrUtil.isNotEmpty(fromCorpName))
return fromCorpName;
if (StrUtil.isNotEmpty(fromCorpName))
return fromCorpName;
return fromName;
}
}
Loading…
Cancel
Save