Hi, i want to add new field on product to show it on pos receipt in odoo v14, any help please
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- 客户关系管理
- e-Commerce
- 会计
- 库存
- PoS
- Project
- MRP
此问题已终结
2
回复
7601
查看
Hi,
First add the field by inheriting 'product.product' model.
class Product(models.Model):
_inherit = 'product.product'
new_field = fields.Char()
Then write Javascript function to add this new field to PoS model.
odoo.define('module_name.NewField', function(require){ |
odoo.define('module_name.receipt', function(require){ |
Regards
Thanks...solved :)
First add the field by inheriting 'product.product' model.
this code is in which file?
Then write Javascript function to add this new field to PoS model.
this code is into models.js file?
Sorry but i'm a newby.
相关帖文 | 回复 | 查看 | 活动 | |
---|---|---|---|---|
|
0
11月 23
|
1884 | ||
|
1
8月 23
|
2839 | ||
|
0
5月 23
|
2625 | ||
|
0
12月 22
|
2449 | ||
|
0
10月 22
|
3644 |