4 changed files with 76 additions and 17 deletions
@ -0,0 +1,27 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details. |
||||
|
|
||||
|
|
||||
|
{ |
||||
|
'name': 'POS Product Category Filter', |
||||
|
'version': '1.0', |
||||
|
'category': 'Point of Sale', |
||||
|
'sequence': 6, |
||||
|
'summary': 'Show only specified categories of product in point of sale ', |
||||
|
'author': 'Cybrosys Techno Solutions', |
||||
|
'company': 'Cybrosys Techno Solutions', |
||||
|
'website': 'http://www.cybrosys.com', |
||||
|
'description': """ |
||||
|
|
||||
|
======================= |
||||
|
|
||||
|
Customization of produc availablity in PoS. |
||||
|
|
||||
|
""", |
||||
|
'depends': ['point_of_sale'], |
||||
|
'data': ['views/custom_view.xml', |
||||
|
'views/template.xml'], |
||||
|
'qweb': [], |
||||
|
'installable': True, |
||||
|
'auto_install': False, |
||||
|
} |
@ -0,0 +1,48 @@ |
|||||
|
<section class="oe_container"> |
||||
|
<div class="oe_row oe_spaced"> |
||||
|
<h2 class="oe_slogan">Point of Sale : Setting Product Categories for POS</h2> |
||||
|
|
||||
|
<div> |
||||
|
<p class='oe_mt32'> |
||||
|
By installing this module, we can set available product categories for each POS in our system. |
||||
|
Only those categories set in the POS will be available in that particular POS. |
||||
|
</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
</section> |
||||
|
|
||||
|
<section class="oe_container oe_dark"> |
||||
|
<div class="oe_row"> |
||||
|
<h4 class="oe_slogan">You can set it in POS form as: </h4> |
||||
|
<div> |
||||
|
<p class='oe_mt32'> |
||||
|
Point of sale > Configuration > Point of Sale > Available Product Categories. |
||||
|
</p> |
||||
|
</div> |
||||
|
<div> |
||||
|
<div class="oe_bg_img"> |
||||
|
<img class="oe_picture oe_screenshot" src="pos.png"> |
||||
|
</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
</section> |
||||
|
|
||||
|
<section class="oe_container"> |
||||
|
<div class="oe_row"> |
||||
|
<h4 class="oe_slogan">Setting Product category</h4> |
||||
|
<div> |
||||
|
<p> |
||||
|
1) If a root category is given all the subcategories and products under that category will be available. |
||||
|
</p> |
||||
|
<p> |
||||
|
2) If an intermediate category(ie. one with parent and child categories) is given then parent category and all child categories will be available. |
||||
|
</p> |
||||
|
<p> |
||||
|
3) If a child category(ie. one without any child categories), the category can be reached by traversing its ancestor categories. |
||||
|
</p> |
||||
|
</div> |
||||
|
</div> |
||||
|
</section> |
||||
|
|
||||
|
<section class="oe_container oe_separator"> |
||||
|
</section> |
Loading…
Reference in new issue