Rename discount type Normal => Percentage #kbcqjv

This commit is contained in:
Burak Çakırel
2021-08-15 22:35:05 +01:00
parent e8720c6a8a
commit 5aa6071e9b
6 changed files with 17 additions and 17 deletions

View File

@@ -71,7 +71,7 @@ class CreateDocumentItemsAndTotals extends Job
}
if (!empty($this->request['discount'])) {
if ($this->request['discount_type'] === 'normal') {
if ($this->request['discount_type'] === 'percentage') {
$discount_total = $sub_total * ($this->request['discount'] / 100);
} else {
$discount_total = $this->request['discount'];
@@ -195,7 +195,7 @@ class CreateDocumentItemsAndTotals extends Job
$discount_amount = 0;
if (!empty($item['discount'])) {
if ($item['discount_type'] === 'normal') {
if ($item['discount_type'] === 'percentage') {
$discount_amount = ($item_amount * ($item['discount'] / 100));
} else {
$discount_amount = $item['discount'];