We want to display the total amount of the discount in the invoice, when we make individual discount for several products ? (Display the sum of individual discounts as total discount)
- MSAnswered
Hello,
As I know the discount column show the total discount. Can you please take the screenshot of the sale modal or pdf?
Thank you
- TPAnswered
we included individual discounts for the products in “invoice 2”, but there isn’t the value of “total discount” prints in the “invoice 1”.
It prints the total discount when we include a total discount for the invoice, but it doesn’t print the total discount when we include individual discounts for products. We want to print the toatal discount amount in the invoice, when we include individual discounts. How can we do that?
Attachments - MSAnswered
Hello,
POS receipt don’t show the total discount. You can add the following to
inthemes/default/admin/views/pos/view.php
if ($inv->total_discount > 0) { echo '<tr><th>' . lang('discount') . '</th><th class="text-right">' . $this->sma->formatMoney($return_sale ? ($inv->total_discount + $return_sale->total_discount) : $inv->total_discount) . '</th></tr>'; }
Thank you
TPAnsweredPlease send Line Number
MSAnsweredHello,
Please search the file for
<tfoot>
and then you can add it. I have no clue you want to add it before tax or total or where. Adding it to tfoot should be fine and then view it in the receipt.Thank you
TPAnsweredWe want to display the Promotion details(promotion prices) in the invoice like in individual product vise discounts. Example :- if we set a promotion for a product as 130 to 100 , invoice should display as 130 - 100, like in product vise discounts. How can we do that ?
MSAnsweredHello,
There is no such ooption. Promo price will be cosidered as price for the promo period. There is no option to make it as discount 😦
Thank you
TPAnsweredIs there a possible way to do that with coding ? Can we have instructions for that ?
MSAnsweredHello,
You can modify the view file
themes/default/admin/views/pos/view.php
as you need.Thank you
TPAnsweredcan we have the code for that, please ?
- Login to Reply
Showing from 1 to 10 of total 16 records« PreviousNext »