In import_data assert all(len(x) == len_fields_names for x in data) AssertionError

Hi;

after exporting a csv file witch contain:

Type (string),Number,Reference,Invoice Date,Party,Untaxed,Tax,Total,State (string),Amount to Pay Today,Description
Customer,,,,arslan,"1,038",197.22,"1,235.22",Draft,0,
Customer,,,04/13/2022,arslan,,6,0,6,Draft,0,
Customer,,,02/23/2022,"jn    ",12,0.95,12.95,Validated,0,
Customer,"('9', 2)",,02/09/2022,arslan,14,0.04,14.04,Posted,14.04,
Customer,9,,02/28/2022,Mial,-8,-0.76,-8.76,Paid,0,
Customer,8,,02/26/2022,arslan,-30,-0.2,-30.2,Paid,0,
Customer,8,,02/16/2022,Miral,24,0,24,Cancelled,0,

then i have export this file and type autodetect for detect automatically the fields selected :

but i noticed that the fields during export are like that:

and during import and when i use “auto-detect” for select fields

it gives me just those 3 fields:

-----> the fields during import not the same during export otherwise i have did an"auto-detect" for fields

and if i click “ok” it show me this error :


 File "/lib/python3.7/site-packages/trytond/model/modelstorage.py", line 984, in import_data
    assert all(len(x) == len_fields_names for x in data)
AssertionError

How i can solve that, Thanks in advance.

CSV export is not supposed to always work as import CSV.