';
print ''.$langs->trans("Filter").' ';
// Company
- print ''.$langs->trans("ThirdParty").' ';
+ print ' '.$langs->trans("ThirdParty").' ';
if ($mode == 'customer') $filter='s.client in (1,2,3)';
if ($mode == 'supplier') $filter='s.fournisseur = 1';
print $form->select_company($socid,'socid',$filter,1,0,0,array(),0,'','style="width: 95%"');
print ' ';
// User
- print ''.$langs->trans("CreatedBy").' ';
+ print ' '.$langs->trans("CreatedBy").' ';
print $form->select_dolusers($userid, 'userid', 1, '', 0, '', '', 0, 0, 0, '', 0, '', 'maxwidth300');
print ' ';
// Year
- print ''.$langs->trans("Year").' ';
+ print ' '.$langs->trans("Year").' ';
if (! in_array($year,$arrayyears)) $arrayyears[$year]=$year;
if (! in_array($nowyear,$arrayyears)) $arrayyears[$nowyear]=$nowyear;
arsort($arrayyears);
diff --git a/htdocs/expedition/card.php b/htdocs/expedition/card.php
index ed2eb5239b3..e99f04415b3 100644
--- a/htdocs/expedition/card.php
+++ b/htdocs/expedition/card.php
@@ -1122,11 +1122,11 @@ if ($action == 'create')
{
if (empty($conf->productbatch->enabled))
{
- print ' '.$langs->trans("Warehouse").' ('.$langs->trans("Stock").') ';
+ print ''.$langs->trans("Warehouse").' ('.$langs->trans("Stock").') ';
}
else
{
- print ''.$langs->trans("Warehouse").' / '.$langs->trans("Batch").' ('.$langs->trans("Stock").') ';
+ print ''.$langs->trans("Warehouse").' / '.$langs->trans("Batch").' ('.$langs->trans("Stock").') ';
}
}
print " \n";
@@ -1248,7 +1248,7 @@ if ($action == 'create')
// Stock
if (! empty($conf->stock->enabled))
{
- print '';
+ print ' ';
if ($line->product_type == Product::TYPE_PRODUCT || ! empty($conf->global->STOCK_SUPPORTS_SERVICES)) // Type of product need stock change ?
{
// Show warehouse combo list
@@ -1334,7 +1334,7 @@ if ($action == 'create')
print ' ';
print '';
- print '';
+ print ' ';
print $staticwarehouse->getNomUrl(0).' / ';
@@ -1364,7 +1364,7 @@ if ($action == 'create')
print ' ';
print ' ';
- print '';
+ print ' ';
print img_warning().' '.$langs->trans("NoProductToShipFoundIntoStock", $staticwarehouse->libelle);
print ' ';
}
@@ -1412,7 +1412,7 @@ if ($action == 'create')
// Stock
if (! empty($conf->stock->enabled))
{
- print '';
+ print ' ';
if ($line->product_type == Product::TYPE_PRODUCT || ! empty($conf->global->STOCK_SUPPORTS_SERVICES))
{
print $tmpwarehouseObject->getNomUrl(0).' ';
@@ -1495,7 +1495,7 @@ if ($action == 'create')
print ' ';
print ' ';
- print '';
+ print ' ';
print $tmpwarehouseObject->getNomUrl(0).' / ';
@@ -1539,7 +1539,7 @@ if ($action == 'create')
}
print ' ';
- print '';
+ print ' ';
if ($line->product_type == Product::TYPE_PRODUCT || ! empty($conf->global->STOCK_SUPPORTS_SERVICES))
{
$warehouse_selected_id = GETPOST('entrepot_id','int');
@@ -2052,12 +2052,12 @@ else if ($id || $ref)
}
if (! empty($conf->stock->enabled))
{
- print ' '.$langs->trans("WarehouseSource").' ';
+ print ''.$langs->trans("WarehouseSource").' ';
}
if (! empty($conf->productbatch->enabled))
{
- print ''.$langs->trans("Batch").' ';
+ print ''.$langs->trans("Batch").' ';
}
}
print ''.$langs->trans("CalculatedWeight").' ';
@@ -2313,7 +2313,7 @@ else if ($id || $ref)
// Warehouse source
if (! empty($conf->stock->enabled))
{
- print '';
+ print ' ';
if ($lines[$i]->entrepot_id > 0)
{
$entrepot = new Entrepot($db);
diff --git a/htdocs/expedition/stats/index.php b/htdocs/expedition/stats/index.php
index e0b750e9797..95f93904c5f 100644
--- a/htdocs/expedition/stats/index.php
+++ b/htdocs/expedition/stats/index.php
@@ -237,17 +237,17 @@ print '';
print '
';
print ''.$langs->trans("Filter").' ';
// Company
- print ''.$langs->trans("ThirdParty").' ';
+ print ' '.$langs->trans("ThirdParty").' ';
if ($mode == 'customer') $filter='s.client in (1,2,3)';
if ($mode == 'supplier') $filter='s.fournisseur = 1';
print $form->select_company($socid,'socid',$filter,1,0,0,array(),0,'','style="width: 95%"');
print ' ';
// User
- print ''.$langs->trans("CreatedBy").' ';
+ print ' '.$langs->trans("CreatedBy").' ';
print $form->select_dolusers($userid, 'userid', 1, '', 0, '', '', 0, 0, 0, '', 0, '', 'maxwidth300');
print ' ';
// Year
- print ''.$langs->trans("Year").' ';
+ print ' '.$langs->trans("Year").' ';
if (! in_array($year,$arrayyears)) $arrayyears[$year]=$year;
if (! in_array($nowyear,$arrayyears)) $arrayyears[$nowyear]=$nowyear;
arsort($arrayyears);