Browse Source
按照万材要求,基础资料员工领料单新增导出功能,支持部分行和全部行导出,导出更多数据 新增导出所有和选择导出后端接口 新增 导出基础资料员工领料单明细方法 新增根据基础资料员工领料单集合方法 新增导出基础资料员工领料单明细 修复,员工领料单分页查询多余的异常抛出问题dev
7 changed files with 198 additions and 9 deletions
@ -0,0 +1,96 @@ |
|||||
|
package com.ruoyi.system.domain.Vo; |
||||
|
|
||||
|
import com.ruoyi.common.annotation.Excel; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.math.BigDecimal; |
||||
|
|
||||
|
/** |
||||
|
* 导出员工领料单明细 |
||||
|
* */ |
||||
|
@Data |
||||
|
public class ExportBaseEmpRequisiteOrderVO { |
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
/** 领料单编号 */ |
||||
|
@Excel(name = "领料单编号") |
||||
|
private String requisitieCode; |
||||
|
|
||||
|
/** 关联销售订单号 */ |
||||
|
@Excel(name = "关联销售订单号") |
||||
|
private String correlationCode; |
||||
|
|
||||
|
/** 领料状态 */ |
||||
|
@Excel(name = "领料状态",dictType = "pickStatus") |
||||
|
private String requisitieStatus; |
||||
|
|
||||
|
/** 物料合计 */ |
||||
|
@Excel(name = "物料合计") |
||||
|
private Long materialAmount; |
||||
|
|
||||
|
/** 数量总计 */ |
||||
|
@Excel(name = "数量总计") |
||||
|
private Long materialSum; |
||||
|
|
||||
|
/** 不含税总价(RMB) */ |
||||
|
@Excel(name = "不含税总价(RMB)") |
||||
|
private BigDecimal noRmbSum; |
||||
|
|
||||
|
/** 含税总价(RMB) */ |
||||
|
@Excel(name = "含税总价(RMB)") |
||||
|
private BigDecimal rmbSum; |
||||
|
|
||||
|
/** 申请人 */ |
||||
|
@Excel(name = "申请人") |
||||
|
private String applyUser; |
||||
|
|
||||
|
|
||||
|
/** 审核状态 */ |
||||
|
@Excel(name = "审核状态",dictType = "auditStatus") |
||||
|
private String auditStatus; |
||||
|
|
||||
|
|
||||
|
/** 料号 */ |
||||
|
@Excel(name = "料号") |
||||
|
private String materialCode; |
||||
|
|
||||
|
/** 物料的名称 */ |
||||
|
@Excel(name = "物料的名称") |
||||
|
private String materialName; |
||||
|
|
||||
|
/** 物料的型号 */ |
||||
|
@Excel(name = "物料的型号") |
||||
|
private String materialModel; |
||||
|
|
||||
|
/** 物料的品牌 */ |
||||
|
@Excel(name = "物料的品牌") |
||||
|
private String brand; |
||||
|
|
||||
|
/** 物料的描述 */ |
||||
|
@Excel(name = "物料的描述") |
||||
|
private String describe; |
||||
|
|
||||
|
/** 物料的数量 */ |
||||
|
@Excel(name = "物料的数量") |
||||
|
private Integer materialNum; |
||||
|
|
||||
|
/** 物料的不含税单价(RMB) */ |
||||
|
@Excel(name = "物料的不含税单价(RMB)") |
||||
|
private BigDecimal materialRmb; |
||||
|
|
||||
|
/** 物料的含税单价(RMB) */ |
||||
|
@Excel(name = "物料的含税单价(RMB)") |
||||
|
private BigDecimal materialNoRmb; |
||||
|
|
||||
|
/** 物料的含税总价(RMB) */ |
||||
|
@Excel(name = "物料的含税总价(RMB)") |
||||
|
private BigDecimal materialNoRmbSum; |
||||
|
|
||||
|
/** 物料的不含税总价(RMB) */ |
||||
|
@Excel(name = "物料的不含税总价(RMB)") |
||||
|
private BigDecimal materialRmbSum; |
||||
|
|
||||
|
|
||||
|
} |
Loading…
Reference in new issue