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

Hi! When we export a list form tree-view that contains Checkbox fields it will post the value i Excel as True or False. Is it possible to make this as X(true) and blank(false)? Is it also possible to make an export option ready on the "more" menu, so that they wouldn't have to select "export all data" "excel" and the fields?

This is a export/report that will be run more than once a day, so it has to be easy to access.

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

1) Based on the requirement to override export_data method and make the changes in check box values.

def export_data(self, cr, uid, ids, fields, context=None):
    checkdataindex = None
    for index, fieldlabel in enumerate(fields):
        if fieldlabel == 'check_labelname':
            checkdataindex = index
    res = super(modelclass_name, self).export_data(cr, uid, ids, fields, context=context)         
    for index, val in enumerate(res['datas']):
        if checkdataindex is not None:           
            check_date = res['datas'][index][checkdataindex] 
            if check_data=='TRUE':
                res_check_data = 'X(true)'
            else:    
                res_check_data = 'blank(false)'
            res['datas'][index][checkdataindex] = res_check_data   
    return res

2) In the Export options Select the Export field to right side and click the default options "Fields to export Save fields list" and Save as: File Name

After that Export Data easy to Access with File Name.

الصورة الرمزية
إهمال
الكاتب

So, where exactly do i find this export_data method? Is it a file, in the database or in the web gui?

export_data is ORM method. Just add the above code in py file that you have created table and column. or In another way to change the checkbox data if you using sql query using if else statement change the value of check box.

المنشورات ذات الصلة الردود أدوات العرض النشاط
3
مايو 20
3751
1
يوليو 25
1510
3
فبراير 25
14683
1
أبريل 25
1990
Export Import تم الحل
1
أبريل 25
1816