[CORE] Fix : renommage d'une fonction (#deliverytime).

This commit is contained in:
phf 2015-02-06 16:39:54 +01:00
parent 0e74dd4b95
commit 1d9a3e0ce2
2 changed files with 3 additions and 3 deletions

View File

@ -2111,7 +2111,7 @@ class CommandeFournisseur extends CommonOrder
* *
* @return string * @return string
*/ */
function getMaxDelaiLivraisonJours($langs) function getMaxDeliveryTimeDay($langs)
{ {
if (empty($this->lines)) return $langs->trans('Undefined'); if (empty($this->lines)) return $langs->trans('Undefined');

View File

@ -1605,7 +1605,7 @@ elseif (! empty($object->id))
// Delai livraison jours // Delai livraison jours
print '<tr>'; print '<tr>';
print '<td>'.$langs->trans('NbDaysToDelivery').'&nbsp;'.img_picto($langs->trans('DescNbDaysToDelivery'), 'info', 'style="cursor:help"').'</td>'; print '<td>'.$langs->trans('NbDaysToDelivery').'&nbsp;'.img_picto($langs->trans('DescNbDaysToDelivery'), 'info', 'style="cursor:help"').'</td>';
print '<td>'.$object->getMaxDelaiLivraisonJours($langs).'</td>'; print '<td>'.$object->getMaxDeliveryTimeDay($langs).'</td>';
print '</tr>'; print '</tr>';
// Project // Project