赞
踩
腾讯生态品牌商家小程序经营分析与数据资产管理平台
有数官方文档 小程序新增授权 | 技术文档
response_info 推送有数响应结果(包含正常响应和异常结果,如请求超时等情况) CREATE TABLE public.t_store_youshu_request ( id int4 NOT NULL, order_id int8 NULL, order_code varchar(50) NULL, order_source int4 NULL, push_type varchar(10) NULL, status int4 NULL, push_num int4 NULL, request_info text NULL, response_info text NULL, create_time timestamp NOT NULL DEFAULT now(), last_modify_time timestamp NOT NULL DEFAULT now(), total numeric NULL, CONSTRAINT t_store_youshu_request_pkey PRIMARY KEY (id) ); CREATE INDEX idx_youshu_request_create_time ON t_store_youshu_request USING btree (create_time); CREATE INDEX idx_youshu_request_order_code ON t_store_youshu_request USING btree (order_code); CREATE INDEX idx_youshu_request_order_id ON t_store_youshu_request USING btree (order_id); CREATE INDEX t_store_youshu_request_status_idx ON t_store_youshu_request USING btree (status, push_num); comment on column t_store_youshu_request.order_id is '订单id'; comment on column t_store_youshu_request.order_code is '订单code'; comment on column t_store_youshu_request.order_source is '订单来源 1:小程序 2:APP 3:官网'; comment on column t_store_youshu_request.push_type is '推送类型 1110待支付,1150已支付待发货,1160已发货,1180完成'; comment on column t_store_youshu_request.status is '推送状态 0:未处理1:成功 2:失败 3:超时'; comment on column t_store_youshu_request.push_num is '推送次数'; comment on column t_store_youshu_request.request_info is '推送数据'; comment on column t_store_youshu_request.response_info is '推送响应数据'; comment on column t_store_youshu_request.create_date is '创建时间'; comment on column t_store_youshu_request.total IS '订单金额(支付金额)'; comment on column t_store_youshu_request.last_modify_time IS '最后修改时间';
|
1.提前和有数沟通好要做哪些类型的数据上报,比如商品,再比如取消订单等,否则会影响测试结果 2.如果有功能点测试不通过,则需要该异常 修复之后重新提测时 需要上传10条或以上条数据到有数 3.不同颜色商品 spu_id不一致,有数会认为测试不通过,我们后来改传style款号,前后端要一致 4.测试或者提测 有数时 上传有数订单 商品数量需要有多件的订单行数据 也就是 goods_num=1 和 goods_num !=1 5.有数平台数据上传符合要求会有绿色对号成功小图标,但是不代表ok了,需要有数公众号手动提测给有数 6.有数数据仓库id第一次获取之后写死本地,不要再每次上传之前请求接口获取,有数获取仓库id接口不稳定 7.有数官方文档有dataSourceType字段,如果之前有添加过仓库id,按照不同业务场景传递不同参数再次添加会返回错误,所以仓库id需要全站共用 8.沙箱环境测试ok之后,需要添加连接有数生产环境的密钥参数,如 APP ID 和 APP Secret区分环境 。merchantId(不区分环境)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。