remove unnecessary function and line discount
This commit is contained in:
parent
504bc5d3a7
commit
4612f6b35b
283
resources/assets/js/views/common/documents.js
vendored
283
resources/assets/js/views/common/documents.js
vendored
@ -75,7 +75,7 @@ const app = new Vue({
|
|||||||
|
|
||||||
// items calculate
|
// items calculate
|
||||||
this.items.forEach(function(item, index) {
|
this.items.forEach(function(item, index) {
|
||||||
let discount = 0;
|
let item_discount = 0;
|
||||||
|
|
||||||
item.total = item.price * item.quantity;
|
item.total = item.price * item.quantity;
|
||||||
item.grand_total = item.price * item.quantity;
|
item.grand_total = item.price * item.quantity;
|
||||||
@ -87,7 +87,7 @@ const app = new Vue({
|
|||||||
line_discount_amount = item.total * (item.discount / 100);
|
line_discount_amount = item.total * (item.discount / 100);
|
||||||
|
|
||||||
item_discounted_total = item.total -= line_discount_amount;
|
item_discounted_total = item.total -= line_discount_amount;
|
||||||
discount = item.discount;
|
item_discount = item.discount;
|
||||||
}
|
}
|
||||||
|
|
||||||
let item_discounted_total = item.total;
|
let item_discounted_total = item.total;
|
||||||
@ -95,7 +95,7 @@ const app = new Vue({
|
|||||||
if (global_discount) {
|
if (global_discount) {
|
||||||
item_discounted_total = item.total - (item.total * (global_discount / 100));
|
item_discounted_total = item.total - (item.total * (global_discount / 100));
|
||||||
|
|
||||||
discount = global_discount;
|
item_discount = global_discount;
|
||||||
}
|
}
|
||||||
|
|
||||||
// item tax calculate.
|
// item tax calculate.
|
||||||
@ -169,7 +169,7 @@ const app = new Vue({
|
|||||||
|
|
||||||
item.grand_total = item.grand_total - item_base_rate;
|
item.grand_total = item.grand_total - item_base_rate;
|
||||||
|
|
||||||
item.total = item_base_rate + discount;
|
item.total = item_base_rate + item_discount;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (compounds.length) {
|
if (compounds.length) {
|
||||||
@ -187,9 +187,17 @@ const app = new Vue({
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// calculate sub, tax, discount all items.
|
||||||
|
line_item_discount_total += line_discount_amount;
|
||||||
sub_total += item.total;
|
sub_total += item.total;
|
||||||
grand_total += item.grand_total;
|
grand_total += item.grand_total;
|
||||||
|
|
||||||
|
// set item total
|
||||||
|
if (item.discount) {
|
||||||
|
item.total = item_discounted_total;
|
||||||
|
}
|
||||||
|
|
||||||
this.form.items[index].name = item.name;
|
this.form.items[index].name = item.name;
|
||||||
this.form.items[index].description = item.description;
|
this.form.items[index].description = item.description;
|
||||||
this.form.items[index].quantity = item.quantity;
|
this.form.items[index].quantity = item.quantity;
|
||||||
@ -198,131 +206,8 @@ const app = new Vue({
|
|||||||
this.form.items[index].total = item.total;
|
this.form.items[index].total = item.total;
|
||||||
}, this);
|
}, this);
|
||||||
|
|
||||||
this.totals.sub = sub_total;
|
|
||||||
this.totals.taxes = totals_taxes;
|
|
||||||
this.totals.total = grand_total;
|
|
||||||
},
|
|
||||||
|
|
||||||
onCalculateTotal2() {
|
|
||||||
let sub_total = 0;
|
|
||||||
let discount_total = 0;
|
|
||||||
let line_item_discount_total = 0;
|
|
||||||
let tax_total = 0;
|
|
||||||
let grand_total = 0;
|
|
||||||
let items = this.items;
|
|
||||||
let discount_in_totals = this.discount;
|
|
||||||
|
|
||||||
if (items.length) {
|
|
||||||
let index = 0;
|
|
||||||
|
|
||||||
// get all items.
|
|
||||||
for (index = 0; index < items.length; index++) {
|
|
||||||
let discount = 0;
|
|
||||||
// get row item and set item variable.
|
|
||||||
let item = items[index];
|
|
||||||
|
|
||||||
// item sub total calcute.
|
|
||||||
let item_total = item.price * item.quantity;
|
|
||||||
|
|
||||||
// item discount calculate.
|
|
||||||
let line_discount_amount = 0;
|
|
||||||
|
|
||||||
if (item.discount) {
|
|
||||||
line_discount_amount = item_total * (item.discount / 100);
|
|
||||||
|
|
||||||
item_discounted_total = item_total -= line_discount_amount;
|
|
||||||
discount = item.discount;
|
|
||||||
}
|
|
||||||
|
|
||||||
let item_discounted_total = item_total;
|
|
||||||
|
|
||||||
if (discount_in_totals) {
|
|
||||||
item_discounted_total = item_total - (item_total * (discount_in_totals / 100));
|
|
||||||
discount = discount_in_totals;
|
|
||||||
}
|
|
||||||
|
|
||||||
// item tax calculate.
|
|
||||||
let item_tax_total = 0;
|
|
||||||
|
|
||||||
if (item.tax_ids) {
|
|
||||||
let inclusives = [];
|
|
||||||
let compounds = [];
|
|
||||||
let index_taxes = 0;
|
|
||||||
let taxes = document_taxes;
|
|
||||||
|
|
||||||
item.tax_ids.forEach(function(item_tax, item_tax_index) {
|
|
||||||
for (index_taxes = 0; index_taxes < taxes.length; index_taxes++) {
|
|
||||||
let tax = taxes[index_taxes];
|
|
||||||
|
|
||||||
if (item_tax.id != tax.id) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
switch (tax.type) {
|
|
||||||
case 'inclusive':
|
|
||||||
inclusives.push(tax);
|
|
||||||
break;
|
|
||||||
case 'compound':
|
|
||||||
compounds.push(tax);
|
|
||||||
break;
|
|
||||||
case 'fixed':
|
|
||||||
item_tax_total = tax.rate * item.quantity;
|
|
||||||
break;
|
|
||||||
case 'withholding':
|
|
||||||
item_tax_total = 0 - item.price * item.quantity * (tax.rate / 100);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
item_tax_total = item.price * item.quantity * (tax.rate / 100);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
this.items[index].tax_ids[item_tax_index].price = item_tax_total;
|
|
||||||
}
|
|
||||||
}, this);
|
|
||||||
|
|
||||||
if (inclusives.length) {
|
|
||||||
let item_sub_and_tax_total = item_discounted_total + item_tax_total;
|
|
||||||
|
|
||||||
let inclusive_total = 0;
|
|
||||||
|
|
||||||
inclusives.forEach(function(inclusive) {
|
|
||||||
inclusive_total += inclusive.rate;
|
|
||||||
});
|
|
||||||
|
|
||||||
let item_base_rate = item_sub_and_tax_total / (1 + inclusive_total / 100);
|
|
||||||
|
|
||||||
item_tax_total = item_sub_and_tax_total - item_base_rate;
|
|
||||||
|
|
||||||
item_total = item_base_rate + discount;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (compounds.length) {
|
|
||||||
compounds.forEach(function(compound) {
|
|
||||||
item_tax_total += ((item_discounted_total + item_tax_total) / 100) * compound.rate;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// set item total
|
|
||||||
if (item.discount) {
|
|
||||||
items[index].total = item_discounted_total;
|
|
||||||
} else {
|
|
||||||
items[index].total = item_total;
|
|
||||||
}
|
|
||||||
|
|
||||||
// calculate sub, tax, discount all items.
|
|
||||||
line_item_discount_total += line_discount_amount;
|
|
||||||
sub_total += item_total;
|
|
||||||
tax_total += item_tax_total;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// set global total variable.
|
|
||||||
this.totals.sub = sub_total;
|
|
||||||
//this.totals.taxes = Math.abs(tax_total);
|
|
||||||
this.totals.item_discount = line_item_discount_total;
|
|
||||||
|
|
||||||
// Apply discount to total
|
// Apply discount to total
|
||||||
|
/*
|
||||||
if (discount_in_totals) {
|
if (discount_in_totals) {
|
||||||
discount_total = sub_total * (discount_in_totals / 100);
|
discount_total = sub_total * (discount_in_totals / 100);
|
||||||
|
|
||||||
@ -330,77 +215,14 @@ const app = new Vue({
|
|||||||
|
|
||||||
sub_total = sub_total - (sub_total * (discount_in_totals / 100));
|
sub_total = sub_total - (sub_total * (discount_in_totals / 100));
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
// set all item grand total.
|
this.totals.item_discount = line_item_discount_total;
|
||||||
grand_total = sub_total + tax_total;
|
this.totals.sub = sub_total;
|
||||||
|
this.totals.taxes = totals_taxes;
|
||||||
this.totals.total = grand_total;
|
this.totals.total = grand_total;
|
||||||
},
|
},
|
||||||
|
|
||||||
onCalculateTaxes() {
|
|
||||||
let taxes = document_taxes;
|
|
||||||
|
|
||||||
this.items.forEach(function (item, index) {
|
|
||||||
let inclusives = [];
|
|
||||||
let compounds = [];
|
|
||||||
let index_taxes = 0;
|
|
||||||
|
|
||||||
item.tax_ids.forEach(function(item_tax, item_tax_index) {
|
|
||||||
item_tax_total = 0;
|
|
||||||
|
|
||||||
for (index_taxes = 0; index_taxes < taxes.length; index_taxes++) {
|
|
||||||
let tax = taxes[index_taxes];
|
|
||||||
|
|
||||||
if (item_tax.id != tax.id) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
switch (tax.type) {
|
|
||||||
case 'inclusive':
|
|
||||||
inclusives.push(tax);
|
|
||||||
break;
|
|
||||||
case 'compound':
|
|
||||||
compounds.push(tax);
|
|
||||||
break;
|
|
||||||
case 'fixed':
|
|
||||||
item_tax_total += tax.rate * item.quantity;
|
|
||||||
break;
|
|
||||||
case 'withholding':
|
|
||||||
item_tax_total += 0 - item.price * (tax.rate / 100);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
item_tax_total += item.price * (tax.rate / 100);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
this.items[index].tax_ids[item_tax_index].price = item_tax_total;
|
|
||||||
}, this);
|
|
||||||
|
|
||||||
if (inclusives.length) {
|
|
||||||
let item_sub_and_tax_total = item_discounted_total + item_tax_total;
|
|
||||||
|
|
||||||
let inclusive_total = 0;
|
|
||||||
|
|
||||||
inclusives.forEach(function(inclusive) {
|
|
||||||
inclusive_total += inclusive.rate;
|
|
||||||
}, this);
|
|
||||||
|
|
||||||
let item_base_rate = item_sub_and_tax_total / (1 + inclusive_total / 100);
|
|
||||||
|
|
||||||
item_tax_total = item_sub_and_tax_total - item_base_rate;
|
|
||||||
|
|
||||||
item_total = item_base_rate + discount;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (compounds.length) {
|
|
||||||
compounds.forEach(function(compound) {
|
|
||||||
item_tax_total += ((item_discounted_total + item_tax_total) / 100) * compound.rate;
|
|
||||||
}, this);
|
|
||||||
}
|
|
||||||
}, this);
|
|
||||||
},
|
|
||||||
|
|
||||||
calculateTotalsTax(totals_taxes, id, name, price) {
|
calculateTotalsTax(totals_taxes, id, name, price) {
|
||||||
let total_tax_index = totals_taxes.findIndex(total_tax => {
|
let total_tax_index = totals_taxes.findIndex(total_tax => {
|
||||||
if (total_tax.id === id) {
|
if (total_tax.id === id) {
|
||||||
@ -421,75 +243,6 @@ const app = new Vue({
|
|||||||
return totals_taxes;
|
return totals_taxes;
|
||||||
},
|
},
|
||||||
|
|
||||||
getItemByTaxes(item) {
|
|
||||||
let item_tax_ids = [];
|
|
||||||
let taxes = document_taxes;
|
|
||||||
|
|
||||||
let inclusives = [];
|
|
||||||
let compounds = [];
|
|
||||||
let index_taxes = 0;
|
|
||||||
let item_tax_total = 0;
|
|
||||||
|
|
||||||
item.tax_ids.forEach(function(item_tax, item_tax_index) {
|
|
||||||
item_tax_total = 0;
|
|
||||||
|
|
||||||
for (index_taxes = 0; index_taxes < taxes.length; index_taxes++) {
|
|
||||||
let tax = taxes[index_taxes];
|
|
||||||
|
|
||||||
if (item_tax.id != tax.id) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
switch (tax.type) {
|
|
||||||
case 'inclusive':
|
|
||||||
inclusives.push(tax);
|
|
||||||
break;
|
|
||||||
case 'compound':
|
|
||||||
compounds.push(tax);
|
|
||||||
break;
|
|
||||||
case 'fixed':
|
|
||||||
item_tax_total += tax.rate * item.quantity;
|
|
||||||
break;
|
|
||||||
case 'withholding':
|
|
||||||
item_tax_total += 0 - item.price * (tax.rate / 100);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
item_tax_total += item.price * (tax.rate / 100);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
item_tax_ids.push({
|
|
||||||
id: item_tax.id,
|
|
||||||
price: item_tax_total
|
|
||||||
});
|
|
||||||
}, this);
|
|
||||||
|
|
||||||
if (inclusives.length) {
|
|
||||||
let item_sub_and_tax_total = item_discounted_total + item_tax_total;
|
|
||||||
|
|
||||||
let inclusive_total = 0;
|
|
||||||
|
|
||||||
inclusives.forEach(function(inclusive) {
|
|
||||||
inclusive_total += inclusive.rate;
|
|
||||||
}, this);
|
|
||||||
|
|
||||||
let item_base_rate = item_sub_and_tax_total / (1 + inclusive_total / 100);
|
|
||||||
|
|
||||||
item_tax_total = item_sub_and_tax_total - item_base_rate;
|
|
||||||
|
|
||||||
item_total = item_base_rate + discount;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (compounds.length) {
|
|
||||||
compounds.forEach(function(compound) {
|
|
||||||
item_tax_total += ((item_discounted_total + item_tax_total) / 100) * compound.rate;
|
|
||||||
}, this);
|
|
||||||
}
|
|
||||||
|
|
||||||
return item_tax_ids;
|
|
||||||
},
|
|
||||||
|
|
||||||
// Select Item added form
|
// Select Item added form
|
||||||
onSelectedItem(item) {
|
onSelectedItem(item) {
|
||||||
let total = 1 * item.price;
|
let total = 1 * item.price;
|
||||||
@ -529,7 +282,7 @@ const app = new Vue({
|
|||||||
description: item.description,
|
description: item.description,
|
||||||
quantity: 1,
|
quantity: 1,
|
||||||
price: item.price,
|
price: item.price,
|
||||||
add_tax: true,
|
add_tax: (document.getElementById('line-discount') != null) ? false : true,
|
||||||
tax_ids: item_taxes,
|
tax_ids: item_taxes,
|
||||||
add_discount: false,
|
add_discount: false,
|
||||||
discount: 0,
|
discount: 0,
|
||||||
|
@ -13,6 +13,11 @@
|
|||||||
<col style="width: 30%;">
|
<col style="width: 30%;">
|
||||||
<col style="width: 100px;">
|
<col style="width: 100px;">
|
||||||
<col style="width: 100px;">
|
<col style="width: 100px;">
|
||||||
|
@if (!$hideDiscount)
|
||||||
|
@if (in_array(setting('localisation.discount_location', 'total'), ['item', 'both']))
|
||||||
|
<col style="width: 100px;">
|
||||||
|
@endif
|
||||||
|
@endif
|
||||||
<col style="width: 250px;">
|
<col style="width: 250px;">
|
||||||
<col style="width: 40px;">
|
<col style="width: 40px;">
|
||||||
</colgroup>
|
</colgroup>
|
||||||
@ -55,7 +60,7 @@
|
|||||||
@if (!$hideDiscount)
|
@if (!$hideDiscount)
|
||||||
@if (in_array(setting('localisation.discount_location', 'total'), ['item', 'both']))
|
@if (in_array(setting('localisation.discount_location', 'total'), ['item', 'both']))
|
||||||
@stack('discount_th_start')
|
@stack('discount_th_start')
|
||||||
<th class="text-right border-top-0 border-right-0 border-bottom-0">
|
<th id="line-discount" class="text-right border-top-0 border-right-0 border-bottom-0">
|
||||||
{{ trans('invoices.discount') }}
|
{{ trans('invoices.discount') }}
|
||||||
</th>
|
</th>
|
||||||
@stack('discount_th_end')
|
@stack('discount_th_end')
|
||||||
@ -83,7 +88,7 @@
|
|||||||
|
|
||||||
@stack('add_item_td_start')
|
@stack('add_item_td_start')
|
||||||
<tr id="addItem">
|
<tr id="addItem">
|
||||||
<td class="text-right border-bottom-0 p-0" colspan="{{ '7' }}">
|
<td class="text-right border-bottom-0 p-0" colspan="{{ (!$hideDiscount && in_array(setting('localisation.discount_location', 'total'), ['item', 'both'])) ? 8 : 7 }}" :colspan="colspan">
|
||||||
<x-select-item-button
|
<x-select-item-button
|
||||||
type="{{ $type }}"
|
type="{{ $type }}"
|
||||||
is-sale="{{ $isSalePrice }}"
|
is-sale="{{ $isSalePrice }}"
|
||||||
|
@ -11,6 +11,11 @@
|
|||||||
<col style="width: 30%;">
|
<col style="width: 30%;">
|
||||||
<col style="width: 100px;">
|
<col style="width: 100px;">
|
||||||
<col style="width: 100px;">
|
<col style="width: 100px;">
|
||||||
|
@if (!$hideDiscount)
|
||||||
|
@if (in_array(setting('localisation.discount_location', 'total'), ['item', 'both']))
|
||||||
|
<col style="width: 100px;">
|
||||||
|
@endif
|
||||||
|
@endif
|
||||||
<col style="width: 250px;">
|
<col style="width: 250px;">
|
||||||
<col style="width: 40px;">
|
<col style="width: 40px;">
|
||||||
</colgroup>
|
</colgroup>
|
||||||
@ -169,7 +174,7 @@
|
|||||||
@stack('item_custom_fields')
|
@stack('item_custom_fields')
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td class="border-top-0 p-0" colspan="4">
|
<td class="border-top-0 p-0" colspan="{{ (!$hideDiscount && in_array(setting('localisation.discount_location', 'total'), ['item', 'both'])) ? '5' : '4' }}">
|
||||||
<table class="w-100">
|
<table class="w-100">
|
||||||
<colgroup>
|
<colgroup>
|
||||||
<col style="width: 100px;">
|
<col style="width: 100px;">
|
||||||
@ -178,16 +183,17 @@
|
|||||||
<col style="width: 40px;">
|
<col style="width: 40px;">
|
||||||
</colgroup>
|
</colgroup>
|
||||||
<tbody>
|
<tbody>
|
||||||
@if (in_array(setting('localisation.discount_location', 'total'), ['item', 'both']))
|
|
||||||
|
@if (!$hideDiscount && in_array(setting('localisation.discount_location', 'total'), ['item', 'both']))
|
||||||
<tr v-if="!row.add_tax || !row.add_discount">
|
<tr v-if="!row.add_tax || !row.add_discount">
|
||||||
<td colspan="1" style="border: 0; max-width: 100px; border: 0px; padding-left: 10px;">
|
<td colspan="1" style="border: 0; max-width: 100px; border: 0px; padding-left: 10px;">
|
||||||
<div style="max-width: 100px;">
|
<div style="max-width: 100px;">
|
||||||
<button type="button" class="btn btn-link btn-sm p-0" @click="onAddDiscount(index)" v-if="!discount">Add Discount</button>
|
<button type="button" class="btn btn-link btn-sm p-0" @click="onAddDiscount(index)" v-if="!row.add_discount">Add Discount</button>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td colspan="1" style="border: 0; max-width: 100px; border: 0px; padding-right: 10px; text-align: right;">
|
<td colspan="1" style="border: 0; max-width: 100px; border: 0px; padding-right: 10px; text-align: right;">
|
||||||
<div style="max-width: 100px;">
|
<div style="max-width: 100px;">
|
||||||
<button type="button" class="btn btn-link btn-sm p-0" @click="onAddTax(index)" v-if="!tax">Add Tax</button>
|
<button type="button" class="btn btn-link btn-sm p-0" @click="onAddTax(index)" v-if="!row.add_tax">Add Tax</button>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td colspan="1" style="border: 0;" class="text-right total-column border-bottom-0 long-texts">
|
<td colspan="1" style="border: 0;" class="text-right total-column border-bottom-0 long-texts">
|
||||||
@ -232,8 +238,8 @@
|
|||||||
{{ Form::moneyGroup('discount', '', '', ['required' => 'required', 'disabled' => 'true' , 'row-input' => 'true', 'v-model' => 'row.discount', 'data-item' => 'discount', 'currency' => $currency, 'dynamic-currency' => 'currency'], 0.00, 'text-right input-price disabled-money') }}
|
{{ Form::moneyGroup('discount', '', '', ['required' => 'required', 'disabled' => 'true' , 'row-input' => 'true', 'v-model' => 'row.discount', 'data-item' => 'discount', 'currency' => $currency, 'dynamic-currency' => 'currency'], 0.00, 'text-right input-price disabled-money') }}
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td colspan="1" style="border: 0;" class="w-1">
|
<td colspan="1" style="border: 0;" class="pb-0 align-middle">
|
||||||
<button type="button" @click="onDeleteDiscount(index)" class="btn btn-link btn-sm p-0">
|
<button type="button" @click="onDeleteDiscount(index)" class="btn btn-link btn-delete p-0">
|
||||||
<i class="far fa-trash-alt"></i>
|
<i class="far fa-trash-alt"></i>
|
||||||
</button>
|
</button>
|
||||||
</td>
|
</td>
|
||||||
@ -335,7 +341,11 @@
|
|||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td colspan="1" style="border: 0;">
|
<td colspan="1" style="border: 0;">
|
||||||
|
@if (!$hideDiscount && in_array(setting('localisation.discount_location', 'total'), ['item', 'both']))
|
||||||
|
<button type="button" @click="onDeleteTax(index, row_tax_index)" class="btn btn-link btn-delete p-0">
|
||||||
|
<i class="far fa-trash-alt"></i>
|
||||||
|
</button>
|
||||||
|
@endif
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user