update 会议导出增加到账状态,企业缴费凭证(最新上传的缴费凭证)
This commit is contained in:
+5
@@ -1792,6 +1792,11 @@ public class PayMeetingSituationServiceImpl extends ServiceImpl<PayMeetingSituat
|
||||
OSSFile ossFile = ossFileService.getById(checkFile);
|
||||
meetingSituation.setCheckFile(ossFile.getUrl());
|
||||
}
|
||||
String paymentRecord = meetingSituation.getPaymentRecord();
|
||||
if (StringUtils.isNotBlank(paymentRecord)) {
|
||||
OSSFile ossFile = ossFileService.getById(paymentRecord);
|
||||
meetingSituation.setPaymentRecord(ossFile.getUrl());
|
||||
}
|
||||
switch (meetingType1) {
|
||||
case MeetingCommon.STANDARD_MEETING:
|
||||
//保存数据
|
||||
|
||||
+10
@@ -1,6 +1,7 @@
|
||||
package com.jero.meeting.vo.excel;
|
||||
|
||||
import com.jero.common.aspect.annotation.Dict;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import org.jeecgframework.poi.excel.annotation.Excel;
|
||||
|
||||
@@ -72,6 +73,15 @@ public class CommitteeSituationExcel extends SituationBaseExcel {
|
||||
@Excel(name = "需要发票", width = 15,dicCode = "invoice_type")
|
||||
private Integer needInvoice;
|
||||
|
||||
/**缴费凭证*/
|
||||
@Excel(name = "缴费凭证", type = 2 ,width = 40 , height = 20)
|
||||
private String paymentRecord;
|
||||
|
||||
/**到账*/
|
||||
@ApiModelProperty(value = "到账")
|
||||
@Excel(name = "是否到账", width = 15, dicCode = "account_type")
|
||||
private Integer inAccount;
|
||||
|
||||
/**订单后4位编码*/
|
||||
@Excel(name = "订单后4位编码", width = 15)
|
||||
private String orderCode;
|
||||
|
||||
+10
@@ -1,6 +1,7 @@
|
||||
package com.jero.meeting.vo.excel;
|
||||
|
||||
import com.jero.common.aspect.annotation.Dict;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import org.jeecgframework.poi.excel.annotation.Excel;
|
||||
|
||||
@@ -72,6 +73,15 @@ public class CouncilSituationExcel extends SituationBaseExcel {
|
||||
@Excel(name = "需要发票", width = 15,dicCode = "invoice_type")
|
||||
private Integer needInvoice;
|
||||
|
||||
/**缴费凭证*/
|
||||
@Excel(name = "缴费凭证", type = 2 ,width = 40 , height = 20)
|
||||
private String paymentRecord;
|
||||
|
||||
/**到账*/
|
||||
@ApiModelProperty(value = "到账")
|
||||
@Excel(name = "是否到账", width = 15, dicCode = "account_type")
|
||||
private Integer inAccount;
|
||||
|
||||
/**订单后4位编码*/
|
||||
@Excel(name = "订单后4位编码", width = 15)
|
||||
private String orderCode;
|
||||
|
||||
+10
@@ -1,6 +1,7 @@
|
||||
package com.jero.meeting.vo.excel;
|
||||
|
||||
import com.jero.common.aspect.annotation.Dict;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import org.jeecgframework.poi.excel.annotation.Excel;
|
||||
|
||||
@@ -68,6 +69,15 @@ public class DraftingGroupSituationExcel extends SituationBaseExcel {
|
||||
@Excel(name = "需要发票", width = 15,dicCode = "invoice_type")
|
||||
private Integer needInvoice;
|
||||
|
||||
/**缴费凭证*/
|
||||
@Excel(name = "缴费凭证", type = 2 ,width = 40 , height = 20)
|
||||
private String paymentRecord;
|
||||
|
||||
/**到账*/
|
||||
@ApiModelProperty(value = "到账")
|
||||
@Excel(name = "是否到账", width = 15, dicCode = "account_type")
|
||||
private Integer inAccount;
|
||||
|
||||
/**订单后4位编码*/
|
||||
@Excel(name = "订单后4位编码", width = 15)
|
||||
private String orderCode;
|
||||
|
||||
+9
@@ -142,6 +142,15 @@ public class InternationalSituationExcel extends SituationBaseExcel {
|
||||
@Excel(name = "需要发票", width = 15,dicCode = "invoice_type")
|
||||
private Integer needInvoice;
|
||||
|
||||
/**缴费凭证*/
|
||||
@Excel(name = "缴费凭证", type = 2 ,width = 40 , height = 20)
|
||||
private String paymentRecord;
|
||||
|
||||
/**到账*/
|
||||
@ApiModelProperty(value = "到账")
|
||||
@Excel(name = "是否到账", width = 15, dicCode = "account_type")
|
||||
private Integer inAccount;
|
||||
|
||||
/**订单后4位编码*/
|
||||
@Excel(name = "订单后4位编码", width = 15)
|
||||
private String orderCode;
|
||||
|
||||
+2
-2
@@ -1,5 +1,6 @@
|
||||
package com.jero.meeting.vo.excel;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import org.jeecgframework.poi.excel.annotation.Excel;
|
||||
|
||||
@@ -10,9 +11,8 @@ import org.jeecgframework.poi.excel.annotation.Excel;
|
||||
@Data
|
||||
public class SituationBaseExcel {
|
||||
/**签到文件*/
|
||||
@Excel(name = "手动签到", type = 2 ,width = 40 , height = 20,imageType = 3)
|
||||
@Excel(name = "手动签到", type = 2 ,width = 40 , height = 20)
|
||||
private String checkFile;
|
||||
|
||||
/**发票项目*/
|
||||
@Excel(name = "发票项目", dicCode = "invoice_project", width = 15)
|
||||
private Integer invoiceProject;
|
||||
|
||||
+10
@@ -1,6 +1,7 @@
|
||||
package com.jero.meeting.vo.excel;
|
||||
|
||||
import com.jero.common.aspect.annotation.Dict;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import org.jeecgframework.poi.excel.annotation.Excel;
|
||||
|
||||
@@ -72,6 +73,15 @@ public class SituationExcel extends SituationBaseExcel{
|
||||
@Excel(name = "需要发票", width = 15,dicCode = "invoice_type")
|
||||
private Integer needInvoice;
|
||||
|
||||
/**缴费凭证*/
|
||||
@Excel(name = "缴费凭证", type = 2 ,width = 40 , height = 20)
|
||||
private String paymentRecord;
|
||||
|
||||
/**到账*/
|
||||
@ApiModelProperty(value = "到账")
|
||||
@Excel(name = "是否到账", width = 15, dicCode = "account_type")
|
||||
private Integer inAccount;
|
||||
|
||||
/**订单后4位编码*/
|
||||
@Excel(name = "订单后4位编码", width = 15)
|
||||
private String orderCode;
|
||||
|
||||
+9
@@ -88,6 +88,15 @@ public class StandardsSituationExcel extends SituationBaseExcel {
|
||||
@Excel(name = "需要发票", width = 15,dicCode = "invoice_type")
|
||||
private Integer needInvoice;
|
||||
|
||||
/**缴费凭证*/
|
||||
@Excel(name = "缴费凭证", type = 2 ,width = 40 , height = 20)
|
||||
private String paymentRecord;
|
||||
|
||||
/**到账*/
|
||||
@ApiModelProperty(value = "到账")
|
||||
@Excel(name = "是否到账", width = 15, dicCode = "account_type")
|
||||
private Integer inAccount;
|
||||
|
||||
/**订单后4位编码*/
|
||||
@Excel(name = "订单后4位编码", width = 15)
|
||||
private String orderCode;
|
||||
|
||||
+10
@@ -1,6 +1,7 @@
|
||||
package com.jero.meeting.vo.excel;
|
||||
|
||||
import com.jero.common.aspect.annotation.Dict;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import org.jeecgframework.poi.excel.annotation.Excel;
|
||||
@@ -73,6 +74,15 @@ public class WorkingGroupSituationExcel extends SituationBaseExcel {
|
||||
@Excel(name = "需要发票", width = 15,dicCode = "invoice_type")
|
||||
private Integer needInvoice;
|
||||
|
||||
/**缴费凭证*/
|
||||
@Excel(name = "缴费凭证", type = 2 ,width = 40 , height = 20)
|
||||
private String paymentRecord;
|
||||
|
||||
/**到账*/
|
||||
@ApiModelProperty(value = "到账")
|
||||
@Excel(name = "是否到账", width = 15, dicCode = "account_type")
|
||||
private Integer inAccount;
|
||||
|
||||
/**订单后4位编码*/
|
||||
@Excel(name = "订单后4位编码", width = 15)
|
||||
private String orderCode;
|
||||
|
||||
Reference in New Issue
Block a user