...
|
...
|
@@ -127,10 +127,18 @@ function confirmAction() { |
|
|
}
|
|
|
}, function() {
|
|
|
orderInfo('invoices_type', eInvoiceType);
|
|
|
orderInfo('invoices_title', title === '单位' ? company : '');
|
|
|
orderInfo('invoices_title_personal', title === '个人' ? company : '');
|
|
|
orderInfo('receiverMobile', tel);
|
|
|
orderInfo('buyerTaxNumber', title === '单位' ? buyerTaxNumber : '');
|
|
|
|
|
|
if (title === '单位') {
|
|
|
orderInfo('invoice_payable_type', 2);
|
|
|
orderInfo('invoices_title', company);
|
|
|
orderInfo('invoices_title_personal', null);
|
|
|
orderInfo('buyerTaxNumber', buyerTaxNumber);
|
|
|
} else {
|
|
|
orderInfo('invoice_payable_type', 1);
|
|
|
orderInfo('invoices_title', null);
|
|
|
orderInfo('invoices_title_personal', company);
|
|
|
}
|
|
|
|
|
|
if (isModifyTel && $copyTel !== tel) {
|
|
|
orderInfo('isModifyTel', true);
|
...
|
...
|
|