I want to add three new stages- New,Opened,Closed.
Add a Validate button.
Add Print/Send Email Button.
How to add these three requirement?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
I want to add three new stages- New,Opened,Closed.
Add a Validate button.
Add Print/Send Email Button.
How to add these three requirement?
I would suggest to take a look into the source code of an existing object like sale.order
.
state
.sale.order
I suggest to take a look at the following files:
openerp/addons/sale/sale.py
(class sale_order
)openerp/addons/sale/sale_view.xml
I tried to refer it, but no idea where to start. I new in openerp python code.
Your requirement is not that easy to explain if you are totally new. I update my answer with source code you should investigate.
Ok. For send mail. Did i want to inherit mail.thread?
you should maybe look at the technical doc before to go deeper in the code
https://doc.openerp.com/trunk/server/
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ý
Where do you want to implement this? On an existing object or a new one?
Want to add in my custom module.