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

Dear all,

Is it possible to record multiple addresses on each customer or supplier record?  Often, there are different invoice and delivery addressed used by customers or suppliers.  How do you manage this without creating multiple (duplicate) customer or supplier records?  Surely Odoo should be able to do this easily.  Afterall, it's simply a one-to-many database design!!

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

Simply create a new one2many field and show it in your view, you'll be able to add as many customers to the list as you wish then.

Найкраща відповідь

Hi Iming,

Create a new one2many field in your model and then add it to the view.
yourmodel.py:

//You could alternatively use the 8.0 API here too, then you'd use models.Model
 class your_class(osv.osv):
_inherit = res.partner
'all_partner_ids': fields.one2many(
            'res.partner', 'assigned_partner_ids',
            string='Customers',
        ),

yourview.xml:

<field name="all_partner_ids"/> 
Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
2
трав. 24
13576
0
черв. 16
4085
1
черв. 15
6549
4
жовт. 22
10719
0
черв. 16
5821