Перейти к содержимому
Odoo Меню
  • Войти
  • Попробовать бесплатно
  • Модули
    Финансы
    • Бухгалтерия
    • Выставление счетов
    • Расходы
    • Таблицы
    • Документооборот
    • Подпись
    Продажи
    • CRM
    • Продажи
    • POS Магазин
    • POS Ресторан
    • Подписки
    • Аренда
    Вебсайты
    • Конструктор вебсайтов
    • eCommerce
    • Блог
    • Форум
    • Онлайн-чат
    • Электронное обучение
    Логистика
    • Склад
    • Производство
    • PLM
    • Закупки
    • Обслуживание
    • Качество
    Отдел кадров
    • Сотрудники
    • Подбор персонала
    • Отпуска
    • Оценка персонала
    • Реферальная программа
    • Автопарк
    Маркетинг
    • SMM
    • E-mail рассылки
    • СМС рассылки
    • Мероприятия
    • Автоматизация маркетинга
    • Опросы
    Услуги
    • Проекты
    • Табели
    • Выездной сервис
    • Поддержка
    • Планирование
    • Встречи
    Продуктивность
    • Обсуждения
    • Согласование
    • IoT
    • VoIP-телефония
    • Knowledge
    • WhatsApp
    Сторонние приложения Модуль Студия Odoo Платформа Odoo Cloud
  • Индустрии
    Розничная торговля
    • Книжный магазин
    • Магазин одежды
    • Мебельный магазин
    • Продуктовый магазин
    • Строительный магазин
    • Магазин игрушек
    Гостинично-ресторанный бизнес
    • Бар и паб
    • Ресторан
    • Фастфуд
    • Гостевой дом
    • Дистрибьютор напитков
    • Отель
    Недвижимость
    • Агентство недвижимости
    • Архитектурное бюро
    • Строительство
    • Управление недвижимостью
    • Ландшафтный дизайн
    • Товарищество собственников жилья
    Консалтинг
    • Бухгалтерская фирма
    • Партнер Odoo
    • Маркетинговое агентство
    • Юридическая фирма
    • Подбор персонала
    • Аудиторское бюро
    Производство
    • Текстиль
    • Металл
    • Мебель
    • Продукты питания
    • Пивоварня
    • Корпоративные сувениры
    Здоровье и фитнес
    • Спортивный комплекс
    • Магазин оптики
    • Фитнес-клуб
    • Велнес-центр
    • Аптека
    • Салон красоты
    Услуги
    • Специалист по бытовым услугам
    • Продажа и обслуживание IT-оборудования
    • Солнечные энергосистемы
    • Производство обуви
    • Клининг
    • Системы ОВКВ
    Прочее
    • Некоммерческая организация
    • Консалтинг в сфере устойчивого развития
    • Аренда рекламных щитов
    • Бизнес по фотосъемке
    • Прокат велосипедов
    • Реселлер программного обеспечения
    Все индустрии
  • Community
    Обучение
    • Видео уроки
    • Документация
    • Сертификация
    • Тренинг
    • Блог
    • Подкаст
    Образование и развитие
    • Образовательная программа
    • Деловая игра Scale Up!
    • Экскурсия в офис Odoo
    ПО
    • Скачать
    • Сравнить версии
    • Релизы
    Сотрудничество
    • Github
    • Форум
    • Мероприятия
    • Перевод
    • Стать партнером
    • Услуги для партнеров
    • Зарегистрировать бухгалтерскую фирму
    Услуги
    • Найти партнера
    • Найти бухгалтера
    • Встреча с экспертом
    • Услуги по внедрению
    • Отзывы клиентов
    • Поддержка
    • Обновления
    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
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Все посты Люди Значки
Теги (Смотреть все)
odoo accounting v14 pos v15
Об этом форуме
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Все посты Люди Значки
Теги (Смотреть все)
odoo accounting v14 pos v15
Об этом форуме
Помощь

How to inherit a class that contain super class odoo10

Подписаться

Получайте уведомления о появлении активности в этом посте

Этот вопрос был отмечен
pythoninheritodoo10.0
2 Ответы
6831 Представления
Аватар
Silviaa

Hi,

I want to modify the popup in the class 'account.register.payments', so i inherit and add my changes in that. After running this it will call the original method and shows the original popup, it will not shows mine.

Coding,

class account_register_payments(models.TransientModel):

    _inherit = "account.register.payments"

   @api.model

        def default_get(self, fields):

             rec = super(account_register_payments, self).default_get(fields)

                context = dict(self._context or {})

                active_model = context.get('active_model')

                active_ids = context.get('active_ids')


                # Checks on context parameters

                if not active_model or not active_ids:

                        raise UserError(_("Programmation error: wizard action executed without active_model or active_ids in                         context."))

                if active_model != 'account.invoice':

                    raise UserError(_("Programmation error: the expected model for this action is 'account.invoice'. The provided one                     is '%d'.") % active_model)

                # Checks on received invoice records

                invoices = self.env[active_model].browse(active_ids)

                if any(invoice.state != 'open' for invoice in invoices):

                    raise UserError(_("You can only register payments for open invoices"))

                if any(inv.commercial_partner_id != invoices[0].commercial_partner_id for inv in invoices):

                    raise UserError(_("In order to pay multiple invoices at once, they must belong to the same commercial                     partner."))

                if any(MAP_INVOICE_TYPE_PARTNER_TYPE[inv.type] != MAP_INVOICE_TYPE_PARTNER_TYPE[invoices[0].type] for inv                 in invoices):

                    raise UserError(_("You cannot mix customer invoices and vendor bills in a single payment."))

                if any(inv.currency_id != invoices[0].currency_id for inv in invoices):

                    raise UserError(_("In order to pay multiple invoices at once, they must use the same currency."))

                total_amount = sum(inv.residual * MAP_INVOICE_TYPE_PAYMENT_SIGN[inv.type] for inv in invoices)

                communication = ' '.join([ref for ref in invoices.mapped('reference') if ref])

                rec.update({

                    'amount': abs(total_amount),

                    'currency_id': invoices[0].currency_id.id,

                    'payment_type': total_amount > 0 and 'inbound' or 'outbound',

                    'partner_id': invoices[0].commercial_partner_id.id,

                    'partner_type': MAP_INVOICE_TYPE_PARTNER_TYPE[invoices[0].type],

                    'communication': communication,

                })

                return rec


From this method, i need to modify "raise UserError(_("In order to pay multiple invoices at once, they must belong to the same commercial                     partner."))" (this popup).

But it contains the " rec = super(account_register_payments, self).default_get(fields)" super class of that original class, so that it execute the original not mine.

can anyone help me to inherit this method..

0
Аватар
Отменить
Аватар
Silviaa
Автор Лучший ответ

         This is my code changes:

class account_register_payments(models.TransientModel):

    _inherit = "account.register.payments"

    @api.model

    def default_get(self, fields):

        """This method is to create payment for multiple

        vendors and also check whether the shipment or

        invoice in return or refund state. If there it will

        raise popup based on shipment and invoice returns

        :rtype dict

        :return returns the payment value"""

        rec = super(account_register_payments, self).default_get(fields)

        context = dict(self._context or {})

        active_model = context.get('active_model')

        active_ids = context.get('active_ids')

        # Checks on context parameters

        if not active_model or not active_ids:

            raise UserError(_("Programmation error: wizard action executed \

                            without active_model or active_ids in context."))

        if active_model != 'account.invoice':

            raise UserError(_("Programmation error: the expected model for this \

                            ' action is 'account.invoice'. \

                            The provided one is '%d'.")

                            % active_model)

        # Checks on received invoice records

        invoices = self.env[active_model].browse(active_ids)

        for invoice in invoices:

            partner = invoice.partner_id.id

            stock_picking = self.env['stock.picking'].search(

                [('partner_id', '=', partner)])

            for picking in stock_picking:

                if (picking.return_doc is True and picking.state != 'done'):

                    raise UserError(_("Some shipment are in return stage, \

                                    Please complete it"))

            invoice_return = self.env['account.invoice'].search(

                [('partner_id', '=', partner)])

            for inv in invoice_return:

                if(inv.type == 'in_refund'):

                    raise UserError(_("some of the invoices are in return state, \

                                    have to complete it"))

        if any(invoice.state != 'open' for invoice in invoices):

            raise UserError(_("You can only register payments \

                            for open invoices"))

        # =======================================================================

        # if any(inv.commercial_partner_id != invoices[0].commercial_partner_id for inv in invoices):

        # raise UserError(_("In order to pay multiple invoices at once, \

        # they must belong to the same commercial partner."))

        # =======================================================================

        if any(MAP_INVOICE_TYPE_PARTNER_TYPE[inv.type] != MAP_INVOICE_TYPE_PARTNER_TYPE[invoices[0].type] for inv in invoices):

            raise UserError(_("You cannot mix customer invoices and \

                            vendor bills in a single payment."))

        if any(inv.currency_id != invoices[0].currency_id for inv in invoices):

            raise UserError(_("In order to pay multiple invoices at once, \

                                they must use the same currency."))

        total_amount = sum(inv.residual * MAP_INVOICE_TYPE_PAYMENT_SIGN[inv.type] for inv in invoices)

        communication = ' '.join([ref for ref in invoices.mapped('reference') if ref])

        rec.update({

            'amount': abs(total_amount),

            'currency_id': invoices[0].currency_id.id,

            'payment_type': total_amount > 0 and 'inbound' or 'outbound',

            'partner_id': invoices[0].commercial_partner_id.id,

            'partner_type': MAP_INVOICE_TYPE_PARTNER_TYPE[invoices[0].type],

            'communication': communication,

        })

        return rec


the bold things are my code changes but it doesn't works me because it calls the original one.

How can i rectify this..

0
Аватар
Отменить
Аватар
Chandran N Nepolean
Лучший ответ

Hi silviaa,

It seems you are using same class name as original . Please refer original code

https://github.com/odoo/odoo/blob/447c2770b0b3b809d822b2e1acfaba95777be70d/addons/account/models/account_payment.py

can you please change class name and try. I cannot see any changes in this method. Its totally same as original. 

Thanks

Chandran Nepolean

0
Аватар
Отменить
Не оставайтесь в стороне – присоединяйтесь к обсуждению!

Создайте аккаунт сегодня, чтобы получить доступ к эксклюзивным функциям и стать частью нашего замечательного сообщества!

Регистрация
Похожие посты Ответы Просмотры Активность
Automatically create one2many fields
python odoo10.0
Аватар
Аватар
Аватар
Аватар
3
июл. 20
9814
Odoo10.0: Cascade inheritance broken ?
inherit odoo10.0
Аватар
Аватар
1
февр. 19
3703
when i submit the form the alert msg is showing but form is getting submit how to validate my form here
python odoo10.0
Аватар
Аватар
2
июн. 18
9941
TypeError: cannot convert dictionary update sequence element #0 to a sequence Решено
python odoo10.0
Аватар
Аватар
1
окт. 17
8942
ImportError: No module named http in odoo10
python odoo10.0
Аватар
1
июл. 17
9423
Сообщество
  • Видео уроки
  • Документация
  • Форум
Открытый исходный код
  • Скачать
  • Github
  • Runbot
  • Перевод
Услуги
  • Хостинг Odoo.sh
  • Поддержка
  • Обновление
  • Индивидуальные решения по доработке
  • Образование
  • Найти бухгалтера
  • Найти партнера
  • Стать партнером
О нас
  • Наша компания
  • Активы бренда
  • Cвяжитесь с нами
  • Вакансии
  • Мероприятия
  • Подкаст
  • Блог
  • Клиенты
  • Правовые документы • Конфиденциальность
  • Безопасность
الْعَرَبيّة 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, E-commerce, Бухгалтерия, Склад, POS, управление проектами и др.

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