diff --git a/htdocs/expedition/card.php b/htdocs/expedition/card.php index aac19c7da76..9b565954c1b 100644 --- a/htdocs/expedition/card.php +++ b/htdocs/expedition/card.php @@ -944,7 +944,7 @@ if ($action == 'create') { $langs->load("projects"); print ''; print ''.$langs->trans("Project").''; - print img_picto('', 'project'); + print img_picto('', 'project', 'class="pictofixedwidth"'); $numprojet = $formproject->select_projects($soc->id, $projectid, 'projectid', 0); print ' id).'">'; print ''; @@ -954,6 +954,7 @@ if ($action == 'create') { // Date delivery planned print ''.$langs->trans("DateDeliveryPlanned").''; print ''; + print img_picto('', 'action', 'class="pictofixedwidth"'); $date_delivery = ($date_delivery ? $date_delivery : $object->delivery_date); // $date_delivery comes from GETPOST print $form->selectDate($date_delivery ? $date_delivery : -1, 'date_delivery', 1, 1, 1); print "\n"; @@ -978,7 +979,9 @@ if ($action == 'create') { // Weight print ''; print $langs->trans("Weight"); - print ' '; + print ''; + print img_picto('', 'fa-balance-scale', 'class="pictofixedwidth"'); + print ' '; $text = $formproduct->selectMeasuringUnits("weight_units", "weight", GETPOST('weight_units', 'int'), 0, 2); $htmltext = $langs->trans("KeepEmptyForAutoCalculation"); print $form->textwithpicto($text, $htmltext); @@ -986,7 +989,9 @@ if ($action == 'create') { // Dim print ''; print $langs->trans("Width").' x '.$langs->trans("Height").' x '.$langs->trans("Depth"); - print ' '; + print ' '; + print img_picto('', 'fa-ruler', 'class="pictofixedwidth"'); + print ''; print ' x '; print ' x '; print ' '; @@ -999,6 +1004,7 @@ if ($action == 'create') { print "".$langs->trans("DeliveryMethod").""; print ''; $expe->fetch_delivery_methods(); + print img_picto('', 'dolly', 'class="pictofixedwidth"'); print $form->selectarray("shipping_method_id", $expe->meths, GETPOST('shipping_method_id', 'int'), 1, 0, 0, "", 1); if ($user->admin) { print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionarySetup"), 1); @@ -1008,6 +1014,7 @@ if ($action == 'create') { // Tracking number print "".$langs->trans("TrackingNumber").""; print ''; + print img_picto('', 'barcode', 'class="pictofixedwidth"'); print ''; print "\n"; @@ -1030,6 +1037,7 @@ if ($action == 'create') { print ''; print ''; print ''; + print img_picto('', 'incoterm', 'class="pictofixedwidth"'); print $form->select_incoterms((!empty($object->fk_incoterms) ? $object->fk_incoterms : ''), (!empty($object->location_incoterms) ? $object->location_incoterms : '')); print ''; } @@ -1040,6 +1048,7 @@ if ($action == 'create') { if (count($list) > 1) { print "".$langs->trans("DefaultModel").""; print ''; + print img_picto('', 'pdf', 'class="pictofixedwidth"'); print $form->selectarray('model', $list, $conf->global->EXPEDITION_ADDON_PDF); print "\n"; }