fix: 增加科室带票出库页面
parent
f9786d34fc
commit
5f184d3013
@ -0,0 +1,42 @@
|
||||
package com.glxp.api.req.inout;
|
||||
|
||||
import com.glxp.api.res.inout.IoOrderDetailDeptResultResponse;
|
||||
import com.glxp.api.res.inout.IoOrderDetailResultResponse;
|
||||
import com.glxp.api.util.page.ListPageRequest;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 单据扫码明细查询参数
|
||||
*/
|
||||
@Data
|
||||
public class FilterOrderDetailDeptResultRequest extends ListPageRequest {
|
||||
|
||||
private String startAduditTime; //起始日期
|
||||
private String endAduditTime; //结束日期
|
||||
private String fromCorp;
|
||||
private String invCode;
|
||||
private String actionType;
|
||||
private String manufacturer;
|
||||
private String zczbhhzbapzbh;
|
||||
private Boolean isStack;
|
||||
private String invoiceEncode;
|
||||
|
||||
private String templateId;
|
||||
private List<String> actions;
|
||||
private List<IoOrderDetailDeptResultResponse> list;
|
||||
private String action;
|
||||
private String mainAction;
|
||||
private Integer inoutPrintStatus;
|
||||
private String invName;
|
||||
private String employeeName;
|
||||
private String fromInvName;
|
||||
private String locInvName;
|
||||
private String confirmStarTime; //发票确认起始日期
|
||||
private String confirmEndTime; //发票确认结束日期
|
||||
private String corpName;//供应商名字
|
||||
|
||||
|
||||
private Boolean groupBuy; //是否集采产品
|
||||
}
|
@ -0,0 +1,31 @@
|
||||
package com.glxp.api.res.inout;
|
||||
|
||||
import cn.hutool.core.util.StrUtil;
|
||||
import com.alibaba.excel.annotation.ExcelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 单据扫码明细VO
|
||||
*/
|
||||
@Data
|
||||
public class IoOrderDetailDeptResultResponse {
|
||||
|
||||
|
||||
/**
|
||||
* 部门编码外键
|
||||
*/
|
||||
private String fromInvCode;
|
||||
|
||||
|
||||
/**
|
||||
* 部门编码外键
|
||||
*/
|
||||
private String fromInvName;
|
||||
|
||||
private Integer count;
|
||||
private BigDecimal amount;
|
||||
|
||||
}
|
Loading…
Reference in New Issue