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

how to create a foreign key and update the column once saved

Підписатися

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

Це запитання позначене
many2onerelationshipproduct.product
2 Відповіді
3767 Переглядів
Аватар
random_mai

I have this scenario: I have a new field in product.product and it's a Many2one field. The many2one field has a product_id column. Here's the sample code:


class MyMany2one():

​_name = "my.manytoone"


​name = fields.Char()

​product_id = fields.Many2one(

​ ​comodel_name = "product.product"

​)



class ProductProduct():

​_inherit = "product.product"


​# in the product view, this will be a selection

​mymany2one = fields.Many2one(

​ ​comodel_name = "my.manytoone"

​)


My issue is it does not populate the product_id in the many2one class after saving

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

you can try this way:

class MyMany2one(models.Model):
_name = "my.manytoone"
name = fields.Char()
product_id = fields.Many2one(
comodel_name="product.product",
inverse_name="mymany2one",
)


class ProductProduct(models.Model):
_inherit = "product.product"

# In the product view, this will be a selection
mymany2one = fields.Many2one(
comodel_name="my.manytoone",
inverse_name="product_id",
)

By adding the inverse_name parameter to the product_id field in the my.manytoone class and the mymany2one field in the product.product class, you establish a two-way relationship between the two fields. This ensures that the product_id field in the my.manytoone class gets populated when a value is selected in the mymany2one field of product.product.

After making these modifications, update the module containing this code and restart the Odoo server. Then, when you create or edit a product.product record, select a value in the mymany2one field, and the corresponding product_id field in the my.manytoone class should populate correctly.

0
Аватар
Відмінити
Аватар
Niyas Raphy (Walnut Software Solutions)
Найкраща відповідь

Hi,

Am not sure about your design, if you need  product_id as Many2one inside your model, you have to write code for updating the product_id field inside your custom model.

Inherit the write method of product.product model, and if the mymany2one field has a value, update the product id into it.

But what if the same record is selected inside multiple products ?

Lets say, you have a record My Record 1 in your table and 2 products in products table P1 and P2, which value you will store inside the My Record 1 if for both P1 and P2, if user choose My Record 1 ?


If its possible to change it one2many field inside your model, you can achieve this without any extra coding. Remove many2one from your model and define a one2many field as follows:


product_ids = fields.One2many('product.product', 'mymany2one', string="Test")

Thanks

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 Відповіді Переглядів Дія
Display another field in many2one instead of name Вирішено
many2one relationship search
Аватар
Аватар
Аватар
3
лют. 25
36885
Show related objects of the same model. Вирішено
many2one one2many relationship
Аватар
Аватар
2
серп. 15
5803
Can i eliminate the option to create and edit?
many2one creation relationship
Аватар
Аватар
Аватар
2
бер. 15
4957
Change display field in popup from related Module
many2one relationship popup Studio
Аватар
Аватар
1
лип. 23
3146
how to delete one2many if many2one is deleted Вирішено
many2one one2many relationship unlink
Аватар
Аватар
1
трав. 23
3633
Спільнота
  • Навчальний посібник
  • Документація
  • Форум
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