Zum Inhalt springen
Menü
Sie müssen registriert sein, um mit der Community zu interagieren.
Diese Frage wurde gekennzeichnet
1207 Ansichten

I have created a method in a model,

def update_book_price(self, book, updated_price):
if not book:
raise UserError('The book is not found')

book.retail_price = updated_price

I tried calling this method from XML file like this,


ref('library.book_the_alchemist')
499

I have provided two arguments for the method here. but an error shows up,


TypeError: Book.update_book_price() missing 1 required positional argument: 'updated_price'


I think its because the first argument is passed to 'self'. How do i fix this?

Avatar
Verwerfen

Pass all the requirement arguments.

Verknüpfte Beiträge Antworten Ansichten Aktivität
1
Dez. 22
44792
0
Apr. 21
3108
1
Juni 17
3430
1
Juli 25
410
0
Juli 25
439