|
|
|
@ -100,9 +100,11 @@ $(function () {
|
|
|
|
|
dataCache.discounts = [];
|
|
|
|
|
dataCache.tax = surchargeData.tax;
|
|
|
|
|
dataCache.surcharge = surchargeData.surcharge;
|
|
|
|
|
|
|
|
|
|
$(window.coupons).each(function () {
|
|
|
|
|
price = this.handleDiscount(price, dataCache.price, dataCache.discounts, dataCache.coupons);
|
|
|
|
|
});
|
|
|
|
|
dataCache.customSurcharge = new Decimal(price).sub(realPrice).toFixed(2,Decimal.ROUND_HALF_UP);
|
|
|
|
|
dataCache.finalPrice = new Decimal(price).toFixed(2, Decimal.ROUND_FLOOR);
|
|
|
|
|
var rate = 'CNY' == window.currency ? 1 : exchangeRate;
|
|
|
|
|
var cnyVal = Decimal.mul(price, rate).toFixed(2, Decimal.ROUND_HALF_UP);
|
|
|
|
@ -201,11 +203,8 @@ $(function () {
|
|
|
|
|
var bd = $('.weui_dialog_bd', dialog);
|
|
|
|
|
var currencySymbol = window.currency == 'AUD' ? '$' : '¥';
|
|
|
|
|
$('<p></p>').html('Input Price 输入金额:' + currencySymbol + dataCache.price).appendTo(bd);
|
|
|
|
|
if (parseFloat(dataCache.surcharge) > 0) {
|
|
|
|
|
$('<p></p>').html('Surcharge 手续费(' + window.rateValue + '%):+' + currencySymbol + dataCache.surcharge).appendTo(bd);
|
|
|
|
|
}
|
|
|
|
|
if (parseFloat(dataCache.tax) > 0) {
|
|
|
|
|
$('<p></p>').html('GST(10%):'+currencySymbol+dataCache.tax).appendTo(bd);
|
|
|
|
|
if (parseFloat(dataCache.customSurcharge) > 0) {
|
|
|
|
|
$('<p></p>').html('Surcharge 手续费(' + window.rateValue + '%):+' + currencySymbol + dataCache.customSurcharge).appendTo(bd);
|
|
|
|
|
}
|
|
|
|
|
$(dataCache.discounts).each(function () {
|
|
|
|
|
$('<p></p>').html(this.title + ':-' + currencySymbol + this.amount).appendTo(bd);
|
|
|
|
|