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

i would like to create a module which call a wizard from js. Based on existing expiry date field on sale.order, enable edit mode only if the expiry date exceeds current date . if current date exceeds, then open a wizard to enter a new expiry date.what i tried is given below,it gives an error AttributeError: 'expiration.wizard' object has no attribute 'expiration_date_wizard'

formView.include({

    on_button_edit: function() {   

var today = new Date()   

var test = new Model('sale.order').query(["validity_date"])   

var wiz = new Model('expiration.wizard')   

return wiz.call('expiration_date_wizard') 

  return this.to_edit_mode();
    },   

to_edit_mode: function() {       

this._super();
        }    });

Awatar
Odrzuć

you have to define the function expiration_date_wizard in the same model

Powiązane posty Odpowiedzi Widoki Czynność
1
wrz 20
4792
3
kwi 18
31308
0
lip 25
232
1
lip 25
4994
0
lip 25
535