Removed duplicate translation
This commit is contained in:
parent
6d86727c0b
commit
c2c4366c62
@ -273,7 +273,7 @@ class modStock extends DolibarrModules
|
|||||||
'e.rowid'=>'IdWarehouse','e.ref'=>'LocationSummary','e.description'=>'DescWareHouse','e.lieu'=>'LieuWareHouse','e.address'=>'Address','e.zip'=>'Zip',
|
'e.rowid'=>'IdWarehouse','e.ref'=>'LocationSummary','e.description'=>'DescWareHouse','e.lieu'=>'LieuWareHouse','e.address'=>'Address','e.zip'=>'Zip',
|
||||||
'e.town'=>'Town','p.rowid'=>"ProductId",'p.ref'=>"Ref",'p.fk_product_type'=>"Type",'p.label'=>"Label",'p.description'=>"Description",'p.note'=>"Note",
|
'e.town'=>'Town','p.rowid'=>"ProductId",'p.ref'=>"Ref",'p.fk_product_type'=>"Type",'p.label'=>"Label",'p.description'=>"Description",'p.note'=>"Note",
|
||||||
'p.price'=>"Price",'p.tva_tx'=>'VAT','p.tosell'=>"OnSell",'p.tobuy'=>'OnBuy','p.duration'=>"Duration",'p.datec'=>'DateCreation',
|
'p.price'=>"Price",'p.tva_tx'=>'VAT','p.tosell'=>"OnSell",'p.tobuy'=>'OnBuy','p.duration'=>"Duration",'p.datec'=>'DateCreation',
|
||||||
'p.tms'=>'DateModification','sm.rowid'=>'MovementId','sm.value'=>'Qty','sm.datem'=>'DateMovement','sm.label'=>'LabelMovement',
|
'p.tms'=>'DateModification','sm.rowid'=>'MovementId','sm.value'=>'Qty','sm.datem'=>'DateMovement','sm.label'=>'MovementLabel',
|
||||||
'sm.inventorycode'=>'InventoryCode'
|
'sm.inventorycode'=>'InventoryCode'
|
||||||
);
|
);
|
||||||
$this->export_TypeFields_array[$r]=array(
|
$this->export_TypeFields_array[$r]=array(
|
||||||
|
|||||||
@ -44,7 +44,6 @@ TransferStock=Transfer stock
|
|||||||
MassStockTransferShort=Mass stock transfer
|
MassStockTransferShort=Mass stock transfer
|
||||||
StockMovement=Stock movement
|
StockMovement=Stock movement
|
||||||
StockMovements=Stock movements
|
StockMovements=Stock movements
|
||||||
LabelMovement=Movement label
|
|
||||||
NumberOfUnit=Number of units
|
NumberOfUnit=Number of units
|
||||||
UnitPurchaseValue=Unit purchase price
|
UnitPurchaseValue=Unit purchase price
|
||||||
StockTooLow=Stock too low
|
StockTooLow=Stock too low
|
||||||
@ -134,6 +133,7 @@ StockMustBeEnoughForInvoice=Stock level must be enough to add product/service to
|
|||||||
StockMustBeEnoughForOrder=Stock level must be enough to add product/service to order (check is done on current real stock when adding a line into order whatever the rule for automatic stock change)
|
StockMustBeEnoughForOrder=Stock level must be enough to add product/service to order (check is done on current real stock when adding a line into order whatever the rule for automatic stock change)
|
||||||
StockMustBeEnoughForShipment= Stock level must be enough to add product/service to shipment (check is done on current real stock when adding a line into shipment whatever the rule for automatic stock change)
|
StockMustBeEnoughForShipment= Stock level must be enough to add product/service to shipment (check is done on current real stock when adding a line into shipment whatever the rule for automatic stock change)
|
||||||
MovementLabel=Label of movement
|
MovementLabel=Label of movement
|
||||||
|
TypeMovement=Type of movement
|
||||||
DateMovement=Date of movement
|
DateMovement=Date of movement
|
||||||
InventoryCode=Movement or inventory code
|
InventoryCode=Movement or inventory code
|
||||||
IsInPackage=Contained into package
|
IsInPackage=Contained into package
|
||||||
|
|||||||
@ -161,7 +161,7 @@ if ($action == 'createmovements')
|
|||||||
if (! GETPOST("label"))
|
if (! GETPOST("label"))
|
||||||
{
|
{
|
||||||
$error++;
|
$error++;
|
||||||
setEventMessages($langs->trans("ErrorFieldRequired"),$langs->transnoentitiesnoconv("LabelMovement"), null, 'errors');
|
setEventMessages($langs->trans("ErrorFieldRequired"),$langs->transnoentitiesnoconv("MovementLabel"), null, 'errors');
|
||||||
}
|
}
|
||||||
|
|
||||||
$db->begin();
|
$db->begin();
|
||||||
@ -451,7 +451,7 @@ print '<table class="noborder" width="100%">';
|
|||||||
print '</td>';
|
print '</td>';
|
||||||
print '</tr>';
|
print '</tr>';
|
||||||
print '<tr>';
|
print '<tr>';
|
||||||
print '<td>'.$langs->trans("LabelMovement").'</td>';
|
print '<td>'.$langs->trans("MovementLabel").'</td>';
|
||||||
print '<td>';
|
print '<td>';
|
||||||
print '<input type="text" name="label" class="quatrevingtpercent" value="'.dol_escape_htmltag($labelmovement).'">';
|
print '<input type="text" name="label" class="quatrevingtpercent" value="'.dol_escape_htmltag($labelmovement).'">';
|
||||||
print '</td>';
|
print '</td>';
|
||||||
|
|||||||
@ -103,7 +103,7 @@ $arrayfields=array(
|
|||||||
'e.ref'=>array('label'=>$langs->trans("Warehouse"), 'checked'=>1, 'enabled'=>(! $id > 0)), // If we are on specific warehouse, we hide it
|
'e.ref'=>array('label'=>$langs->trans("Warehouse"), 'checked'=>1, 'enabled'=>(! $id > 0)), // If we are on specific warehouse, we hide it
|
||||||
'm.fk_user_author'=>array('label'=>$langs->trans("Author"), 'checked'=>0),
|
'm.fk_user_author'=>array('label'=>$langs->trans("Author"), 'checked'=>0),
|
||||||
'm.inventorycode'=>array('label'=>$langs->trans("InventoryCodeShort"), 'checked'=>1),
|
'm.inventorycode'=>array('label'=>$langs->trans("InventoryCodeShort"), 'checked'=>1),
|
||||||
'm.label'=>array('label'=>$langs->trans("LabelMovement"), 'checked'=>1),
|
'm.label'=>array('label'=>$langs->trans("MovementLabel"), 'checked'=>1),
|
||||||
'm.type_mouvement'=>array('label'=>$langs->trans("TypeMovement"), 'checked'=>1),
|
'm.type_mouvement'=>array('label'=>$langs->trans("TypeMovement"), 'checked'=>1),
|
||||||
'origin'=>array('label'=>$langs->trans("Origin"), 'checked'=>1),
|
'origin'=>array('label'=>$langs->trans("Origin"), 'checked'=>1),
|
||||||
'm.value'=>array('label'=>$langs->trans("Qty"), 'checked'=>1),
|
'm.value'=>array('label'=>$langs->trans("Qty"), 'checked'=>1),
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user