Skip to Content
Odoo Меню
  • Увійти
  • Спробуйте це безкоштовно
  • Додатки
    Фінанси
    • Бухоблік
    • Виставлення рахунку
    • Витрати
    • Електронні таблиці (BI)
    • Документи
    • Підпис
    Продажі
    • CRM
    • Продажі
    • POS Магазин
    • POS Ресторан
    • Підписки
    • Оренда
    Веб-сайти
    • Конструктор веб-сайту
    • Електронна комерція
    • Блог
    • Форум
    • Живий чат
    • Електронне навчання
    Ланцюг поставок
    • Склад
    • Виробництво
    • PLM
    • Купівлі
    • Технічне обслуговування
    • Якість
    Кадри
    • Співробітники
    • Рекрутинг
    • Відпустки
    • Оцінювання
    • Рекомендації
    • Автотранспорт
    Маркетинг
    • Маркетинг соцмереж
    • Email-маркетинг
    • SMS-маркетинг
    • Події
    • Автом. маркетингу
    • Опитування
    Послуги
    • Проект
    • Табелі
    • Виїзне обслуговування
    • Служба підтримки
    • Планування
    • Призначення
    Продуктивність
    • Обговорення
    • Схвалення
    • IoT
    • IP-телефонія
    • База знань
    • WhatsApp
    Сторонні модулі Odoo Studio Платформа Odoo Cloud
  • Сфери
    Роздрібна торгівля
    • Книжковий магазин
    • Магазин одягу
    • Магазин меблів
    • Продуктовий магазин
    • Магазин будівельних матеріалів
    • Магазин іграшок
    Food & Hospitality
    • Бар та паб
    • Ресторан
    • Фастфуд
    • Guest House
    • Дистриб'ютор напоїв
    • Hotel
    Нерухомість
    • Real Estate Agency
    • Архітектурна фірма
    • Будівництво
    • Управління нерухомістю
    • Садівництво
    • Асоціація власників нерухомості
    Консалтинг
    • Бухгалтерська компанія
    • Партнер Odoo
    • Агенція маркетингу
    • Юридична фірма
    • Придбання Талантів
    • Аудит та сертифікація
    Виробництво
    • Textile
    • Metal
    • Меблі
    • Їжа
    • Brewery
    • Корпоративні подарунки
    Здоров'я & Фітнес
    • Спортивний клуб
    • Оптика
    • Фітнес-центр
    • Практики здоров'я
    • Аптека
    • Салон краси
    Trades
    • Ремонтник
    • IT-обладнання та Підтримка
    • Системи сонячної енергії
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Інші
    • Nonprofit Organization
    • Екологічна агенція
    • Оренда білбордів
    • Фотографія
    • Лізинг велосипедів
    • Реселлер програмного забезпечення
    Browse all Industries
  • Спільнота
    Навчання
    • Навчальний посібник
    • Документація
    • Сертифікації
    • Тренування
    • Блог
    • Подкаст
    Сприяйте Освіті
    • Програма навчання
    • Бізнес гра Scale Up!
    • Відвідайте Odoo
    Отримайте програмне забезпечення
    • Завантаження
    • Порівняйте версії
    • Релізи
    Співпрацюйте
    • Github
    • Форум
    • Події
    • Переклади
    • Стати партнером
    • Services for Partners
    • Зареєструйте вашу бухгалтерську фірму
    Отримайте послуги
    • Знайдіть партнера
    • Знайдіть бухгалтера
    • Зустріньтеся з консультантом
    • Послуги з впровадження
    • Референси клієнтів
    • Підтримка
    • Оновлення
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Отримати демо
  • Ціни
  • Допомога

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Бухоблік
  • Склад
  • PoS
  • Проект
  • MRP
All apps
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
All Posts Люди Значки
Мітки (View all)
odoo accounting v14 pos v15
Про цей форум
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
All Posts Люди Значки
Мітки (View all)
odoo accounting v14 pos v15
Про цей форум
Допомога

Problem with function write when i posted multi invoice

Підписатися

Отримуйте сповіщення про активність щодо цієї публікації

Це запитання позначене
writeeventaccount.movev17
1 Відповісти
1927 Переглядів
Аватар
Roger Masias Font

Dear community,


I'm trying to add register when i change the state of the invoice, the draft to posted.


I think that i have to catch the write event and the vals but i can't understand, how can i filter the vals for every register.


Example code :


    @api.model    def write(self, vals):        for invoice in self:            if (vals.get('state') == 'posted'):                pos_id = invoice.line_ids.sale_line_ids.order_id.astore_tpv_id                invoice_date = invoice.invoice_date                amount_total = invoice.amount_total                account_move_id = invoice.id


Kind regards 

0
Аватар
Відмінити
Аватар
Zinfin Solutions Private Limited
Найкраща відповідь

Hello Roger Masias Font,

​​If you want to trigger a specific action when changing the state of an invoice from draft to posted, you can indeed use the write method.

​However, there are a few issues in your provided code. First, the if condition should check if the current state is 'draft' and the new state is 'posted'. Second, you should use the super function to call the parent class's write method. Here's a corrected version of your code:

def write(self, vals):
    result = super(YourInvoiceModel, self).write(vals)
    
    for invoice in self:
        if 'state' in vals and vals['state'] == 'posted' and invoice.state == 'draft':
            # Your logic here
            pos_id = invoice.line_ids.sale_line_ids.order_id.astore_tpv_id
            invoice_date = invoice.invoice_date
            amount_total = invoice.amount_total
            account_move_id = invoice.id
            # Perform your custom actions with the gathered data

    return result

​Make sure to replace YourInvoiceModel with the actual name of your invoice model. This code checks if the 'state' key is present in the vals dictionary and its value is 'posted', and if the current state of the invoice is 'draft'. If these conditions are met, you can access the required fields and perform your custom logic.

​Remember to adapt the model and field names according to your actual data model


0
Аватар
Відмінити
Roger Masias Font
Автор

Dear Zinfin,

I can't undestant, how are you filter self with specific invoice, i think that self contain a lot of invoice but i think vals contain some values of specific invoice or all of invoice?

Kind regards, thanks for your help.

Zinfin Solutions Private Limited

Hello Roger,
the loop is iterating over invoices represented by self. The condition within the loop checks if the key 'state' is present in the vals dictionary and if its value is 'posted'. Additionally, it checks if the state of the current invoice in the loop is 'draft'. If these conditions are met, the code inside the loop is executed.

The invoice variable in the loop represents the current invoice being processed. So, the code inside the loop is dealing with a specific invoice that satisfies the conditions specified in the if statement. The vals dictionary seems to contain information related to the state of invoices, and it's being checked for the 'posted' state.

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Реєстрація
Related Posts Відповіді Переглядів Дія
Add a new column in the partner legder
account.move v17 Ledger
Аватар
Аватар
1
серп. 24
1855
odoo17: Is this bug known? Mail Composer in Account Move renders same report doesn't matter which mail template is selected (reproducable in runbot)
mail templates account.move reports v17
Аватар
0
квіт. 24
2278
payment_state never get value "paid" in code
development invoice write onchange v17
Аватар
Аватар
1
бер. 24
1878
Ya es posible hacer Upgrade de v17 a v17.1 ?
v17
Аватар
Аватар
1
жовт. 25
1369
How to add a new Many2one field in res.config.settings? Вирішено
v17
Аватар
Аватар
Аватар
Аватар
4
жовт. 25
3809
Спільнота
  • Навчальний посібник
  • Документація
  • Форум
Open Source
  • Завантаження
  • Github
  • Runbot
  • Переклади
Послуги
  • Хостинг Odoo.sh
  • Підтримка
  • Оновлення
  • Кастомні доробки
  • Навчання
  • Знайдіть бухгалтера
  • Знайдіть партнера
  • Стати партнером
Про нас
  • Наша компанія
  • Торгові активи
  • Зв'яжіться з нами
  • Вакансії
  • Події
  • Подкаст
  • Блог
  • Клієнти
  • Юридичні документи • Конфіденційність
  • Безпека
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo - це набір програм для роботи з відкритим кодом, які охоплюють всі ваші потреби компанії: CRM, електронна комерція, бухгалтерський облік, склад, точка продажу, управління проектами тощо.

Унікальна пропозиція Odoo - це одночасно дуже проста у використанні та повністю інтегрована.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now