Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
4 Odpowiedzi
5080 Widoki

I have inherit this  Settings-> Configuration -> Accounting. I have added one check box. when i mark this check box to true, after click on "apply" button, this check box showing like uncheked check box. But the value storing in database is "True".

.py file.

class account_config_settings_extension(osv.osv):
    _inherit = "account.config.settings"
    _columns = {
    'threelevelinvoiceapproval': fields.boolean('Three level checking for invoices'),
    }
    _defaults = {
        'threelevelinvoiceapproval':False
         }

.xml record:

 

<record id="account_config_settings_extension_form" model="ir.ui.view">
        <field name="name">account.config.settings.form</field>
        <field name="model">account.config.settings</field>
        <field name="type">form</field>
        <field name="inherit_id" ref="account.view_account_config_settings"/>
        <field name="arch" type="xml">
            <field name="default_sale_tax" position="after">  
                <br></br>
                <field name="threelevelinvoiceapproval"/>
                <label for="threelevelinvoiceapproval"/>
            </field>
        </field>
    </record>

 

I have tried without _defaults{ } also... but it's always showing uncheck check box, irrespective of the database value. Please tell me how can i overcome this problem?

Awatar
Odrzuć

Hi samba, I have the same issue. How did you solve it?

Still facing this issue, No one given solution for this. So i have changed my field place to company form.

On Sat, May 30, 2015 at 2:07 AM, Hesham ELMAHDY <hesham.elmahdy@odootec.com> wrote:

Hi samba, I have the same issue. How did you solve it?



Regards,

Hesham ELMAHDY

Sent by Odoo S.A. using Odoo about Forum Post Why check box value not residing correctly in settings -> Configuration -> Accounting?



--
--

Thanks and Regards,

Sambasiva rao,

Skype: samba.guduru2(skype)
Najlepsza odpowiedź

I'm also having a similar problem, any one know how to over come this?

Awatar
Odrzuć

Hi Matt, I have the same issue. How did you solve it?

Najlepsza odpowiedź

Hello guys. Please refer to my answer: How can I save/load my own configuration/settings

Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
2
gru 23
1336
1
cze 24
1439
1
cze 22
5855
0
cze 21
2692
1
cze 20
5617