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

How to migrate/import hundreds of Gift Cards from another system to Odoo using existing gift cards codes?

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

Since codes for new gift cards are automatically created in a read-only field, the only way to import codes is to 

1) remove the read-only functionality with a customization.

from odoo import models, fields, api

class GiftCard(models.Model):
_inherit = "gift.card"

code = fields.Char(default=lambda x: x._generate_code(), required=True, readonly=False, copy=False)

2) import
الصورة الرمزية
إهمال
المنشورات ذات الصلة الردود أدوات العرض النشاط
0
مايو 25
2139
2
مارس 24
3127
0
سبتمبر 22
3888
0
سبتمبر 22
1904
1
نوفمبر 22
2294