(1)、查询接口信息
地址:
http://x3-service-archives-center/archive/ascription/rules/v1/quer
参数:
List<ArchiveAscriptionRulesQueryRequest> requests
private String orderId;
private String dataId;
private String clothingId; // 货号
private String saleDepotId; // 销售店铺
private String setDepotId; // 发货店
(2)、实际执行逻辑
----2.1 查询此店铺销售地绑定的分组(10的类型是销售地分组)
SELECT * from a_ec_depot_group_sub where depot_id = '42011001' and group_type=10
----2.2 查询此发货店铺销售地绑定的分组(20的类型是销售地分组)
SELECT * from a_ec_depot_group_sub where depot_id = '15021001' and group_type=20
----2.3 查货号绑定的分组
SELECT brand_id from a_goods_style_sku where clothing_id = 'EWW334S0030000160' // 先得到货号的品牌
SELECT * from a_ec_goods_group_sub where type_id = '10' and goods_group_type = '1' // brand_id等于10传入查
----2.4 前面3个分组的分组编号合并进行查询规则
String rulesId = String.join("-",saleGroupId,setGroupId,goodsGroupId); // 编码组合方式
select * from a_ec_ascription_rules where rules_id = rulesId // 查询格式
select * from a_ec_ascription_rules where rules_id = 'ELLASSAY01-ELLASSAY02-GLS1003
----2.5 根据规则分配业绩:
规则中的rules_type:
1、归属销售店,2、归属发货店,3、归属指定店, 4、归销售店绑定店,5、归发货店绑定店
通过此规则即可获得业绩归属,
如果归属指定店铺,取值2.4查询规则中appoint_depot_id
如果归销售店绑定店,取值2.1查询的规则中bind_deptd
如果归销售店绑定店,取值2.2查询的规则中bind_deptd
扫描二维码推送至手机访问。
版权声明:本文由高久峰个人博客发布,如需转载请注明出处。
本文链接:https://blog.20230611.cn/post/688.html