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/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", '');