Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
1 Відповісти
1231 Переглядів

Hello Odoo Community:

   I'd like to create an automated action in model sale.order.inherited, in which every time (on creation and update) the field "name" has a keyword "sample", the invoice.status will change to "no" (nothing to invoice); before update, "name" is not set; after update, "name" (order.reference) contains "sample"; I have tried update the record -->invoice.status--> value --> no, but it doesn't work; I'd like to try execute the python code, would you please help me write the code

["invoice_status","=","no"]

Thanks a lot

Аватар
Відмінити
Найкраща відповідь

Hi, 

Try this code:

# Assuming 'sample' is case-sensitive in the order reference
if record.name and 'sample' in record.name:
    record.invoice_status = 'no'


Hope it helps

Аватар
Відмінити
Автор

Thank you for your reply, but it shows "forbidden opcode(s) in "if record.name and 'sample' in record.name:\n record.invoice_status = 'no'": STORE_ATTR"

Автор

Also, how to I write the code if it is the name field contains the keyword "sample"; name, ilike, sample?

Related Posts Відповіді Переглядів Дія
1
січ. 24
1114
1
груд. 23
1503
1
лют. 19
21904
3
лип. 18
4596
2
квіт. 16
8283