...
|
...
|
@@ -868,6 +868,7 @@ $invoiceCheck.click(function(){ |
|
|
if ($invoiceCheck.hasClass('active')) {
|
|
|
$invoiceCheck.removeAttr('checked');
|
|
|
$invoiceCheck.removeClass('active');
|
|
|
$('.invoice-content').addClass('hide');
|
|
|
}
|
|
|
|
|
|
if ($invoiceCheck.attr('checked')) {
|
...
|
...
|
@@ -975,12 +976,14 @@ $eReceiptBtn.click(function(){ |
|
|
$eReceiptBtn.addClass('receipt-type-selected');
|
|
|
$paperReceiptBtn.removeClass('receipt-type-selected');
|
|
|
$('.e-receipt-desc').removeClass('hide');
|
|
|
$('.invoice-phone').removeClass('hide');
|
|
|
});
|
|
|
|
|
|
$paperReceiptBtn.click(function(){
|
|
|
$paperReceiptBtn.addClass('receipt-type-selected');
|
|
|
$eReceiptBtn.removeClass('receipt-type-selected');
|
|
|
$('.e-receipt-desc').addClass('hide');
|
|
|
$('.invoice-phone').addClass('hide');
|
|
|
});
|
|
|
|
|
|
$('.invoice-title').change(function(){
|
...
|
...
|
|