|
@@ -1154,7 +1154,7 @@ func (this *Invoice) InvoiceSubmit() {
|
|
|
} else {
|
|
|
body["custName"] = "个人"
|
|
|
}
|
|
|
- htjs(body, orderArr, this.GetString("invoice_type"), this.GetString("company_name"), this.GetString("taxpayer_identnum"), this.GetString("mail"), this.GetString("phone"))
|
|
|
+ go htjs(body, orderArr, this.GetString("invoice_type"), this.GetString("company_name"), this.GetString("taxpayer_identnum"), this.GetString("mail"), this.GetString("phone"))
|
|
|
} else {
|
|
|
//给王航发信息
|
|
|
recipientStr := ""
|
|
@@ -1181,7 +1181,7 @@ func (this *Invoice) InvoiceSubmit() {
|
|
|
deliveryAddressStr,
|
|
|
)
|
|
|
for _, v := range strings.Split(config.Config.FinanceMail, ",") {
|
|
|
- InvoiceSendMail(v, html, fmt.Sprintf("客户申请开具%s", this.GetString("invoice_variety")))
|
|
|
+ go InvoiceSendMail(v, html, fmt.Sprintf("客户申请开具%s", this.GetString("invoice_variety")))
|
|
|
}
|
|
|
}
|
|
|
return true
|