Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Contabilità
- Magazzino
- PoS
- Project
- MRP
La domanda è stata contrassegnata
Just update the record using write method.
Example,
def method_name(self, cr, uid, ids, context=None):
self.write(cr, uid, ids, {'state': 'state_name'}, context=context)
return True
thanks
thank you very much it did work
Hi,
In Odoo, you can change the state of a
record (e.g., a model) when a button is clicked by using Python methods
and XML views. Here's a step-by-step guide on how to achieve this:
Create a Button:
First,
create a button in your Odoo model's XML view file. This button will
trigger the action to change the state of the record. For example:
Then define a method that will change the state of record using write method
class YourModel(models.Model):
_name = 'your.model'
state = fields.Selection([
('draft', 'Draft'),
('approved', 'Approved'),
('rejected', 'Rejected'),
], default='draft', string='State')
def action_change_state(self):
# Update the state of the current record or a set of records
self.write({'state': 'approved'}) # Change the state to 'approved'
Hope it helps
Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!
Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!
RegistratiPost correlati | Risposte | Visualizzazioni | Attività | |
---|---|---|---|---|
|
1
gen 24
|
14230 | ||
|
2
mar 18
|
5057 | ||
|
0
gen 18
|
3166 | ||
|
2
feb 24
|
25621 | ||
|
3
feb 25
|
55523 |