In stock_scheduler_compute_views.
<record id="view_procurement_compute_w
<field name="name">Run Schedulers Manually</field>
<field name="model">stock.scheduler.c
<field name="arch" type="xml">
<form string="Parameters">
<p>
When you run the schedulers, Odoo tries to reserve the
available stock to fulfill the existing pickings
and verify if some reordering rules should be triggered.
</p>
<footer>
<button name="procure_calculation" string="Run
Schedulers" type="object" class="btn-primary"/>
<button string="Cancel" class="btn-default" special="cancel" />
</footer>
</form>
</field>
</record>
If I want to replace this view, I wrote:
<record id="view_procurement_compute_w
<field name="name">Run Schedulers Manually</field>
<field name="model">stock.scheduler.c
<field name="inherit_id" ref="xxx"/>
</record>
I read the document, it says ref is the current view's parent view,
In my case, what should I write in <field name="inherit_id" ref="xxx"/>?
Thanks a lot!
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Kế toán
- Tồn kho
- PoS
- Project
- MRP
Câu hỏi này đã bị gắn cờ
if i was you i will never do that >>
for odoo best practic is to not override any odoo records for any reasons supposed that you uninstall your module odoo maybee will by crushed or put you in a thoubleshooting issues so try any other work around to get what you need in a saftey way ..
Hello
you need to write like this
<record id="stock.view_procurement_compute_w
<field name="model">stock.scheduler.c
<field name="arch" type="xml">
# here you code
</field>
</record>
Bạn có hứng thú với cuộc thảo luận không? Đừng chỉ đọc, hãy tham gia nhé!
Tạo tài khoản ngay hôm nay để tận hưởng các tính năng độc đáo và tham gia cộng đồng tuyệt vời của chúng tôi!
Đăng kýBài viết liên quan | Trả lời | Lượt xem | Hoạt động | |
---|---|---|---|---|
|
1
thg 3 15
|
4956 | ||
|
4
thg 9 24
|
24427 | ||
fetch parent_id
Đã xử lý
|
|
1
thg 11 22
|
2881 | |
|
0
thg 4 19
|
3815 | ||
|
0
thg 6 17
|
6274 |
Reference: http://learnopenerp.blogspot.com/2018/01/inheritance-in-models-and-views.html