Skip to content

Commit

Permalink
Merge pull request #1939 from atm-maxime/3.6
Browse files Browse the repository at this point in the history
Fix bug 1588 : relative discount
  • Loading branch information
eldy committed Oct 11, 2014
2 parents fc63e8b + ec974ca commit dad1e31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/core/tpl/objectline_create.tpl.php
Expand Up @@ -203,7 +203,7 @@
<?php } ?>
<td align="right"><input type="text" size="2" 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_client); ?>" name="remise_percent"><span class="hideonsmartphone">%</span></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>

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

0 comments on commit dad1e31

Please sign in to comment.