Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
4 Odpovědi
16578 Zobrazení

In Open ERP 7 there is feature in status bar that have attribute clickable.I've set clickable="True" but when I click the status bar, there is just return null value. And the state doesnt update to state that I clicked. Did I miss something?

Avatar
Zrušit
Nejlepší odpověď

This issue has been patched, please look at :- bugs.launchpad.net/openerp-web/+bug/1202080

For statusbar color please look at :- bugs.launchpad.net/openerp-web/+bug/1159723

Avatar
Zrušit
Nejlepší odpověď

Hi,

As standard the status bar is not a selected object that I can see (correct me if if I am wrong) simply setting the attributes to click-able will really do nothing.

You or somebody would need to write a module to do what you want. Order status changes depending on the location in the order workflow. i.e from draft to confirmed to done. It is possible to create a module that would change the order or object state say if you pressed a button. Hope this helps

Rhys

Avatar
Zrušit
Autor

well,I've application that status bar is clickable, and when I click the state, it automaticly change state that I click. But I can't find the source because it's someone customize modul. and yes, change the attributes to clickable do something, like status bar is clickable but in my case there is just return null value,and when I set clickable false the statusbar not click able.

so the question is how I can do like that?

Nejlepší odpověď

Hi,

I have this same problem right now. When I put in view

<field name="state"  widget="statusbar" clickable="True" />

and in _columns

'state' : fields.selection([
                               ('active','Active'),
                                ('inactive','Inactive'), 
                                ('expiring', 'Expiring'),
                                ],
                                'State', 
                                track_visibility='onchange'),

when I click a status on the statusbar server receive vals['state'] == None.

But when I use in _columns

'state_id': fields.many2one('jp.offer.state', 'State', track_visibility='onchange', ondelete="set null"),

and in view

<field name="state_id" widget="statusbar" clickable="True"/>

It works properly.

Does it mean statusbar widget works only with many2one fields?

Regards, Marcin

Avatar
Zrušit

Yes impressive, i confirme this case, same thing here.

Hi,I followed you suggestions but the status bar color not change.My code is here,<field name="state" widget="statusbar" statusbar_visible="draft,confirm,approved,done,cancel" statusbar_colors='{"draft":"blue","confirm":"blue","approved":"blue"}'/>

<field name="state" widget="statusbar" statusbar_visible="draft,confirm,approved,done,cancel" statusbar_colors='{"draft":"blue","confirm":"blue","approved":"blue"}'/>. But color not change..pls help how to solve this

Nejlepší odpověď

Hi

I think it is a bug, and as such I posted it here >>bugs.launchpad.net/openerp-web/+bug/1175960<< (copy without ">>" "<<", I can't post links yet), but I haven't received any reply so far. Maybe if you click on "Does this bug affect you?" it will get more visibility and recieve an answer from the dev team.

Thanks!

Avatar
Zrušit

I did affect my self in the Bug, thanks for sharing..

Related Posts Odpovědi Zobrazení Aktivita
4
led 22
7134
1
bře 15
5076
1
čvn 25
3010
1
dub 22
6299
1
kvě 21
7163