Fix use MT rounding for cost price and margin on list of invoice
This commit is contained in:
parent
12735f23f6
commit
1c1e93bb37
@ -1916,8 +1916,8 @@ if ($resql) {
|
|||||||
|
|
||||||
|
|
||||||
// Action column
|
// Action column
|
||||||
if (!empty($conf->global->MAIN_CHECKBOX_LEFT_COLUMN)) {
|
if (getDolGlobalInt('MAIN_CHECKBOX_LEFT_COLUMN')) {
|
||||||
print '<td class="nowrap" align="center">';
|
print '<td class="nowrap center">';
|
||||||
if (($massactionbutton || $massaction) && $contextpage != 'poslist') { // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined
|
if (($massactionbutton || $massaction) && $contextpage != 'poslist') { // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined
|
||||||
$selected = 0;
|
$selected = 0;
|
||||||
if (in_array($obj->id, $arrayofselected)) {
|
if (in_array($obj->id, $arrayofselected)) {
|
||||||
@ -2407,14 +2407,14 @@ if ($resql) {
|
|||||||
|
|
||||||
// Total buying or cost price
|
// Total buying or cost price
|
||||||
if (!empty($arrayfields['total_pa']['checked'])) {
|
if (!empty($arrayfields['total_pa']['checked'])) {
|
||||||
print '<td class="right nowrap">'.price($marginInfo['pa_total']).'</td>';
|
print '<td class="right nowrap">'.price($marginInfo['pa_total'], 0, $langs, 1, -1, 'MT').'</td>';
|
||||||
if (!$i) {
|
if (!$i) {
|
||||||
$totalarray['nbfield']++;
|
$totalarray['nbfield']++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Total margin
|
// Total margin
|
||||||
if (!empty($arrayfields['total_margin']['checked'])) {
|
if (!empty($arrayfields['total_margin']['checked'])) {
|
||||||
print '<td class="right nowrap">'.price($marginInfo['total_margin']).'</td>';
|
print '<td class="right nowrap">'.price($marginInfo['total_margin'], 0, $langs, 1, -1, 'MT').'</td>';
|
||||||
if (!$i) {
|
if (!$i) {
|
||||||
$totalarray['nbfield']++;
|
$totalarray['nbfield']++;
|
||||||
}
|
}
|
||||||
@ -2528,7 +2528,7 @@ if ($resql) {
|
|||||||
|
|
||||||
// Action column (Show the massaction button only when this page is not opend from the Extended POS)
|
// Action column (Show the massaction button only when this page is not opend from the Extended POS)
|
||||||
|
|
||||||
if (empty($conf->global->MAIN_CHECKBOX_LEFT_COLUMN)) {
|
if (!getDolGlobalInt('MAIN_CHECKBOX_LEFT_COLUMN')) {
|
||||||
print '<td class="nowrap" align="center">';
|
print '<td class="nowrap" align="center">';
|
||||||
if (($massactionbutton || $massaction) && $contextpage != 'poslist') { // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined
|
if (($massactionbutton || $massaction) && $contextpage != 'poslist') { // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined
|
||||||
$selected = 0;
|
$selected = 0;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user