تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
1 الرد
8258 أدوات العرض

I need additional types for res.partner model.

By default it have 4  (contact, invoice, delivery, other).

Client needs add 2 (additional_phone, additional_mail).

In inherited module I redefine this field:

type = fields.Selection(
[('contact', 'Contact'),
('addmail','Additional Mail'),
('addphone','Additional Phone'),
('invoice', 'Invoice address'),
('delivery', 'Shipping address'),
('other', 'Other address')], 'Address Type',

help="Used to select automatically the right address according to the context in sales and purchases documents."),
during module installation there was no errors. But when trying open contact form or list it crushes to Internal Server Error.

Log:  2017-03-30 11:48:18,963 10732 INFO A7test openerp.addons.base.ir.ir_ui_view: Field `type` does not exist

Error context:

View `res.partner.kanban`

[view_id: 125, xml_id: base.res_partner_kanban_view, model: res.partner, parent_id: n/a]

الصورة الرمزية
إهمال
أفضل إجابة

Hi Anar

You could do it like this:

type = fields.Selection(selection_add=[('addmail','Additional Mail'),('addphone','Additional Phone')])


الصورة الرمزية
إهمال
المنشورات ذات الصلة الردود أدوات العرض النشاط
4
فبراير 25
2742
1
أغسطس 24
2246
2
نوفمبر 24
3401
3
أكتوبر 23
14927
2
فبراير 23
2523