Remove the discount column on the invoice.

Street454
Street454
Offline
0
Can the discount column be removed? We do not use that and do not want to confuse customers.
Thanks!!!
Beth

Accepted Answer

Street454
Street454
Offline
Monday, April 14 2014, 12:15 PM - #Permalink
0
Thank You for going in and removing the column. Can you tell me what I missed? I needed to change the name of my site so that required me to reinstall Joomla. I have everything installed again but of course, the column is back. :) Thank You for all your help!
  • Germinal Camps
    more than a month ago
    well you just missed to delete the column from all the "areas" in the template edit form.. that's all :)
  • Street454
    more than a month ago
    I finally had the time to go through this and see what I missed! Got it!!!
    Thanks!
The reply is currently minimized Show
Responses (5)
  • Accepted Answer

    Thursday, April 10 2014, 10:54 AM - #Permalink
    0
    on the template? sure... you just need to get ride of it on the HTML code...
    but you need to be careful, and don't delete other things... :S
    The reply is currently minimized Show
  • Accepted Answer

    Street454
    Street454
    Offline
    Thursday, April 10 2014, 11:36 AM - #Permalink
    0
    When I copy the bootstrap templates into my HTML editor (I use coffeecup) I do not see the discount column. When I look at the invoice through the backend, the discount column is there. What am I doing wrong?
    • Germinal Camps
      more than a month ago
      if you want, please send me access to your site to support@ joomlathat.com and I'll take a look. I'm sure it's just a small thing you're missing, but I need to see it to know what it is.
    The reply is currently minimized Show
  • Accepted Answer

    Wednesday, January 18 2017, 05:12 AM - #Permalink
    0
    Hello,
    We are not using discount for the company either. I am trying to get rid of it completely. I successfully got rid of it, however I am still seeing empty column to the right. I would like to move all columns over. Am I missing something align to the right?

    http://prntscr.com/dx23j0

    <div style="font-family: Helvetica;">
    <div class="row-fluid">
    <div class="span6"><img src="/{company_logo}" alt="" />
    <dl class="dl-horizontal">
    <dt>[[FROM]]</dt>
    <dd><strong>{from_name}</strong></dd>
    <dt>[[ADDRESS]]</dt>
    <dd><address>{from_address}</address></dd>
    <dt>[[EMAIL]]</dt>
    <dd>{from_email}</dd>
    <dt>[[FISCAL_NUMBER]]</dt>
    <dd>{from_num}</dd>
    </dl>
    </div>
    <div class="span6">
    <div class="well well-small" style="overflow: hidden;">
    <dl class="dl-horizontal">
    <dt>[[INVOICE_NUM]]</dt>
    <dd>{invoice_num}</dd>
    <dt>[[INVOICE_DATE]]</dt>
    <dd>{invoice_date}</dd>
    <dt>[[DUE_DATE]]</dt>
    <dd>{invoice_duedate}</dd>
    <dt>[[INVOICE_TOTAL]]</dt>
    <dd>{total}</dd>
    <dt>[[STATUS]]</dt>
    <dd>{status}</dd>
    </dl>
    </div>
    <div class="well well-small" style="overflow: hidden;">
    <dl class="dl-horizontal">
    <dt>[[BILL_TO]]</dt>
    <dd><strong>{to_name}</strong></dd>
    <dt>[[ADDRESS]]</dt>
    <dd><address>{to_company} {to_address} {to_zipcode} {to_city} {to_state} {to_country}</address></dd>
    <dt>[[EMAIL]]</dt>
    <dd>{to_email}</dd>
    <dt>[[PHONE]]</dt>
    <dd>{to_phone}</dd>
    </dl>
    </div>
    </div>
    </div>
    <h2 class="invoice_header">[[ITEMS]]</h2>
    <table class="table table-striped" width="100%">
    <thead>
    <tr>
    <th align="left">[[#]]</th>
    <th align="left">[[DESCRIPTION]]</th>
    <th style="text-align: right;" align="right">[[UNIT_COST]]</th>
    <th style="text-align: right;" align="right">[[QUANTITY]]</th>
    <th style="text-align: right;" align="right">[[TAX]]</th>
    <th style="text-align: right;" align="right">[[PRICE]]</th>
    </tr>
    </thead>
    <tbody>
    <!--ITEMS-->
    <tr>
    <td>{sku}</td>
    <td><strong>{name}</strong> {desc}</td>
    <td style="text-align: right;" align="right">{value}</td>
    <td style="text-align: right;" align="right">{amount}</td>
    <td style="text-align: right;" align="right">{tax}</td>
    <td style="text-align: right;" align="right">{item_total}</td>
    </tr>
    <!--/ITEMS-->
    </tbody>
    <tfoot>
    <tr>
    <td colspan="4"> </td>
    <td style="text-align: right;" colspan="2" align="right">[[SUBTOTAL]]</td>
    <td style="text-align: right;" align="right">{subtotal_items_less_total_discount}</td>
    </tr>
    <!--GROUPED_TAXES-->
    <tr>
    <td colspan="4"> </td>
    <td style="text-align: right;" colspan="2" align="right">{name} ({tax_value}% [[OF]] {calculated_on_amount})</td>
    <td style="text-align: right;" align="right">{value}</td>
    </tr>
    <!--/GROUPED_TAXES-->
    <!--GROUPED_TAXES_TOTAL-->
    <tr>
    <td colspan="4"> </td>
    <td style="text-align: right;" colspan="2" align="right">{name}</td>
    <td style="text-align: right;" align="right">{value}</td>
    </tr>
    <!--/GROUPED_TAXES_TOTAL-->
    <!--TAXES-->
    <tr>
    <td colspan="4"> </td>
    <td style="text-align: right;" colspan="2" align="right">{name} ({tax_value})</td>
    <td style="text-align: right;" align="right">{value}</td>
    </tr>
    <!--/TAXES-->
    <tr>
    <td colspan="4"> </td>
    <td style="text-align: right;" colspan="2" align="right"><strong>[[TOTAL]]</strong></td>
    <td style="text-align: right;" align="right"><strong>{total}</strong></td>
    </tr>
    </tfoot>
    </table>
    <ul class="nav nav-tabs">
    <li><a href="#payments_received" data-toggle="tab">[[PAYMENTS_RECEIVED]] {num_payments_received}</a></li>
    <li class="active"><a href="#pending_payments" data-toggle="tab">[[PENDING_PAYMENTS]] {num_pending_payments}</a></li>
    </ul>
    <div class="tab-content">
    <div id="payments_received" class="tab-pane ">
    <table class="table table-striped " style="table-layout: fixed;" width="100%">
    <thead>
    <tr>
    <th align="left">[[PAYMENT_DATE]]</th>
    <th align="left">[[DESCRIPTION]]</th>
    <th align="left">[[STATUS]]</th>
    <th align="left"> </th>
    <th style="text-align: right;" align="right">[[AMOUNT]]</th>
    </tr>
    </thead>
    <tbody><!--PAYMENTS-->
    <tr>
    <td>{payment_datetime}</td>
    <td>{description}</td>
    <td>{payment_status}</td>
    <td style="text-align: right;" align="right"><a class="btn btn-mini btn-default btn-xs" href="/{payment_link}"> [[VIEW_DETAILS]]</a></td>
    <td style="text-align: right;" align="right">{amount}</td>
    </tr>
    <!--/PAYMENTS--></tbody>
    <tfoot>
    <tr>
    <td> </td>
    <td> </td>
    <td> </td>
    <td style="text-align: right;" align="right"><strong>[[TOTAL_AMOUNT_PAID]]</strong></td>
    <td style="text-align: right;" align="right"><strong>{total_payments}</strong></td>
    </tr>
    </tfoot>
    </table>
    </div>
    <div id="pending_payments" class="tab-pane active">
    <table class="table table-striped table-hover" style="table-layout: fixed;" width="100%">
    <thead>
    <tr>
    <th align="left">[[DUE_DATE]]</th>
    <th align="left">[[DESCRIPTION]]</th>
    <th align="left">[[STATUS]]</th>
    <th align="left"> </th>
    <th style="text-align: right;" align="right">[[AMOUNT]]</th>
    </tr>
    </thead>
    <tbody><!--PAYMENTS2-->
    <tr>
    <td>{duedate}</td>
    <td>{description}</td>
    <td>{payment_status}</td>
    <td style="text-align: right;" align="right"><a class="btn btn-info btn-mini btn-xs" href="/{payment_link}" target="_parent"> [[PAY_NOW]]</a></td>
    <td style="text-align: right;" align="right">{amount}</td>
    </tr>
    <!--/PAYMENTS2--></tbody>
    <tfoot>
    <tr>
    <td> </td>
    <td> </td>
    <td> </td>
    <td style="text-align: right;" align="right"><strong>[[AMOUNT_OUTSTANDING]]</strong></td>
    <td style="text-align: right;" align="right"><strong>{amount_outstanding}</strong></td>
    </tr>
    </tfoot>
    </table>
    </div>
    </div>
    <div style="padding: 2px;">[[NOTES]]</div>
    <div class="muted" style="border-top: 1px solid #000; padding: 2px;"><small>{notes}</small></div>
    </div>


    Thank you!
    The reply is currently minimized Show
  • Accepted Answer

    Wednesday, January 18 2017, 05:30 AM - #Permalink
    0
    Edit: I made it work by just removing the value while maintaining function in there
    Thank you!
    The reply is currently minimized Show
  • Accepted Answer

    Friday, May 06 2022, 10:51 AM - #Permalink
    0
    We also do not want the discount, because now the customers expect a discount. Can't you make the option to be available when you tick a box in configuration? What file's code do I have to edit to take it out? Thanks
    The reply is currently minimized Show
Your Reply