diff --git a/htdocs/core/boxes/box_accountancy_last_manual_entries.php b/htdocs/core/boxes/box_accountancy_last_manual_entries.php
index b1e4a637046..96abd8699f3 100644
--- a/htdocs/core/boxes/box_accountancy_last_manual_entries.php
+++ b/htdocs/core/boxes/box_accountancy_last_manual_entries.php
@@ -134,7 +134,7 @@ class box_accountancy_last_manual_entries extends ModeleBoxes
);
$this->info_box_contents[$line][] = array(
- 'td' => 'class="nowraponall right"',
+ 'td' => 'class="nowraponall right amount"',
'text' => price($amount, 0, $langs, 0, -1, -1, $conf->currency),
);
diff --git a/htdocs/core/boxes/box_activity.php b/htdocs/core/boxes/box_activity.php
index 487c2170a4a..371a7a0dbed 100644
--- a/htdocs/core/boxes/box_activity.php
+++ b/htdocs/core/boxes/box_activity.php
@@ -174,7 +174,7 @@ class box_activity extends ModeleBoxes
$totalnb += $data[$j]->nb;
$this->info_box_contents[$line][3] = array(
- 'td' => 'class="nowraponall right"',
+ 'td' => 'class="nowraponall right amount"',
'text' => price($data[$j]->Mnttot, 1, $langs, 0, 0, -1, $conf->currency),
);
$this->info_box_contents[$line][4] = array(
@@ -262,7 +262,7 @@ class box_activity extends ModeleBoxes
$totalnb += $data[$j]->nb;
$this->info_box_contents[$line][3] = array(
- 'td' => 'class="nowraponall right"',
+ 'td' => 'class="nowraponall right amount"',
'text' => price($data[$j]->Mnttot, 1, $langs, 0, 0, -1, $conf->currency),
);
$this->info_box_contents[$line][4] = array(
@@ -350,7 +350,7 @@ class box_activity extends ModeleBoxes
);
$this->info_box_contents[$line][3] = array(
- 'td' => 'class="nowraponall right"',
+ 'td' => 'class="nowraponall right amount"',
'text' => price($data[$j]->Mnttot, 1, $langs, 0, 0, -1, $conf->currency)
);
@@ -433,7 +433,7 @@ class box_activity extends ModeleBoxes
);
$totalnb += $data[$j]->nb;
$this->info_box_contents[$line][3] = array(
- 'td' => 'class="nowraponall right"',
+ 'td' => 'class="nowraponall right amount"',
'text' => price($data[$j]->Mnttot, 1, $langs, 0, 0, -1, $conf->currency),
);
$this->info_box_contents[$line][4] = array(
diff --git a/htdocs/core/boxes/box_commandes.php b/htdocs/core/boxes/box_commandes.php
index abf9baf06f3..ae939afe25c 100644
--- a/htdocs/core/boxes/box_commandes.php
+++ b/htdocs/core/boxes/box_commandes.php
@@ -163,7 +163,7 @@ class box_commandes extends ModeleBoxes
);
$this->info_box_contents[$line][] = array(
- 'td' => 'class="nowraponall right"',
+ 'td' => 'class="nowraponall right amount"',
'text' => price($objp->total_ht, 0, $langs, 0, -1, -1, $conf->currency),
);
diff --git a/htdocs/core/boxes/box_comptes.php b/htdocs/core/boxes/box_comptes.php
index f42b7a2ef7c..5570051a065 100644
--- a/htdocs/core/boxes/box_comptes.php
+++ b/htdocs/core/boxes/box_comptes.php
@@ -141,8 +141,11 @@ class box_comptes extends ModeleBoxes
);
$this->info_box_contents[$line][] = array(
- 'td' => 'class="right nowraponall"',
- 'text' => price($solde, 0, $langs, 1, -1, -1, $objp->currency_code)
+ 'td' => 'class="nowraponall right amount"',
+ 'text' => ''
+ .price($solde, 0, $langs, 1, -1, -1, $objp->currency_code)
+ .'',
+ 'asis' => 1,
);
$line++;
@@ -161,7 +164,7 @@ class box_comptes extends ModeleBoxes
);
$this->info_box_contents[$line][] = array(
- 'td' => 'class="liste_total right nowraponall"',
+ 'td' => 'class="liste_total nowraponall right amount"',
'text' => price($solde, 0, $langs, 0, -1, -1, $key)
);
$line++;
diff --git a/htdocs/core/boxes/box_factures_fourn.php b/htdocs/core/boxes/box_factures_fourn.php
index ae905d5d468..42a945b9289 100644
--- a/htdocs/core/boxes/box_factures_fourn.php
+++ b/htdocs/core/boxes/box_factures_fourn.php
@@ -183,7 +183,7 @@ class box_factures_fourn extends ModeleBoxes
);
$this->info_box_contents[$line][] = array(
- 'td' => 'class="right nowraponall"',
+ 'td' => 'class="nowraponall right amount"',
'text' => price($objp->total_ht, 0, $langs, 0, -1, -1, $conf->currency),
);
diff --git a/htdocs/core/boxes/box_factures_fourn_imp.php b/htdocs/core/boxes/box_factures_fourn_imp.php
index cfef8801414..a421706e855 100644
--- a/htdocs/core/boxes/box_factures_fourn_imp.php
+++ b/htdocs/core/boxes/box_factures_fourn_imp.php
@@ -170,7 +170,7 @@ class box_factures_fourn_imp extends ModeleBoxes
);
$this->info_box_contents[$line][] = array(
- 'td' => 'class="nowraponall right"',
+ 'td' => 'class="nowraponall right amount"',
'text' => price($objp->total_ht, 0, $langs, 0, -1, -1, $conf->currency),
);
diff --git a/htdocs/core/boxes/box_funnel_of_prospection.php b/htdocs/core/boxes/box_funnel_of_prospection.php
index 89ed2215732..cdaa9298f63 100644
--- a/htdocs/core/boxes/box_funnel_of_prospection.php
+++ b/htdocs/core/boxes/box_funnel_of_prospection.php
@@ -219,7 +219,7 @@ class box_funnel_of_prospection extends ModeleBoxes
if (!$conf->use_javascript_ajax) {
$stringtoprint .= '
';
$stringtoprint .= '| '.$labelStatus.' | ';
- $stringtoprint .= ''.price((isset($valsamount[$status]) ? (float) $valsamount[$status] : 0), 0, '', 1, -1, -1, $conf->currency).' | ';
+ $stringtoprint .= ''.price((isset($valsamount[$status]) ? (float) $valsamount[$status] : 0), 0, '', 1, -1, -1, $conf->currency).' | ';
$stringtoprint .= "
\n";
}
}
@@ -277,7 +277,7 @@ class box_funnel_of_prospection extends ModeleBoxes
);
$this->info_box_contents[$line][] = array(
'tr' => 'class="oddeven"',
- 'td' => 'class="right "',
+ 'td' => 'class="nowraponall right amount"',
'maxlength' => 500,
'text' => price($totalamount, 0, '', 1, -1, -1, $conf->currency)
);
@@ -290,7 +290,7 @@ class box_funnel_of_prospection extends ModeleBoxes
);
$this->info_box_contents[$line][] = array(
- 'td' => 'class="right "',
+ 'td' => 'class="nowraponall right amount"',
'maxlength' => 500,
'text' => price(price2num($ponderated_opp_amount, 'MT'), 0, '', 1, -1, -1, $conf->currency)
);
diff --git a/htdocs/core/boxes/box_members_last_subscriptions.php b/htdocs/core/boxes/box_members_last_subscriptions.php
index 949edd567f3..930b4d3a874 100644
--- a/htdocs/core/boxes/box_members_last_subscriptions.php
+++ b/htdocs/core/boxes/box_members_last_subscriptions.php
@@ -152,8 +152,8 @@ class box_members_last_subscriptions extends ModeleBoxes
);
$this->info_box_contents[$line][] = array(
- 'td' => 'class="right" width="18"',
- 'text' => ''.price($obj->subscription).'',
+ 'td' => 'class="nowraponall right amount" width="18"',
+ 'text' => price($obj->subscription),
);
$this->info_box_contents[$line][] = array(
diff --git a/htdocs/core/boxes/box_members_subscriptions_by_year.php b/htdocs/core/boxes/box_members_subscriptions_by_year.php
index 73c71521603..e7bf916d236 100644
--- a/htdocs/core/boxes/box_members_subscriptions_by_year.php
+++ b/htdocs/core/boxes/box_members_subscriptions_by_year.php
@@ -179,12 +179,12 @@ class box_members_subscriptions_by_year extends ModeleBoxes
'text' => $Number[$key],
);
$this->info_box_contents[$line][] = array(
- 'td' => 'class="right"',
- 'text' => ''.price($value).'',
+ 'td' => 'class="nowraponall right amount"',
+ 'text' => price($value),
);
$this->info_box_contents[$line][] = array(
- 'td' => 'class="right"',
- 'text' => ''.price(price2num($value / $Number[$key], 'MT')).'',
+ 'td' => 'class="nowraponall right amount"',
+ 'text' => price(price2num($value / $Number[$key], 'MT')),
);
$line++;
}
@@ -204,12 +204,12 @@ class box_members_subscriptions_by_year extends ModeleBoxes
'text' => $numb,
);
$this->info_box_contents[$line][] = array(
- 'td' => 'class="liste_total right"',
- 'text' => ''.price($tot).'',
+ 'td' => 'class="liste_total nowraponall right amount"',
+ 'text' => price($tot),
);
$this->info_box_contents[$line][] = array(
- 'td' => 'class="liste_total right"',
- 'text' => ''.price(price2num($numb > 0 ? ($tot / $numb) : 0, 'MT')).'',
+ 'td' => 'class="liste_total nowraponall right amount"',
+ 'text' => price(price2num($numb > 0 ? ($tot / $numb) : 0, 'MT')),
);
}
} else {
diff --git a/htdocs/core/boxes/box_produits.php b/htdocs/core/boxes/box_produits.php
index d039881445e..9a0c76503d0 100644
--- a/htdocs/core/boxes/box_produits.php
+++ b/htdocs/core/boxes/box_produits.php
@@ -180,7 +180,7 @@ class box_produits extends ModeleBoxes
}
}
$this->info_box_contents[$line][] = array(
- 'td' => 'class="right"',
+ 'td' => 'class="nowraponall right amount"',
'text' => $price,
);
diff --git a/htdocs/core/boxes/box_produits_alerte_stock.php b/htdocs/core/boxes/box_produits_alerte_stock.php
index 5e7ec72d0e1..edef4b3a38c 100644
--- a/htdocs/core/boxes/box_produits_alerte_stock.php
+++ b/htdocs/core/boxes/box_produits_alerte_stock.php
@@ -187,7 +187,7 @@ class box_produits_alerte_stock extends ModeleBoxes
}
$this->info_box_contents[$line][] = array(
- 'td' => 'class="right nowraponall"',
+ 'td' => 'class="nowraponall right amount"',
'text' => $price,
);
diff --git a/htdocs/core/boxes/box_propales.php b/htdocs/core/boxes/box_propales.php
index 51d313b7254..f3f9496325f 100644
--- a/htdocs/core/boxes/box_propales.php
+++ b/htdocs/core/boxes/box_propales.php
@@ -160,7 +160,7 @@ class box_propales extends ModeleBoxes
);
$this->info_box_contents[$line][] = array(
- 'td' => 'class="right nowraponall"',
+ 'td' => 'class="nowraponall right amount"',
'text' => price($objp->total_ht, 0, $langs, 0, -1, -1, $conf->currency),
);
diff --git a/htdocs/core/boxes/box_supplier_orders.php b/htdocs/core/boxes/box_supplier_orders.php
index 2cc34a9255b..89fd7850c5c 100644
--- a/htdocs/core/boxes/box_supplier_orders.php
+++ b/htdocs/core/boxes/box_supplier_orders.php
@@ -147,7 +147,7 @@ class box_supplier_orders extends ModeleBoxes
);
$this->info_box_contents[$line][] = array(
- 'td' => 'class="right nowraponall"',
+ 'td' => 'class="nowraponall right amount"',
'text' => price($objp->total_ht, 0, $langs, 0, -1, -1, $conf->currency),
);
diff --git a/htdocs/core/boxes/box_supplier_orders_awaiting_reception.php b/htdocs/core/boxes/box_supplier_orders_awaiting_reception.php
index f9d2de4b7fc..9a40c3f9aec 100644
--- a/htdocs/core/boxes/box_supplier_orders_awaiting_reception.php
+++ b/htdocs/core/boxes/box_supplier_orders_awaiting_reception.php
@@ -151,7 +151,7 @@ class box_supplier_orders_awaiting_reception extends ModeleBoxes
);
$this->info_box_contents[$line][] = array(
- 'td' => 'class="right nowraponall"',
+ 'td' => 'class="nowraponall right amount"',
'text' => price($objp->total_ht, 0, $langs, 0, -1, -1, $conf->currency),
);