|
@@ -1690,14 +1690,14 @@ class Dataflow_ActivteMQ_extract(Dataflow_extract):
|
|
|
pinmu_no = list_new_product[product_i].get("品目编号","")
|
|
|
pinmu_name = list_new_product[product_i].get("品目名称","")
|
|
|
product_attrs_new["data"].append({
|
|
|
- "brand": brand,
|
|
|
+ "brand": str(brand),
|
|
|
"product": product,
|
|
|
- "quantity": quantity,
|
|
|
+ "quantity": str(quantity),
|
|
|
"quantity_unit": quantity_unit,
|
|
|
"specs": specs,
|
|
|
- "unitPrice": uni_price,
|
|
|
+ "unitPrice": str(uni_price),
|
|
|
"parameter": "",
|
|
|
- "total_price": total_price,
|
|
|
+ "total_price": str(total_price),
|
|
|
"pinmu_no": pinmu_no,
|
|
|
"pinmu_name": pinmu_name
|
|
|
})
|