💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
**简要描述:** * 当CTC系统派发给第三方系统的工单后,第三方可调用该接口,获取该工单的产品BOM。 * 应用场景举例:服务商调用该接口,获取产品BOM。在维修单处理完成,填写使用配件的可选值,从产品BOM中选择。 **接口地址:** * `http://IP/doscall/oa/api/product_bom/` **参数示例** ``` { "key": "……", //CTC系统指定 "data": { "product_69_code": "6923185600350" } } ``` **参数:** | 名称 | 是否必须 | 允许为空 | 描述 | 附加说明 | | --- | --- | --- | --- | --- | | product\_69\_code | Y | N | 产品69码 | CTC系统产品69码 | **返回示例** ``` { "res":0, "msg":"", "data":[ { //产品69码 "product_69_code":"6923185600350", //产品名称 "product_name":"云米1秒即热净水器X3(100G)", //云米编码 "yunmi_code":"6923185600596", //配件名称 "parts_name":"水袋组件-售后", //新件价格 "price_new":"88.07", //零售价格 "price_sale":"0.00", //是否返厂 "return_factory":"否", //质保期(天) "warranty_day":0 }, { "product_69_code":"6923185600350", "product_name":"云米1秒即热净水器X3(100G)", "yunmi_code":"100202190004", "parts_name":"三分TDS计", "price_new":"16.55", "price_sale":"0.00", "return_factory":"否", "warranty_day":0 }, { "product_69_code":"6923185600350", "product_name":"云米1秒即热净水器X3(100G)", "yunmi_code":"100202100024", "parts_name":"废水比电磁阀", "price_new":"19.80", "price_sale":"0.00", "return_factory":"是", "warranty_day":0 }, { "product_69_code":"6923185600350", "product_name":"云米1秒即热净水器X3(100G)", "yunmi_code":"100202100025", "parts_name":"常闭电磁阀(纯水)", "price_new":"21.64", "price_sale":"0.00", "return_factory":"是", "warranty_day":0 }, { "product_69_code":"6923185600350", "product_name":"云米1秒即热净水器X3(100G)", "yunmi_code":"100202100026", "parts_name":"常闭电磁阀(进水)", "price_new":"19.99", "price_sale":"0.00", "return_factory":"是", "warranty_day":0 }, { "product_69_code":"6923185600350", "product_name":"云米1秒即热净水器X3(100G)", "yunmi_code":"100202180014", "parts_name":"液位传感器", "price_new":"18.82", "price_sale":"0.00", "return_factory":"否", "warranty_day":0 }, { "product_69_code":"6923185600350", "product_name":"云米1秒即热净水器X3(100G)", "yunmi_code":"100206120002", "parts_name":"进水三通球阀-二分", "price_new":"22.36", "price_sale":"0.00", "return_factory":"否", "warranty_day":0 }, { "product_69_code":"6923185600350", "product_name":"云米1秒即热净水器X3(100G)", "yunmi_code":"100202150021", "parts_name":"中框显示灯板", "price_new":"15.80", "price_sale":"0.00", "return_factory":"否", "warranty_day":0 }, { "product_69_code":"6923185600350", "product_name":"云米1秒即热净水器X3(100G)", "yunmi_code":"100202190002", "parts_name":"TDS计2", "price_new":"9.77", "price_sale":"0.00", "return_factory":"否", "warranty_day":0 }, { "product_69_code":"6923185600350", "product_name":"云米1秒即热净水器X3(100G)", "yunmi_code":"100202120007", "parts_name":"温度保险丝2(蓝线)", "price_new":"0.00", "price_sale":"0.00", "return_factory":"否", "warranty_day":0 }, { "product_69_code":"6923185600350", "product_name":"云米1秒即热净水器X3(100G)", "yunmi_code":"100202120006", "parts_name":"温度保险丝1(红线)", "price_new":"0.00", "price_sale":"0.00", "return_factory":"否", "warranty_day":0 }, { "product_69_code":"6923185600350", "product_name":"云米1秒即热净水器X3(100G)", "yunmi_code":"100209080105", "parts_name":"前壳组件-售后", "price_new":"343.20", "price_sale":"0.00", "return_factory":"是", "warranty_day":0 } ] } ``` **返回参数说明** | 名称 | 描述 | 附加说明 | | --- | --- | --- | | res | 0成功,其他值为失败 | 有效值:0/1/2 | | msg | 消息说明 | 1:签名无效;2:无数据 | | data | 返回结果 | key值 | | 其他字段 | 见上面的参数描述 | |