diff --git a/htdocs/langs/en_US/cashdesk.lang b/htdocs/langs/en_US/cashdesk.lang
index b53eb235c29..07b91316771 100644
--- a/htdocs/langs/en_US/cashdesk.lang
+++ b/htdocs/langs/en_US/cashdesk.lang
@@ -136,4 +136,10 @@ PrintWithoutDetails=Print without details
YearNotDefined=Year is not defined
TakeposBarcodeRuleToInsertProduct=Barcode rule to insert product
TakeposBarcodeRuleToInsertProductDesc=Rule to extract the product reference + a quantity from a scanned barcode.
If empty (default value), application will use the full barcode scanned to find the product.
If defined, syntax must be:
ref:NB+qu:NB+qd:NB+other:NB
where NB is the number of characters to use to extract data from the scanned barcode with:
- ref : product reference
- qu : quantity to set when inserting item (units)
- qd : quantity to set when inserting item (decimals)
- other : others characters
-AlreadyPrinted=Already printed
\ No newline at end of file
+AlreadyPrinted=Already printed
+HideCategories=Hide categories
+HideStockOnLine=Hide stock on line
+ShowOnlyProductInStock=Show the products in stock
+ShowCategoryDescription=Show category description
+ShowProductReference=Show reference of products
+UsePriceHT=Use price excl. taxes and not price incl. taxes
\ No newline at end of file
diff --git a/htdocs/langs/fr_FR/cashdesk.lang b/htdocs/langs/fr_FR/cashdesk.lang
index 24d35d56a06..5ce6fb98a5d 100644
--- a/htdocs/langs/fr_FR/cashdesk.lang
+++ b/htdocs/langs/fr_FR/cashdesk.lang
@@ -136,3 +136,9 @@ PrintWithoutDetails=Générer sans les détails
YearNotDefined=L'année n'est pas définie
TakeposBarcodeRuleToInsertProduct=Règle de lecture du code barre des produits
TakeposBarcodeRuleToInsertProductDesc=Règle pour extraire la référence produit + une quantité d'un code barre scanné.
Si vide (valeur par défaut), l'application utilisera le code-barres complet scanné pour trouver le produit.
Si elle est définie, la syntaxe doit être:
ref: NB + Qu: NB + QD: NB + autres: NB
où NB est le nombre de caractères à utiliser pour extraire les données du code à barres scannés avec: - ref : référence produit
- qu : quantité de jeu lors de l'insertion article (unités)
- qd: quantité de jeu lors de l'insertion article (décimaux)
- autre : autres caractères
+HideCategories=Masquer les catégories
+HideStockOnLine=Masquer le stock en ligne
+ShowOnlyProductInStock=Affficher les produits en stock
+ShowCategoryDescription=Afficher la description des catégories
+ShowProductReference=Afficher la référence des produits
+UsePriceHT= Utiliser le prix HT et non en TTC
\ No newline at end of file
diff --git a/htdocs/product/stock/product.php b/htdocs/product/stock/product.php
index 6af0e105b47..a0f3e9fa599 100644
--- a/htdocs/product/stock/product.php
+++ b/htdocs/product/stock/product.php
@@ -734,6 +734,15 @@ if ($id > 0 || $ref) {
$text_stock_options .= (!empty($conf->global->STOCK_CALCULATE_ON_SUPPLIER_VALIDATE_ORDER) ? '- '.$langs->trans("ReStockOnValidateOrder").'
' : '');
$text_stock_options .= (!empty($conf->global->STOCK_CALCULATE_ON_SUPPLIER_DISPATCH_ORDER) ? '- '.$langs->trans("ReStockOnDispatchOrder").'
' : '');
$text_stock_options .= (!empty($conf->global->STOCK_CALCULATE_ON_RECEPTION) || !empty($conf->global->STOCK_CALCULATE_ON_RECEPTION_CLOSE) ? '- '.$langs->trans("StockOnReception").'
' : '');
+ $parameters = array();
+ $reshook = $hookmanager->executeHooks('physicalStockTextStockOptions', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
+ if ($reshook > 0) {
+ $text_stock_options = $hookmanager->resPrint;
+ } elseif ($reshook == 0) {
+ $text_stock_options .= $hookmanager->resPrint;
+ } else {
+ setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
+ }
print '';
print $form->textwithpicto($langs->trans("PhysicalStock"), $text_stock_options, 1);
@@ -820,6 +829,15 @@ if ($id > 0 || $ref) {
$helpondiff .= $langs->trans("ProductQtyToConsumeByMO").': '.$object->stats_mrptoconsume['qty'].' ';
$helpondiff .= $langs->trans("ProductQtyToProduceByMO").': '.$object->stats_mrptoproduce['qty'];
}
+ $parameters = array('found' => &$found, 'id' => $object->id, 'includedraftpoforvirtual' => null);
+ $reshook = $hookmanager->executeHooks('virtualStockHelpOnDiff', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
+ if ($reshook > 0) {
+ $helpondiff = $hookmanager->resPrint;
+ } elseif ($reshook == 0) {
+ $helpondiff .= $hookmanager->resPrint;
+ } else {
+ setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
+ }
// Calculating a theorical value
diff --git a/htdocs/takepos/admin/appearance.php b/htdocs/takepos/admin/appearance.php
index 135a3b2a9e7..9198b03bb63 100644
--- a/htdocs/takepos/admin/appearance.php
+++ b/htdocs/takepos/admin/appearance.php
@@ -117,6 +117,49 @@ $array = array(1=>"1", 2=>"2", 3=>"3", 4=>"4", 5=>"5", 6=>"6");
print $form->selectarray('TAKEPOS_LINES_TO_SHOW', $array, (empty($conf->global->TAKEPOS_LINES_TO_SHOW) ? '2' : $conf->global->TAKEPOS_LINES_TO_SHOW), 0);
print " |
\n";
+// D'ont display category
+print '| ';
+print $langs->trans('HideCategories');
+print ' | ';
+print ajax_constantonoff("TAKEPOS_HIDE_CATEGORIES", array(), $conf->entity, 0, 0, 1, 0);
+print " |
\n";
+
+// Hide stock on line
+print '| ';
+print $langs->trans('HideStockOnLine');
+print ' | ';
+print ajax_constantonoff("TAKEPOS_HIDE_STOCK_ON_LINE", array(), $conf->entity, 0, 0, 1, 0);
+print " |
\n";
+
+// Only the products in stock
+print '| ';
+print $langs->trans('ShowOnlyProductInStock');
+print ' | ';
+print ajax_constantonoff("TAKEPOS_PRODUCT_IN_STOCK", array(), $conf->entity, 0, 0, 1, 0);
+print " |
\n";
+
+// View description of the categories
+print '| ';
+print $langs->trans('ShowCategoryDescription');
+print ' | ';
+print ajax_constantonoff("TAKEPOS_SHOW_CATEGORY_DESCRIPTION", array(), $conf->entity, 0, 0, 1, 0);
+print " |
\n";
+
+// View reference of products
+print '| ';
+print $langs->trans('ShowProductReference');
+print ' | ';
+print ajax_constantonoff("TAKEPOS_SHOW_PRODUCT_REFERENCE", array(), $conf->entity, 0, 0, 1, 0);
+print " |
\n";
+
+// Use price excl. taxes (HT) and not price incl. taxes (TTC)
+print '| ';
+print $langs->trans('UsePriceHT');
+print ' | ';
+print ajax_constantonoff("TAKEPOS_CHANGE_PRICE_HT", array(), $conf->entity, 0, 0, 1, 0);
+print " |
\n";
+
+
print '';
print $form->buttonsSaveCancel("Save", '');