Hi,
How to make a view editable for only particular number of days , is it possible to do this using field view get function.....
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hi,
How to make a view editable for only particular number of days , is it possible to do this using field view get function.....
How I achieve something like by using following piece of code:
@api.model
def fields_view_get(self, view_id=None, view_type='form', toolbar=False, submenu=False):
if view_type == 'form':
res['arch'] = self.fields_view_get_address(res['arch'])
record = self.env['crm.lead'].browse(self._context.get('params').get('id'))
# restrict modification and deletion of child ids
if record.parent_id:
res['arch'] = res['arch'][:6] + 'edit="false" delete="false" ' + res['arch'][6:]
elif record.stage_id.id == 4: # restrict edition of Purchased Lead
res['arch'] = res['arch'][:6] + 'edit="false" ' + res['arch'][6:]
return res
Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!
RegistratiPost correlati | Risposte | Visualizzazioni | Attività | |
---|---|---|---|---|
|
2
nov 16
|
6397 | ||
|
1
set 15
|
5049 | ||
|
3
ago 15
|
9175 | ||
|
1
lug 15
|
8615 | ||
|
1
mar 15
|
5779 |