Authored by 514335620@qq.com

发票信息 js

... ... @@ -761,11 +761,9 @@ $('.to-play input.submit').click(function() {
var addressId = $('.exist-address-list input[name="address"]:checked').closest('li').attr('data-id'),
deliveryTimeId = $('.pay-time-modify input[name="pay-time-radio"]:checked').val(),
deliveryWayId = $('.select-express input[name="carriagegroup"]:checked').val(),
invoiceTitle = $('#piaodesc').val(),
invoiceId = $('#piaotype').val(),
invoiceType = $('.invoice-upload-type').html(),
invoiceContent = $('.invoice-upload-content').html(),
receiverMobile = $('.nvoice-upload-mobile').html(),
receiverMobile = $('.invoice-upload-mobile').html(),
invoiceTitle = $('.invoice-upload-title').html(),
paymentType = $('.pay-time-modify input[name="pay-type"]:checked').val(),
paymentId = $('.pay-time-modify input[name="pay-type"]:checked').data('pay'),
... ...
... ... @@ -880,14 +880,14 @@ function saveReceiptInfo() {
var passInfoVerify = true,
receiptType,
receiptContent,
receiptContentId,
receiptMobile,
verifymobile,
invoiceType,
receiptTypeID;
receiptTypeID,
invoiceTypeInt;
invoiceType = '个人';
if ($eReceiptBtn.hasClass('receipt-type-selected')) {
receiptType = "电子发票";
invoiceTypeInt = '2';
... ... @@ -925,7 +925,7 @@ function saveReceiptInfo() {
$('.invoice-kind').html(receiptContent);
$('.invoice-upload-type').html(invoiceTypeInt);
$('.invoice-upload-content').html(receiptContentId);
$('.invoice-upload-content').html(receiptTypeID);
$('.invoice-upload-mobile').html(receiptMobile);
$('.invoice-upload-title').html(receiptTitle);
... ...