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

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.

Related Posts Відповіді Переглядів Дія
3
трав. 20
3797
1
лип. 25
1667
3
лют. 25
14864
1
квіт. 25
2054
Export Import Вирішено
1
квіт. 25
1949