Browse Source

发票打印相关添加邮箱

609324174@qq.com 4 years ago
parent
commit
1c03f2812b

+ 4 - 2
smart-city-platform/src/main/java/com/bz/smart_city/entity/pay/PayInvoiceprinted.java

@@ -87,10 +87,12 @@ public class PayInvoiceprinted extends PayBaseInfo {
 	private String saleIdentity;
 	@ApiModelProperty(value = "二维码")
 	private  String qrCode;
-	@ApiModelProperty(value = "二维码")
+	@ApiModelProperty(value = "")
 	private  Integer year;
-	@ApiModelProperty(value = "二维码")
+	@ApiModelProperty(value = "")
 	private  Integer month;
+	@ApiModelProperty(value = "邮箱")
+	private  String email;
 }
 
 

+ 1 - 1
smart-city-platform/src/main/java/com/bz/smart_city/quartz/job/InvoicePrintResultJob.java

@@ -28,7 +28,7 @@ public class InvoicePrintResultJob {
     private PrintInvoiceQueryResultServiceImpl printInvoiceQueryResultService;
 
     @Scheduled(cron = "0 0 0/1 * * ?")
-    //@Scheduled(cron = "0 58 09 ? * *")   //定时执行,秒分时日月年
+    //@Scheduled(cron = "0 42 13 ? * *")   //定时执行,秒分时日月年
     private void queryResult() {
         List<PayInvoiceprinted> payInvoiceprinteds = printInvoicePrintService.findListByState();
         for (PayInvoiceprinted item : payInvoiceprinteds) {

+ 1 - 0
smart-city-platform/src/main/java/com/bz/smart_city/service/impl/pay/IssueElectronicInvoiceServiceImpl.java

@@ -311,6 +311,7 @@ public class IssueElectronicInvoiceServiceImpl implements IssueElectronicInvoice
             payInvoiceprinted.setInvoiceType(1); //蓝票
             payInvoiceprinted.setInvoiceLine("p");
             payInvoiceprinted.setUserCode(userCode);
+            payInvoiceprinted.setEmail(payInvoiceOrderDto.getEmail());
             payInvoiceprinted.setSaleIdentity(invoiceParam.get("saleIdentity"));
             if (kpType.equals("2")) {
                 payInvoiceprinted.setInvoiceType(2);//红票

+ 4 - 2
smart-city-platform/src/main/resources/mapper/pay/PayInvoicePrintMapper.xml

@@ -41,7 +41,8 @@
             cancelinvoice_id,
             saleidentity,
             year,
-            month
+            month,
+            email
 		) VALUES (
 			#{printNo},
 			#{oldInvoiceCode},
@@ -81,7 +82,8 @@
             #{cancelInvoiceId},
             #{saleIdentity},
             #{year},
-            #{month}
+            #{month},
+            #{email}
 		)
     </insert>
     <select id="findInvoiceByPayseriesno" resultType="com.bz.smart_city.entity.pay.PayInvoiceprinted">