...
|
...
|
@@ -905,7 +905,7 @@ function saveReceiptInfo() { |
|
|
};
|
|
|
})
|
|
|
receiptMobile = $('#input-mobile').val();
|
|
|
verifymobile = /[0-9]{11}/;
|
|
|
verifymobile = /[*0-9]{11}/;
|
|
|
if (!verifymobile.test(receiptMobile)) {
|
|
|
$('.invoice-phone .enpty-input').removeClass('hide');
|
|
|
passInfoVerify = false;
|
...
|
...
|
@@ -913,6 +913,8 @@ function saveReceiptInfo() { |
|
|
if (!passInfoVerify) {
|
|
|
return;
|
|
|
} else {
|
|
|
$('.invoice-title .enpty-input').addClass('hide');
|
|
|
$('.invoice-phone .enpty-input').addClass('hide');
|
|
|
receiptTitle = $('#input-organization-name').val();
|
|
|
}
|
|
|
}
|
...
|
...
|
|