Fix supplier order libStatus to use new dolGetStatus
This commit is contained in:
parent
027c8224b0
commit
35c6008e1a
@ -625,18 +625,17 @@ class CommandeFournisseur extends CommonOrder
|
|||||||
/**
|
/**
|
||||||
* Return label of a status
|
* Return label of a status
|
||||||
*
|
*
|
||||||
* @param int $statut Id statut
|
* @param int $status Id statut
|
||||||
* @param int $mode 0=Long label, 1=Short label, 2=Picto + Short label, 3=Picto, 4=Picto + Long label, 5=Short label + Picto
|
* @param int $mode 0=Long label, 1=Short label, 2=Picto + Short label, 3=Picto, 4=Picto + Long label, 5=Short label + Picto
|
||||||
* @param int $billed 1=Billed
|
* @param int $billed 1=Billed
|
||||||
* @return string Label of status
|
* @return string Label of status
|
||||||
*/
|
*/
|
||||||
public function LibStatut($statut, $mode = 0, $billed = 0)
|
public function LibStatut($status, $mode = 0, $billed = 0)
|
||||||
{
|
{
|
||||||
// phpcs:enable
|
// phpcs:enable
|
||||||
global $conf, $langs;
|
global $conf, $langs;
|
||||||
|
|
||||||
if (empty($this->statuts) || empty($this->statutshort))
|
if (empty($this->statuts) || empty($this->statutshort)){
|
||||||
{
|
|
||||||
$langs->load('orders');
|
$langs->load('orders');
|
||||||
|
|
||||||
$this->statuts[0] = 'StatusSupplierOrderDraft';
|
$this->statuts[0] = 'StatusSupplierOrderDraft';
|
||||||
@ -662,55 +661,33 @@ class CommandeFournisseur extends CommonOrder
|
|||||||
$this->statutshort[9] = 'StatusSupplierOrderRefusedShort';
|
$this->statutshort[9] = 'StatusSupplierOrderRefusedShort';
|
||||||
}
|
}
|
||||||
|
|
||||||
$billedtext='';
|
$statustrans = array(
|
||||||
//if ($statut==5 && $this->billed == 1) $statut = 8;
|
0 => 'status0',
|
||||||
if ($billed == 1) $billedtext=$langs->trans("Billed");
|
1 => 'status1',
|
||||||
|
2 => 'status3',
|
||||||
|
3 => 'status3',
|
||||||
|
4 => 'status3',
|
||||||
|
5 => 'status6',
|
||||||
|
6 => 'status5',
|
||||||
|
7 => 'status5',
|
||||||
|
|
||||||
if ($mode == 0)
|
9 => 'status5',
|
||||||
{
|
);
|
||||||
return $langs->trans($this->statuts[$statut]);
|
|
||||||
|
$statusClass = 'status0';
|
||||||
|
if(!empty($statustrans[$status])){
|
||||||
|
$statusClass = $statustrans[$status];
|
||||||
}
|
}
|
||||||
elseif ($mode == 1)
|
|
||||||
{
|
$billedtext = '';
|
||||||
return $langs->trans($this->statutshort[$statut]);
|
if($mode == 4 && $billed){
|
||||||
}
|
$billedtext = ' - '.$langs->trans("Billed");
|
||||||
elseif ($mode == 2)
|
|
||||||
{
|
|
||||||
return $langs->trans($this->statuts[$statut]);
|
|
||||||
}
|
|
||||||
elseif ($mode == 3)
|
|
||||||
{
|
|
||||||
if ($statut==0) return img_picto($langs->trans($this->statuts[$statut]), 'statut0');
|
|
||||||
elseif ($statut==1) return img_picto($langs->trans($this->statuts[$statut]), 'statut1');
|
|
||||||
elseif ($statut==2) return img_picto($langs->trans($this->statuts[$statut]), 'statut3');
|
|
||||||
elseif ($statut==3) return img_picto($langs->trans($this->statuts[$statut]), 'statut3');
|
|
||||||
elseif ($statut==4) return img_picto($langs->trans($this->statuts[$statut]), 'statut3');
|
|
||||||
elseif ($statut==5) return img_picto($langs->trans($this->statuts[$statut]), 'statut6');
|
|
||||||
elseif ($statut==6 || $statut==7) return img_picto($langs->trans($this->statuts[$statut]), 'statut5');
|
|
||||||
elseif ($statut==9) return img_picto($langs->trans($this->statuts[$statut]), 'statut5');
|
|
||||||
}
|
|
||||||
elseif ($mode == 4)
|
|
||||||
{
|
|
||||||
if ($statut==0) return img_picto($langs->trans($this->statuts[$statut]), 'statut0').' '.$langs->trans($this->statuts[$statut]).($billedtext?' - '.$billedtext:'');
|
|
||||||
elseif ($statut==1) return img_picto($langs->trans($this->statuts[$statut]), 'statut1').' '.$langs->trans($this->statuts[$statut]).($billedtext?' - '.$billedtext:'');
|
|
||||||
elseif ($statut==2) return img_picto($langs->trans($this->statuts[$statut]), 'statut3').' '.$langs->trans($this->statuts[$statut]).($billedtext?' - '.$billedtext:'');
|
|
||||||
elseif ($statut==3) return img_picto($langs->trans($this->statuts[$statut]), 'statut3').' '.$langs->trans($this->statuts[$statut]).($billedtext?' - '.$billedtext:'');
|
|
||||||
elseif ($statut==4) return img_picto($langs->trans($this->statuts[$statut]), 'statut3').' '.$langs->trans($this->statuts[$statut]).($billedtext?' - '.$billedtext:'');
|
|
||||||
elseif ($statut==5) return img_picto($langs->trans($this->statuts[$statut]), 'statut6').' '.$langs->trans($this->statuts[$statut]).($billedtext?' - '.$billedtext:'');
|
|
||||||
elseif ($statut==6 || $statut==7) return img_picto($langs->trans($this->statuts[$statut]), 'statut5').' '.$langs->trans($this->statuts[$statut]).($billedtext?' - '.$billedtext:'');
|
|
||||||
elseif ($statut==9) return img_picto($langs->trans($this->statuts[$statut]), 'statut5').' '.$langs->trans($this->statuts[$statut]).($billedtext?' - '.$billedtext:'');
|
|
||||||
}
|
|
||||||
elseif ($mode == 5)
|
|
||||||
{
|
|
||||||
if ($statut==0) return '<span class="hideonsmartphone">'.$langs->trans($this->statutshort[$statut]).' </span>'.img_picto($langs->trans($this->statuts[$statut]), 'statut0');
|
|
||||||
elseif ($statut==1) return '<span class="hideonsmartphone">'.$langs->trans($this->statutshort[$statut]).' </span>'.img_picto($langs->trans($this->statuts[$statut]), 'statut1');
|
|
||||||
elseif ($statut==2) return '<span class="hideonsmartphone">'.$langs->trans($this->statutshort[$statut]).' </span>'.img_picto($langs->trans($this->statuts[$statut]), 'statut3');
|
|
||||||
elseif ($statut==3) return '<span class="hideonsmartphone">'.$langs->trans($this->statutshort[$statut]).' </span>'.img_picto($langs->trans($this->statuts[$statut]), 'statut3');
|
|
||||||
elseif ($statut==4) return '<span class="hideonsmartphone">'.$langs->trans($this->statutshort[$statut]).' </span>'.img_picto($langs->trans($this->statuts[$statut]), 'statut3');
|
|
||||||
elseif ($statut==5) return '<span class="hideonsmartphone">'.$langs->trans($this->statutshort[$statut]).' </span>'.img_picto($langs->trans($this->statuts[$statut]), 'statut6');
|
|
||||||
elseif ($statut==6 || $statut==7) return '<span class="hideonsmartphone">'.$langs->trans($this->statutshort[$statut]).' </span>'.img_picto($langs->trans($this->statuts[$statut]), 'statut5');
|
|
||||||
elseif ($statut==9) return '<span class="hideonsmartphone">'.$langs->trans($this->statutshort[$statut]).' </span>'.img_picto($langs->trans($this->statuts[$statut]), 'statut5');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$statusLong = $langs->trans($this->statuts_long[$status]).$billedtext;
|
||||||
|
$statusShort = $langs->trans($this->statutshort[$status]);
|
||||||
|
|
||||||
|
return dolGetStatus($statusLong, $statusShort, '', $statusClass, $mode);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user