Skip to Content
Menu
This question has been flagged
4 Replies
17158 Views

I would like to know how to change the properties of a base field to change it from Read-Only to Not Read Only.

The field in question if requested_date, part of the sale,order model. It was created by the sale_order_date module. When you have a quote the requested date can be varied, but once the order is confirmed the value becomes read only and this date cannot be changed. 

I want to be able to edit this requested_date value, even after the order is confirmed

It is created in sales_order_dates.py

'requested_date': fields.datetime('Requested Date', readonly=True, states={'draft': [('readonly', False)],  'sent': [('readonly', False)]}, copy=False,

If I just change this file to read readonly=False, then it works, but I want to do this from my custom module. I can add new fields easily in the my_module.py file:

class sale_order_template(models.Model):

_name = 'sale.order'

_inherit = 'sale.order'

new_field= fields.Char('New Field', required = False, readonly=false)

But how am I able to edit the attributes of an existing field, i.e. required_date?


Thanks in advance.


Nigel


 

Avatar
Discard
Best Answer

Hello Nigel,

You just have to override that field which is in a sale.order object and change the attribute value.

Ex:

'requested_date': fields.datetime('Requested Date', readonly=False, states={'draft': [('readonly', False)],  'sent': [('readonly', False)]}, copy=False)

I also suggest you to remove the _name from your class as you already have inherited the sale.order object.

Hope that helps you.

Thanks,

Avatar
Discard
Author

Thank you for the reply, When I put this code into my models.py file and restart the odoo server it gives the following error: 'ERROR HIPTest werkzeug: Error on request: Traceback (most recent call last):' and 'ImportError: cannot import name controllers'

Best Answer

I am having a similar predicament. Need to create the text displayed on the RFQ page statuses

Avatar
Discard
Best Answer

Hello Nigel,


Try this :-

class sale_order_template(models.Model):

    _name = 'sale.order'

    _inherit = 'sale.order'

    'requested_date': fields.datetime('Requested Date')



From this, the requested field is now simple datetime field so you can easily edit it in any state.


Hope it will works you.

Thanks,

Avatar
Discard
Author

Thanks for the reply, this seems to give a similar error to the answer above: "werkzeug: Error on request: Traceback (most recent call last):" then "TypeError: an integer is required"

Best Answer

Hi All

Any way to change the "requested date" of a confirmed order? 

I did find this code, and changed the underline code below from True to False; 

'requested_date': fields.datetime('Requested Date', readonly=False, states={'draft': [('readonly', False)],  'sent': [('readonly', False)]}, copy=False)
Avatar
Discard
Related Posts Replies Views Activity
4
Jun 24
2944
2
Feb 24
1454
1
Jan 23
3933
5
Feb 16
8778
3
Mar 15
23796