Discount in percentage

Hi to al,
is there a way to use discount in percentage ?
usually i use 10% and it’s boring every time for every item manually calculate the value of a percentage.

Thank you so much
Mauro.

No, it is not planned at the moment.

What I did was to edit application/modules/quotes/models/mdl_quote_item_amounts.php and change the line

$item_discount_total = $item->item_discount_amount * $item->item_quantity;

with:

$item_discount_total = $item_subtotal * ($item->item_discount_amount / 100);

If you want to display the actual percentage just edit the views file.