// It is not possible to delete a product if there are currently physical stock/supply order(s) for this product, anymore

This commit is contained in:
bMancone
2011-11-14 13:36:33 +00:00
parent dfd46db560
commit 74ef17ca79
4 changed files with 45 additions and 20 deletions
+2
View File
@@ -70,6 +70,7 @@ interface StockManagerInterface
/**
* For a given product, returns its physical quantity
* If the given product has combinations and $id_product_attribute is null, returns the sum for all combinations
*
* @param int $id_product
* @param int $id_product_attribute
@@ -81,6 +82,7 @@ interface StockManagerInterface
/**
* For a given product, returns its real quantity
* If the given product has combinations and $id_product_attribute is null, returns the sum for all combinations
* Real quantity : (physical_qty + supplier_orders_qty - client_orders_qty)
* If $usable is defined, real quantity: usable_qty + supplier_orders_qty - client_orders_qty
*