fix:物资往来统计
parent
669b81a2d7
commit
a44e4b402d
@ -0,0 +1,42 @@
|
||||
package com.glxp.api.req.inout;
|
||||
|
||||
import com.glxp.api.res.inout.IoOrderDetailDeptProductResultResponse;
|
||||
import com.glxp.api.res.inout.IoOrderDetailDeptResultResponse;
|
||||
import com.glxp.api.util.page.ListPageRequest;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class FilterOrderDetailDeptProductResultRequest 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;
|
||||
}
|
@ -0,0 +1,31 @@
|
||||
package com.glxp.api.res.inout;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
/**
|
||||
* 单据扫码明细VO
|
||||
*/
|
||||
@Data
|
||||
public class IoOrderDetailDeptProductResultResponse {
|
||||
|
||||
|
||||
/**
|
||||
* 往来
|
||||
*/
|
||||
private String fromInvCode;
|
||||
private String nameCode;
|
||||
private String coName;
|
||||
private String spec;
|
||||
|
||||
|
||||
/**
|
||||
* 往来
|
||||
*/
|
||||
private String fromInvName;
|
||||
|
||||
private Integer count;
|
||||
private BigDecimal amount;
|
||||
|
||||
}
|
Loading…
Reference in New Issue