Remove Only shipping and dispatch status
Remove Only shipping and dispatch status, better to create new future option 'Routing' for this.
This commit is contained in:
parent
2d4807190e
commit
a7a20f45a1
@ -133,9 +133,7 @@ InventoryCodeShort=Inv./Mov. code
|
|||||||
NoPendingReceptionOnSupplierOrder=No pending reception due to open supplier order
|
NoPendingReceptionOnSupplierOrder=No pending reception due to open supplier order
|
||||||
ThisSerialAlreadyExistWithDifferentDate=This lot/serial number (<strong>%s</strong>) already exists but with different eatby or sellby date (found <strong>%s</strong> but you enter <strong>%s</strong>).
|
ThisSerialAlreadyExistWithDifferentDate=This lot/serial number (<strong>%s</strong>) already exists but with different eatby or sellby date (found <strong>%s</strong> but you enter <strong>%s</strong>).
|
||||||
OpenAll=Open for all actions
|
OpenAll=Open for all actions
|
||||||
OpenInternal=Open for internal actions
|
OpenInternal=Open only for internal actions
|
||||||
OpenShipping=Open for shippings
|
|
||||||
OpenDispatch=Open for dispatch
|
|
||||||
UseDispatchStatus=Use a dispatch status (approve/refuse) for product lines on supplier order reception
|
UseDispatchStatus=Use a dispatch status (approve/refuse) for product lines on supplier order reception
|
||||||
OptionMULTIPRICESIsOn=Option "several prices per segment" is on. It means a product has several selling price so value for sell can't be calculated
|
OptionMULTIPRICESIsOn=Option "several prices per segment" is on. It means a product has several selling price so value for sell can't be calculated
|
||||||
ProductStockWarehouseCreated=Stock limit for alert and desired optimal stock correctly created
|
ProductStockWarehouseCreated=Stock limit for alert and desired optimal stock correctly created
|
||||||
|
|||||||
@ -52,17 +52,6 @@ class Entrepot extends CommonObject
|
|||||||
*/
|
*/
|
||||||
const STATUS_OPEN_INTERNAL = 2;
|
const STATUS_OPEN_INTERNAL = 2;
|
||||||
|
|
||||||
/**
|
|
||||||
* Warehouse open and operations for customer shipping and internal stock transfers/corrections allowed (not for supplier dispatch).
|
|
||||||
*/
|
|
||||||
const STATUS_OPEN_SHIPPING = 3;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Warehouse open and operations for supplier dispatch internal stock transfers/corrections allowed (not for customer shipping).
|
|
||||||
*/
|
|
||||||
const STATUS_OPEN_DISPATCH = 4;
|
|
||||||
|
|
||||||
|
|
||||||
var $libelle;
|
var $libelle;
|
||||||
var $description;
|
var $description;
|
||||||
var $statut;
|
var $statut;
|
||||||
@ -91,8 +80,6 @@ class Entrepot extends CommonObject
|
|||||||
{
|
{
|
||||||
$this->statuts[self::STATUS_OPEN_ALL] = 'OpenAll';
|
$this->statuts[self::STATUS_OPEN_ALL] = 'OpenAll';
|
||||||
$this->statuts[self::STATUS_OPEN_INTERNAL] = 'OpenInternal';
|
$this->statuts[self::STATUS_OPEN_INTERNAL] = 'OpenInternal';
|
||||||
$this->statuts[self::STATUS_OPEN_SHIPPING] = 'OpenShipping';
|
|
||||||
$this->statuts[self::STATUS_OPEN_DISPATCH] = 'OpenDispatch';
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user