feat: 科室出库统计
parent
005222859d
commit
01225469b4
@ -0,0 +1,50 @@
|
|||||||
|
package com.glxp.api.req.inout;
|
||||||
|
|
||||||
|
import com.glxp.api.res.inout.IoOrderDetailDeptProductResultResponse;
|
||||||
|
import com.glxp.api.util.page.ListPageRequest;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class FilterOrderDetailDeptProductOutResultRequest 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<IoOrderDetailDeptProductResultResponse> 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 String fromInvCode;//供应商名字
|
||||||
|
|
||||||
|
|
||||||
|
private Boolean groupBuy; //是否集采产品
|
||||||
|
|
||||||
|
private Integer hcType;
|
||||||
|
private Integer corpType;
|
||||||
|
|
||||||
|
private List<String> fromInvCodes;
|
||||||
|
|
||||||
|
private String cpmctymc;
|
||||||
|
private String nameCode;
|
||||||
|
private String ggxh;
|
||||||
|
private String batchNo;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,46 @@
|
|||||||
|
package com.glxp.api.res.inout;
|
||||||
|
|
||||||
|
import com.alibaba.excel.annotation.ExcelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class IoOrdeProductOutVo {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DI
|
||||||
|
*/
|
||||||
|
@ExcelProperty(value = "产品标识", index = 0)
|
||||||
|
private String nameCode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 产品名称
|
||||||
|
*/
|
||||||
|
@ExcelProperty(value = "产品名称", index = 1)
|
||||||
|
private String coName;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 规格型号
|
||||||
|
*/
|
||||||
|
@ExcelProperty(value = "规格型号", index = 2)
|
||||||
|
private String spec;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 产品名称
|
||||||
|
*/
|
||||||
|
@ExcelProperty(value = "批次", index = 3)
|
||||||
|
private String batchNo;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 产品名称
|
||||||
|
*/
|
||||||
|
@ExcelProperty(value = "出库数量", index = 4)
|
||||||
|
private String count;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue