diff --git a/htdocs/adherents/class/adherent.class.php b/htdocs/adherents/class/adherent.class.php
index f2e84e5127a..89a1ed2904d 100644
--- a/htdocs/adherents/class/adherent.class.php
+++ b/htdocs/adherents/class/adherent.class.php
@@ -3323,7 +3323,7 @@ class Adherent extends CommonObject
$return .= '
'.$this->getmorphylib('', 2).'';
}
if (method_exists($this, 'getLibStatut')) {
- $return .= '
'.$this->getLibStatut(5).'
';
+ $return .= '
'.$this->getLibStatut(3).'
';
}
$return .= '';
$return .= '';
diff --git a/htdocs/adherents/class/adherent_type.class.php b/htdocs/adherents/class/adherent_type.class.php
index eda018e6dca..396dea45b0e 100644
--- a/htdocs/adherents/class/adherent_type.class.php
+++ b/htdocs/adherents/class/adherent_type.class.php
@@ -1016,7 +1016,7 @@ class AdherentType extends CommonObject
}
}
if (method_exists($this, 'getLibStatut')) {
- $return .= '
'.$this->getLibStatut(5).'
';
+ $return .= '
'.$this->getLibStatut(3).'
';
}
$return .= '';
$return .= '';
diff --git a/htdocs/bom/class/bom.class.php b/htdocs/bom/class/bom.class.php
index d5e3532dbd6..361ac64928e 100644
--- a/htdocs/bom/class/bom.class.php
+++ b/htdocs/bom/class/bom.class.php
@@ -1589,7 +1589,7 @@ class BOM extends CommonObject
$return .= '
'.$prod->getNomUrl(1).'';
}
if (method_exists($this, 'getLibStatut')) {
- $return .= '
'.$this->getLibStatut(5).'
';
+ $return .= '
'.$this->getLibStatut(3).'
';
}
$return .= '';
diff --git a/htdocs/comm/propal/class/propal.class.php b/htdocs/comm/propal/class/propal.class.php
index 46f06614941..5fc0de4c43f 100644
--- a/htdocs/comm/propal/class/propal.class.php
+++ b/htdocs/comm/propal/class/propal.class.php
@@ -3976,7 +3976,7 @@ class Propal extends CommonObject
$return .='
'.$langs->trans("AmountHT").' : '.price($this->total_ht).'';
}
if (method_exists($this, 'getLibStatut')) {
- $return .= '
'.$this->getLibStatut(5).'
';
+ $return .= '
'.$this->getLibStatut(3).'
';
}
$return .= '';
$return .= '';
diff --git a/htdocs/compta/bank/class/account.class.php b/htdocs/compta/bank/class/account.class.php
index 89b2a5f31d9..3ee2ad037b5 100644
--- a/htdocs/compta/bank/class/account.class.php
+++ b/htdocs/compta/bank/class/account.class.php
@@ -1844,10 +1844,10 @@ class Account extends CommonObject
}
if (method_exists($this, 'solde')) {
$return .= '
';
- $return .= ''.$langs->trans("Balance").' : '.price($this->solde(1), 0, $langs, 1, -1, -1, $this->currency_code).'';
+ $return .= ''.$langs->trans("Balance").' : '.price(price2num($this->solde(1), 'MT'), 0, $langs, 1, -1, -1, $this->currency_code).'';
}
if (method_exists($this, 'getLibStatut')) {
- $return .= '
'.$this->getLibStatut(5).'
';
+ $return .= '
'.$this->getLibStatut(3).'
';
}
$return .= '';
$return .= '';
diff --git a/htdocs/compta/bank/list.php b/htdocs/compta/bank/list.php
index 668ada03fdb..bc2c2528d07 100644
--- a/htdocs/compta/bank/list.php
+++ b/htdocs/compta/bank/list.php
@@ -787,7 +787,7 @@ foreach ($accounts as $key => $type) {
if (!empty($arrayfields['balance']['checked'])) {
print '';
print '';
- print ''.price($solde, 0, $langs, 1, -1, -1, $objecttmp->currency_code).'';
+ print ''.price(price2num($solde, 'MT'), 0, $langs, 1, -1, -1, $objecttmp->currency_code).'';
print '';
print ' | ';
if (!$i) {
diff --git a/htdocs/compta/cashcontrol/class/cashcontrol.class.php b/htdocs/compta/cashcontrol/class/cashcontrol.class.php
index 8cc3c93b59c..deb86fba456 100644
--- a/htdocs/compta/cashcontrol/class/cashcontrol.class.php
+++ b/htdocs/compta/cashcontrol/class/cashcontrol.class.php
@@ -495,7 +495,7 @@ class CashControl extends CommonObject
$return .= '
'.$langs->trans("Year").' : '.$this->year_close.'';
}
if (method_exists($this, 'getLibStatut')) {
- $return .= '
'.$this->getLibStatut(5).'
';
+ $return .= '
'.$this->getLibStatut(3).'
';
}
$return .= '';
$return .= '';
diff --git a/htdocs/compta/facture/class/facture.class.php b/htdocs/compta/facture/class/facture.class.php
index ed4d8bfd498..265b5732f24 100644
--- a/htdocs/compta/facture/class/facture.class.php
+++ b/htdocs/compta/facture/class/facture.class.php
@@ -5819,7 +5819,7 @@ class Facture extends CommonInvoice
$return .= '
'.$this->fk_user_author.'';
}
if (method_exists($this, 'getLibStatut')) {
- $return .= '
'.$this->getLibStatut(5).'
';
+ $return .= '
'.$this->getLibStatut(3).'
';
}
$return .= '';
$return .= '';
diff --git a/htdocs/compta/paiement/cheque/class/remisecheque.class.php b/htdocs/compta/paiement/cheque/class/remisecheque.class.php
index 53751cce194..5c885267559 100644
--- a/htdocs/compta/paiement/cheque/class/remisecheque.class.php
+++ b/htdocs/compta/paiement/cheque/class/remisecheque.class.php
@@ -1050,7 +1050,7 @@ class RemiseCheque extends CommonObject
$return .= ' | '.$this->account_id.'';
}
if (method_exists($this, 'LibStatut')) {
- $return .= '
'.$this->LibStatut($this->statut, 5).'
';
+ $return .= '
'.$this->getLibStatut(3).'
';
}
if (property_exists($this, 'amount')) {
$return .= ' | '.$langs->trans("Amount").' : '.price($this->amount).'
';
diff --git a/htdocs/compta/prelevement/class/bonprelevement.class.php b/htdocs/compta/prelevement/class/bonprelevement.class.php
index 7d7127fc6ba..cbe2eda9533 100644
--- a/htdocs/compta/prelevement/class/bonprelevement.class.php
+++ b/htdocs/compta/prelevement/class/bonprelevement.class.php
@@ -2524,7 +2524,6 @@ class BonPrelevement extends CommonObject
{
global $langs;
-
$return = '';
$return .= '
';
$return .= '
';
@@ -2540,7 +2539,7 @@ class BonPrelevement extends CommonObject
$return .= '
'.$langs->trans("Amount").' : '.price($this->total).'';
}
if (method_exists($this, 'LibStatut')) {
- $return .= '
'.$this->LibStatut($this->statut, 5).'
';
+ $return .= '
'.$this->getLibStatut(3).'
';
}
$return .= '';
$return .= '
';
diff --git a/htdocs/compta/sociales/class/chargesociales.class.php b/htdocs/compta/sociales/class/chargesociales.class.php
index 3619ebfad7a..140f1cffec6 100644
--- a/htdocs/compta/sociales/class/chargesociales.class.php
+++ b/htdocs/compta/sociales/class/chargesociales.class.php
@@ -779,7 +779,7 @@ class ChargeSociales extends CommonObject
$return .= ''.price($this->amount, 0, $langs, 1, -1, -1, $conf->currency).'';
}
if (method_exists($this, 'LibStatut')) {
- $return .= '
'.$this->LibStatut($this->paye, 5, $this->alreadypaid).'
';
+ $return .= '
'.$this->getLibStatut(3, $this->alreadypaid).'
';
}
$return .= '';
$return .= '';
diff --git a/htdocs/compta/tva/class/tva.class.php b/htdocs/compta/tva/class/tva.class.php
index 2ec1199dd29..220863a0cb2 100644
--- a/htdocs/compta/tva/class/tva.class.php
+++ b/htdocs/compta/tva/class/tva.class.php
@@ -935,7 +935,7 @@ class Tva extends CommonObject
$return .= '
'.$langs->trans("DateEnd").' : '.dol_print_date($this->datev).'';
}
if (method_exists($this, 'LibStatut')) {
- $return .= '
'.$this->LibStatut($this->paiementtype, 5, $this->alreadypaid).'
';
+ $return .= '
'.$this->getLibStatut(3, $this->alreadypaid).'
';
}
$return .= '';
$return .= '';
diff --git a/htdocs/contact/class/contact.class.php b/htdocs/contact/class/contact.class.php
index b44d22da312..407eed06921 100644
--- a/htdocs/contact/class/contact.class.php
+++ b/htdocs/contact/class/contact.class.php
@@ -2202,7 +2202,7 @@ class Contact extends CommonObject
$return .= ' : '.$this->LibPubPriv($this->priv).'';
}*/
if (method_exists($this, 'getLibStatut')) {
- $return .= '
'.$this->getLibStatut(5).'
';
+ $return .= '
'.$this->getLibStatut(3).'
';
}
$return .= '';
$return .= '';
diff --git a/htdocs/contrat/class/contrat.class.php b/htdocs/contrat/class/contrat.class.php
index f494bf22ef5..14f5cb62bfa 100644
--- a/htdocs/contrat/class/contrat.class.php
+++ b/htdocs/contrat/class/contrat.class.php
@@ -2844,7 +2844,7 @@ class Contrat extends CommonObject
$return .= '
'.$langs->trans("DateContract").' : '.dol_print_date($this->date_contrat, 'day').'';
}
if (method_exists($this, 'getLibStatut')) {
- $return .= '
'.$this->getLibStatut(5).'
';
+ $return .= '
'.$this->getLibStatut(3).'
';
}
$return .= '';
$return .= '';
diff --git a/htdocs/core/class/html.formcategory.class.php b/htdocs/core/class/html.formcategory.class.php
index 695b1ab657b..ef252765ea0 100644
--- a/htdocs/core/class/html.formcategory.class.php
+++ b/htdocs/core/class/html.formcategory.class.php
@@ -41,7 +41,7 @@ class FormCategory extends Form
* @param string $showempty 1 or 'string' to add an empty entry
* @return string A HTML filter box (Note: selected results can get with GETPOST("search_category_".$type."_list"))
*/
- public function getFilterBox($type, array $preSelected, $morecss = "minwidth300 widthcentpercentminusx", $searchCategoryProductOperator = -1, $multiselect = 1, $nocateg = 1, $showempty = '')
+ public function getFilterBox($type, array $preSelected, $morecss = "minwidth300imp widthcentpercentminusx", $searchCategoryProductOperator = -1, $multiselect = 1, $nocateg = 1, $showempty = '')
{
global $langs, $db;
diff --git a/htdocs/don/class/don.class.php b/htdocs/don/class/don.class.php
index 08491e9b4a3..01b1e1bf6cc 100644
--- a/htdocs/don/class/don.class.php
+++ b/htdocs/don/class/don.class.php
@@ -1171,7 +1171,7 @@ class Don extends CommonObject
$return .= '
'.$langs->trans("Amount").' : '.price($this->amount).'';
}
if (method_exists($this, 'LibStatut')) {
- $return .= '
'.$this->LibStatut($this->labelStatus, 5).'
';
+ $return .= '
'.$this->getLibStatut(3).'
';
}
$return .= '';
$return .= '';
diff --git a/htdocs/expensereport/class/expensereport.class.php b/htdocs/expensereport/class/expensereport.class.php
index 76a0614da18..4bac14b34f1 100644
--- a/htdocs/expensereport/class/expensereport.class.php
+++ b/htdocs/expensereport/class/expensereport.class.php
@@ -2793,7 +2793,7 @@ class ExpenseReport extends CommonObject
$return .= ''.dol_print_date($this->date_fin, 'day').'';
}
if (method_exists($this, 'getLibStatut')) {
- $return .= '
'.$this->getLibStatut(5).'
';
+ $return .= '
'.$this->getLibStatut(3).'
';
}
$return .= '';
$return .= '';
diff --git a/htdocs/expensereport/class/paymentexpensereport.class.php b/htdocs/expensereport/class/paymentexpensereport.class.php
index 053f46d20cf..955181cf632 100644
--- a/htdocs/expensereport/class/paymentexpensereport.class.php
+++ b/htdocs/expensereport/class/paymentexpensereport.class.php
@@ -744,7 +744,7 @@ class PaymentExpenseReport extends CommonObject
$return .= '
'.$langs->trans("Amount").' : '.price($this->amount).'';
}
if (method_exists($this, 'getLibStatut')) {
- $return .= '
'.$this->getLibStatut(5).'
';
+ $return .= '
'.$this->getLibStatut(3).'
';
}
$return .= '';
$return .= '';
diff --git a/htdocs/fichinter/class/fichinter.class.php b/htdocs/fichinter/class/fichinter.class.php
index bd76ca7bbc3..e739ee0806e 100644
--- a/htdocs/fichinter/class/fichinter.class.php
+++ b/htdocs/fichinter/class/fichinter.class.php
@@ -1503,7 +1503,7 @@ class Fichinter extends CommonObject
$return .= '
'.$langs->trans("Duration").' : '.convertSecondToTime($this->duration, 'allhourmin').'';
}
if (method_exists($this, 'getLibStatut')) {
- $return .= '
'.$this->getLibStatut(5).'
';
+ $return .= '
'.$this->getLibStatut(3).'
';
}
$return .= '';
$return .= '';
diff --git a/htdocs/fourn/class/fournisseur.commande.class.php b/htdocs/fourn/class/fournisseur.commande.class.php
index 170f60912aa..17033086e69 100644
--- a/htdocs/fourn/class/fournisseur.commande.class.php
+++ b/htdocs/fourn/class/fournisseur.commande.class.php
@@ -3648,7 +3648,7 @@ class CommandeFournisseur extends CommonOrder
$return .= '
'.$langs->trans("Billed").' : '.yn($this->billed).'';
}
if (method_exists($this, 'getLibStatut')) {
- $return .= '
'.$this->getLibStatut(5).'
';
+ $return .= '
'.$this->getLibStatut(3).'
';
}
$return .= '';
$return .= '';
diff --git a/htdocs/fourn/class/fournisseur.facture.class.php b/htdocs/fourn/class/fournisseur.facture.class.php
index 34af6f4cbda..7e4dad3f219 100644
--- a/htdocs/fourn/class/fournisseur.facture.class.php
+++ b/htdocs/fourn/class/fournisseur.facture.class.php
@@ -3307,7 +3307,7 @@ class FactureFournisseur extends CommonInvoice
$return .= '
'.$langs->trans("AmountHT").' : '.price($this->total_ht).'';
}
if (method_exists($this, 'getLibStatut')) {
- $return .= '
'.$this->getLibStatut(5).'
';
+ $return .= '
'.$this->getLibStatut(3).'
';
}
$return .= '';
$return .= '';
diff --git a/htdocs/holiday/class/holiday.class.php b/htdocs/holiday/class/holiday.class.php
index 4717db8bea0..619d8a3fc85 100644
--- a/htdocs/holiday/class/holiday.class.php
+++ b/htdocs/holiday/class/holiday.class.php
@@ -2493,7 +2493,7 @@ class Holiday extends CommonObject
$return .= ''.dol_print_date($this->date_fin, 'day').'';
}
if (method_exists($this, 'getLibStatut')) {
- $return .= '
'.$this->getLibStatut(5).'
';
+ $return .= '
'.$this->getLibStatut(3).'
';
}
$return .= '';
$return .= '';
diff --git a/htdocs/hrm/class/evaluation.class.php b/htdocs/hrm/class/evaluation.class.php
index a62b16b54f1..ab87aaeeef5 100644
--- a/htdocs/hrm/class/evaluation.class.php
+++ b/htdocs/hrm/class/evaluation.class.php
@@ -1084,7 +1084,7 @@ class Evaluation extends CommonObject
}
if (method_exists($this, 'getLibStatut')) {
- $return .= '
'.$this->getLibStatut(5).'
';
+ $return .= '
'.$this->getLibStatut(3).'
';
}
$return .= '';
$return .= '';
diff --git a/htdocs/knowledgemanagement/class/knowledgerecord.class.php b/htdocs/knowledgemanagement/class/knowledgerecord.class.php
index 275b0a2a2e3..15682d00fc9 100644
--- a/htdocs/knowledgemanagement/class/knowledgerecord.class.php
+++ b/htdocs/knowledgemanagement/class/knowledgerecord.class.php
@@ -1145,7 +1145,7 @@ class KnowledgeRecord extends CommonObject
$return .= ''.dolGetFirstLineOfText($this->question).'';
}
if (method_exists($this, 'getLibStatut')) {
- $return .= '
'.$this->getLibStatut(5).'
';
+ $return .= '
'.$this->getLibStatut(3).'
';
}
$return .= '';
$return .= '';
diff --git a/htdocs/loan/class/loan.class.php b/htdocs/loan/class/loan.class.php
index 951d430e96f..ef44b2fb196 100644
--- a/htdocs/loan/class/loan.class.php
+++ b/htdocs/loan/class/loan.class.php
@@ -751,7 +751,7 @@ class Loan extends CommonObject
}
if (method_exists($this, 'LibStatut')) {
- $return .= '
'.$this->LibStatut($this->totalpaid, 5, $this->alreadypaid).'
';
+ $return .= '
'.$this->getLibStatut(3, $this->alreadypaid).'
';
}
$return .= '';
$return .= '';
diff --git a/htdocs/modulebuilder/template/class/myobject.class.php b/htdocs/modulebuilder/template/class/myobject.class.php
index 2dcb87ea523..19d99557569 100644
--- a/htdocs/modulebuilder/template/class/myobject.class.php
+++ b/htdocs/modulebuilder/template/class/myobject.class.php
@@ -921,7 +921,7 @@ class MyObject extends CommonObject
$return .= ''.price($this->amount, 0, $langs, 1, -1, -1, $conf->currency).'';
}
if (method_exists($this, 'getLibStatut')) {
- $return .= '
'.$this->getLibStatut(5).'
';
+ $return .= '
'.$this->getLibStatut(3).'
';
}
$return .= '';
$return .= '';
diff --git a/htdocs/mrp/class/mo.class.php b/htdocs/mrp/class/mo.class.php
index 2e9072ac0f2..e5af1f2bddf 100644
--- a/htdocs/mrp/class/mo.class.php
+++ b/htdocs/mrp/class/mo.class.php
@@ -1661,7 +1661,7 @@ class Mo extends CommonObject
$return .= '
'.$langs->trans('Quantity').' : '.$this->qty.'';
}
if (method_exists($this, 'getLibStatut')) {
- $return .= '
'.$this->getLibStatut(5).'
';
+ $return .= '
'.$this->getLibStatut(3).'
';
}
$return .= '';
$return .= '';
diff --git a/htdocs/partnership/class/partnership.class.php b/htdocs/partnership/class/partnership.class.php
index 26650f81d2a..6a5f4623618 100644
--- a/htdocs/partnership/class/partnership.class.php
+++ b/htdocs/partnership/class/partnership.class.php
@@ -1343,7 +1343,7 @@ class Partnership extends CommonObject
$return .= ' '.$this->label.'
';
}
if (method_exists($this, 'getLibStatut')) {
- $return .= '
'.$this->getLibStatut(5).'
';
+ $return .= '
'.$this->getLibStatut(3).'
';
}
$return .= '';
$return .= '';
diff --git a/htdocs/product/class/product.class.php b/htdocs/product/class/product.class.php
index 8939132cff9..d4a30517068 100644
--- a/htdocs/product/class/product.class.php
+++ b/htdocs/product/class/product.class.php
@@ -6404,7 +6404,7 @@ class Product extends CommonObject
$return .= '
'.$langs->trans('PhysicalStock').' : '.$this->stock_reel.'';
}
if (method_exists($this, 'getLibStatut')) {
- $return .='
'.$this->getLibStatut(5, 1).' '.$this->getLibStatut(5, 0).'';
+ $return .='
'.$this->getLibStatut(3, 1).' '.$this->getLibStatut(3, 0).'';
}
$return .= '';
$return .= '';
diff --git a/htdocs/product/stock/class/entrepot.class.php b/htdocs/product/stock/class/entrepot.class.php
index 6b0d558c689..416d96ad55b 100644
--- a/htdocs/product/stock/class/entrepot.class.php
+++ b/htdocs/product/stock/class/entrepot.class.php
@@ -977,7 +977,7 @@ class Entrepot extends CommonObject
$return .= '
'.price($this->sellvalue).'';
}
if (method_exists($this, 'getLibStatut')) {
- $return .= '
'.$this->getLibStatut(5).'
';
+ $return .= '
'.$this->getLibStatut(3).'
';
}
$return .= '';
$return .= '';
diff --git a/htdocs/projet/class/project.class.php b/htdocs/projet/class/project.class.php
index c9a811ad245..fc4f6acb426 100644
--- a/htdocs/projet/class/project.class.php
+++ b/htdocs/projet/class/project.class.php
@@ -2419,7 +2419,7 @@ class Project extends CommonObject
$return .= '
'.price($this->opp_amount).'';
}
if (method_exists($this, 'getLibStatut')) {
- $return .= '
'.$this->getLibStatut(5).'
';
+ $return .= '
'.$this->getLibStatut(3).'
';
}
$return .= '';
$return .= '';
diff --git a/htdocs/projet/list.php b/htdocs/projet/list.php
index abb07d36480..1f203113b3a 100644
--- a/htdocs/projet/list.php
+++ b/htdocs/projet/list.php
@@ -1002,7 +1002,7 @@ if ($user->rights->user->user->lire) {
// Filter on categories
if (isModEnabled('categorie') && $user->rights->categorie->lire) {
$formcategory = new FormCategory($db);
- $moreforfilter .= $formcategory->getFilterBox(Categorie::TYPE_PROJECT, $search_category_array);
+ $moreforfilter .= $formcategory->getFilterBox(Categorie::TYPE_PROJECT, $search_category_array, 'minwidth300imp widthcentpercentminusx');
}
// Filter on customer categories
if (!empty($conf->global->MAIN_SEARCH_CATEGORY_CUSTOMER_ON_PROJECT_LIST) && !empty($conf->categorie->enabled) && $user->rights->categorie->lire) {
diff --git a/htdocs/recruitment/class/recruitmentcandidature.class.php b/htdocs/recruitment/class/recruitmentcandidature.class.php
index e3dfd4bd135..809b8d0cd54 100644
--- a/htdocs/recruitment/class/recruitmentcandidature.class.php
+++ b/htdocs/recruitment/class/recruitmentcandidature.class.php
@@ -1053,7 +1053,7 @@ class RecruitmentCandidature extends CommonObject
$return .= '
'.$langs->trans("phone").' : '.$this->phone.'';
}
if (method_exists($this, 'getLibStatut')) {
- $return .= '
'.$this->getLibStatut(5).'
';
+ $return .= '
'.$this->getLibStatut(3).'
';
}
$return .= '';
$return .= '';
diff --git a/htdocs/recruitment/class/recruitmentjobposition.class.php b/htdocs/recruitment/class/recruitmentjobposition.class.php
index 69ec74deb9d..b0ca58d6b8f 100644
--- a/htdocs/recruitment/class/recruitmentjobposition.class.php
+++ b/htdocs/recruitment/class/recruitmentjobposition.class.php
@@ -1138,7 +1138,7 @@ class RecruitmentJobPosition extends CommonObject
$return .= ' | '.$langs->trans("Remuneration").' : '.$this->remuneration_suggested.'';
}
if (method_exists($this, 'getLibStatut')) {
- $return .= '
'.$this->getLibStatut(5).' | '.$langs->trans("RecruitmentCandidatures", '', '', '', '', 5).' : '.$obj->nbapplications.'
';
+ $return .= '
'.$this->getLibStatut(3).' | '.$langs->trans("RecruitmentCandidatures", '', '', '', '', 5).' : '.$obj->nbapplications.'
';
}
$return .= '';
$return .= '';
diff --git a/htdocs/salaries/class/salary.class.php b/htdocs/salaries/class/salary.class.php
index 90666a6853d..7192a14e9d3 100644
--- a/htdocs/salaries/class/salary.class.php
+++ b/htdocs/salaries/class/salary.class.php
@@ -770,7 +770,7 @@ class Salary extends CommonObject
$return .= '
'.$langs->trans("Amount").' : '.price($this->amount).'';
}
if (method_exists($this, 'LibStatut')) {
- $return .= '
'.$this->LibStatut($this->paye, 5, $this->alreadypaid).'
';
+ $return .= '
'.$this->getLibStatut(3, $this->alreadypaid).'
';
}
$return .= '';
$return .= '';
diff --git a/htdocs/societe/class/societe.class.php b/htdocs/societe/class/societe.class.php
index 01f35b9ea17..6ae3cad817a 100644
--- a/htdocs/societe/class/societe.class.php
+++ b/htdocs/societe/class/societe.class.php
@@ -5225,7 +5225,7 @@ class Societe extends CommonObject
}
if (method_exists($this, 'getLibStatut')) {
- $return .= '
'.$this->getLibStatut(5).'
';
+ $return .= '
'.$this->getLibStatut(3).'
';
}
$return .= '';
$return .= '';
diff --git a/htdocs/supplier_proposal/class/supplier_proposal.class.php b/htdocs/supplier_proposal/class/supplier_proposal.class.php
index 892c3f77687..fbcf04aacd2 100644
--- a/htdocs/supplier_proposal/class/supplier_proposal.class.php
+++ b/htdocs/supplier_proposal/class/supplier_proposal.class.php
@@ -2789,7 +2789,7 @@ class SupplierProposal extends CommonObject
$return .='
'.$langs->trans("AmountHT").' : '.price($this->total_ttc).'';
}
if (method_exists($this, 'getLibStatut')) {
- $return .= '
'.$this->getLibStatut(5).'
';
+ $return .= '
'.$this->getLibStatut(3).'
';
}
$return .= '';
$return .= '';
diff --git a/htdocs/theme/eldy/global.inc.php b/htdocs/theme/eldy/global.inc.php
index 6a31211db45..4ce4a7ed19e 100644
--- a/htdocs/theme/eldy/global.inc.php
+++ b/htdocs/theme/eldy/global.inc.php
@@ -4253,15 +4253,15 @@ div.liste_titre_bydiv {
border-top-style: solid;
border-left: px solid var(--colortopbordertitle1);
- /* border-right: px solid var(--colortopbordertitle1); */
+ border-right: px solid var(--colortopbordertitle1);
border-collapse: collapse;
- display: table;
padding: 2px 0px 2px 0;
box-shadow: none;
- /*width: calc(100% - 1px); 1px more, i don't know why so i remove */
- width: calc(100%);
+ /*width: calc(100% - 1px); 1px less because display is table and with100%, it generated a right border 1px left compared to the div-table-responsive under */
+ width: unset;
+ /* display: table; */
}
tr.liste_titre, tr.liste_titre_sel, form.liste_titre, form.liste_titre_sel, table.dataTable.tr, tagtr.liste_titre
{
diff --git a/htdocs/ticket/class/ticket.class.php b/htdocs/ticket/class/ticket.class.php
index 6f309b7656f..207ba4d6a50 100644
--- a/htdocs/ticket/class/ticket.class.php
+++ b/htdocs/ticket/class/ticket.class.php
@@ -3021,7 +3021,7 @@ class Ticket extends CommonObject
$return .= ''.$langs->getLabelFromKey($this->db, 'TicketTypeShort'.$this->type_code, 'c_ticket_type', 'code', 'label', $this->type_code).'
';
}
if (method_exists($this, 'getLibStatut')) {
- $return .= '
'.$this->getLibStatut(5).'
';
+ $return .= '
'.$this->getLibStatut(3).'
';
}
$return .= '';
$return .= '';
diff --git a/htdocs/user/class/user.class.php b/htdocs/user/class/user.class.php
index 648fd61fa6c..3fc11f9eadd 100644
--- a/htdocs/user/class/user.class.php
+++ b/htdocs/user/class/user.class.php
@@ -3089,7 +3089,7 @@ class User extends CommonObject
$return .= '
'.img_picto('', 'email').' '.$this->email.'';
}
if (method_exists($this, 'getLibStatut')) {
- $return .= '
'.$this->getLibStatut(5).'
';
+ $return .= '
'.$this->getLibStatut(3).'
';
}
$return .= '';
$return .= '';