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
Про цей форум
Допомога

Load custom model and add a field to pos.order.line in Point of Sale

Підписатися

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

Це запитання позначене
modelspoint_of_saleOdoo12.0
2 Відповіді
8321 Переглядів
Аватар
Paulo Matos

Dear all

I am trying to add a new custom field to the "pos.order.line" for use with Point of Sale application in Odoo 12.

This new field is dependable on a new model I have created for use with products.

I added this field to the model and I need it to be automatically filled on every pos order line for every product.

It is something like the "taxes", were user selects a product and Odoo automatically set the tax information on pos order line.

For a better understanding I will try to reproduce the steps I have accomplished so far.

1. New model: for this example I will call it "Type".

This model will be filled with "several" types and added to every product I have.

class Types(models.Model):
_name = 'types'
_description = 'Sample Types Model'
code = fields.Char('Code', required=True)
name = fields.Char('Description', required=True)

2. As stated, this "types" will be added to every product I have, so, I have added a new field to "products.template" model:

class ProductTemplate(models.Model): 
_inherit = "product.template"
types_id = fields.Many2one('types', string='Product specific type')

3. Since I need this value to be shown on every pos order line, I added the field to the "pos.order.line" model using the same approach:

class PosOrderLine(models.Model):
_inherit = "pos.order.line"
types_id = fields.Many2one('types', string='Product specific type'

PS: I could use another approach by "working" with "product_id" field on the "pos.order.line", but I need to keep track of the "type" used on every product line even if user changes the "type" on the product and using this approach I will keep track the "type" used on the pos order no matter if the type was changed on the product.


4. Here the problem starts.

I need to load the new model and the new field added to "product.template" and write the default "type" for every product on the "pos.order.line", when the order is confirmed.

I am trying to load the "types" model and the new "types_id" field on product.template using the following code:

var pos_model = require('point_of_sale.models');

pos_model.load_fields("types", "code", "name");
pos_model.load_fields("product.template", "types_id");

Is the code above correct?

5. Now, I need to override the method that manages the pos.order.lines, in order to automatically load the "type" field when a product is added to the basket and write it to database for every product lines included on the order.

Can anyone help me please?

Thank you very much

Best regards

PM


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

I have solved my problem with the help of Kenly on another forum.

Just had to declare the "types_id" field on "pos.order.line" like:

class PosOrderLine(models.Model):
_inherit = "pos.order.line"
types_id = fields.Many2one(related='product_id.product_tmpl_id.types_id',
string='Product specific type', store=True)

Thank you all


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

Hello,please i want to change the form for a many2one field.I want to show another kanban view.

can you help me ?

0
Аватар
Відмінити
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 Відповіді Переглядів Дія
Studying ODOO Point of sale source code v12.0
point_of_sale Point Of Sale odoo12.0 Odoo12.0
Аватар
Аватар
Аватар
2
квіт. 21
7848
Odoo 12: Help on JavaScript function for Point of Sale
javascript function point_of_sale Odoo12.0
Аватар
0
квіт. 20
3098
add model to point of sale
javascript models self point_of_sale
Аватар
0
квіт. 15
4151
Reuse field from a different Model
models
Аватар
0
лист. 25
2
Configuring Advanced Rights to Hide 'Cost' on POS Screen for Employees
point_of_sale
Аватар
Аватар
1
лип. 25
2769
Спільнота
  • Навчальний посібник
  • Документація
  • Форум
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