Skip to content

Commit

Permalink
Merge pull request #2616 from atm-maxime/3.6
Browse files Browse the repository at this point in the history
Fix : discount were not working anymore on supplier order and bill
  • Loading branch information
eldy committed Apr 18, 2015
2 parents 0b6c3ca + 3073aab commit ae41d38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions htdocs/core/tpl/objectline_create.tpl.php
Expand Up @@ -201,9 +201,9 @@
<?php } ?>
</td>
<?php } ?>
<td align="right"><input type="text" size="2" name="qty" class="flat" value="<?php echo (isset($_POST["qty"])?$_POST["qty"]:1); ?>">
<td align="right"><input type="text" size="2" id="qty" name="qty" class="flat" value="<?php echo (isset($_POST["qty"])?$_POST["qty"]:1); ?>">
</td>
<td align="right" class="nowrap"><input type="text" size="1" class="flat" value="<?php echo (isset($_POST["remise_percent"])?$_POST["remise_percent"]:$buyer->remise_percent); ?>" name="remise_percent"><span class="hideonsmartphone">%</span></td>
<td align="right" class="nowrap"><input type="text" size="1" id="remise_percent" name="remise_percent" class="flat" value="<?php echo (isset($_POST["remise_percent"])?$_POST["remise_percent"]:$buyer->remise_percent); ?>"><span class="hideonsmartphone">%</span></td>

<?php
if (! empty($usemargins))
Expand Down

0 comments on commit ae41d38

Please sign in to comment.