Merge branch 'develop' of git@github.com:Dolibarr/dolibarr.git into develop
This commit is contained in:
commit
80bbc2577e
@ -181,6 +181,7 @@ else
|
|||||||
print '<a class="butActionRefused classfortooltip" href="#" title="'.dol_escape_htmltag($langs->transnoentitiesnoconv("NoInvoiceToWithdraw", $langs->transnoentitiesnoconv("StandingOrders"))).'">'.$langs->trans("CreateAll")."</a>\n";
|
print '<a class="butActionRefused classfortooltip" href="#" title="'.dol_escape_htmltag($langs->transnoentitiesnoconv("NoInvoiceToWithdraw", $langs->transnoentitiesnoconv("StandingOrders"))).'">'.$langs->trans("CreateAll")."</a>\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
print "</form>\n";
|
||||||
print "</div>\n";
|
print "</div>\n";
|
||||||
print '<br>';
|
print '<br>';
|
||||||
|
|
||||||
|
|||||||
@ -1557,12 +1557,12 @@ if ((empty($conf->global->PRODUIT_CUSTOMER_PRICES) || $action=='showlog_default_
|
|||||||
{
|
{
|
||||||
print '<td class="right">';
|
print '<td class="right">';
|
||||||
if (empty($objp->price_by_qty)) {
|
if (empty($objp->price_by_qty)) {
|
||||||
print ($objp->price_base_type != 'TTC' ? price($objp->price) : '');
|
print price($objp->price);
|
||||||
}
|
}
|
||||||
print "</td>";
|
print "</td>";
|
||||||
print '<td class="right">';
|
print '<td class="right">';
|
||||||
if (empty($objp->price_by_qty)) {
|
if (empty($objp->price_by_qty)) {
|
||||||
print ($objp->price_base_type == 'TTC' ? price($objp->price_ttc) : '');
|
print price($objp->price_ttc);
|
||||||
}
|
}
|
||||||
print "</td>";
|
print "</td>";
|
||||||
if (! empty($conf->dynamicprices->enabled)) { //Only if module is enabled
|
if (! empty($conf->dynamicprices->enabled)) { //Only if module is enabled
|
||||||
@ -1572,13 +1572,13 @@ if ((empty($conf->global->PRODUIT_CUSTOMER_PRICES) || $action=='showlog_default_
|
|||||||
|
|
||||||
print '<td class="right">';
|
print '<td class="right">';
|
||||||
if (empty($objp->price_by_qty)) {
|
if (empty($objp->price_by_qty)) {
|
||||||
print ($objp->price_base_type != 'TTC' ? price($objp->price_min) : '');
|
print price($objp->price_min);
|
||||||
}
|
}
|
||||||
print '</td>';
|
print '</td>';
|
||||||
|
|
||||||
print '<td class="right">';
|
print '<td class="right">';
|
||||||
if (empty($objp->price_by_qty)) {
|
if (empty($objp->price_by_qty)) {
|
||||||
print ($objp->price_base_type == 'TTC' ? price($objp->price_min_ttc) : '');
|
print price($objp->price_min_ttc);
|
||||||
}
|
}
|
||||||
print '</td>';
|
print '</td>';
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user