0

我正在尝试将 many2one 字段传递给另一个数据库。现在我的程序正在使用 xmlrpc 进入数据库并从名为 product.template 的表中获取数据,然后创建一个 csv。我要传递的字段与其他字段一起返回“[54, 'PARTS / COST']”。我只需要 54 即 id。知道在哪里拦截这个问题或如何解决它吗?这是我到目前为止得到的两种方法。

def FetchProducts(self):
    products = self.odoo_object.execute_kw(
        self.db,
        self.uid,
        self.password,
        'product.template',
        'search_read',
        [[['sale_ok', '=', True], ['purchase_ok', '=', True]]],
        {'fields': ['id', 'name', 'sale_ok', 'purchase_ok', 'type', 'default_code', 'barcode', 'list_price', 'standard_price', 'categ_id'], 'limit': 1}
    )
    return products
def ProductsCSV(self,products):
    csv_columns = ['id', 'name', 'sale_ok', 'purchase_ok', 'type', 'default_code', 'barcode', 'list_price', 'standard_price', 'categ_id']
    csv_file = "Products.csv"
    try:
        with open(csv_file, 'w', encoding='utf-8', newline='') as csvfile:
            writer = csv.DictWriter(csvfile, csv_columns, delimiter=',')
            writer.writeheader()
            for data in products:
                writer.writerow(data)
                print("Writing Products " + str(data))
    except IOError:
        print("I/O error")
4

1 回答 1

0

我认为您在这一行有问题:-

--> 使用 open(csv_file, 'w', encoding='utf-8', newline='') 作为 csvfile:

所以在我看来,请删除参数: - 编码和换行符。

我使用项目模块运行您的代码,它运行良好。

于 2020-01-02T05:34:03.720 回答