Commit cbb28fbd by xmy

Merge remote-tracking branch 'origin/test' into test

parents afdbf14e c89ac3f9
# 2.0.72
- 移除updateMainOrderByPid
# 2.0.71
- 订单支付回调
# 2.0.70
- 划卡收益明细优化上线
......
......@@ -41,7 +41,8 @@ class AuthEnum
const AUTH_TYPE_TRAFFIC_SELLER = 208; // 流量平台的商家
const AUTH_TYPE_SHARER_TALENT = 209; // 流量平台的分享达人
const APP_TYPE_REGISTER = 1; // 店铺注册专用小程序
const APP_TYPE_CATERING = 2; // 餐饮行业店铺管理小程序
......
......@@ -31,6 +31,7 @@ class CfgCenter
const TRAFFIC_BACKEND_WEAPP = 'traffic_backend_weapp'; //流量平台业务员端小程序
const TRAFFIC_FRONTEND_WEAPP = 'traffic_frontend_weapp'; //流量平台买家端小程序
const CATERING_WEAPP = 'catering_weapp'; //餐饮小程序
const REGISTER_WEAPP = 'register_weapp'; // 注册店铺专用小程序
/**
* 根据用户token获取配置, 优先使用此方法读取配置
......
......@@ -141,7 +141,7 @@ interface OrderInterface
public function updateInfoByPids(int $storeId,array $pIds,array $updateInfo);
/**
* 根据主订单ID更新订单信息
* 订单支付回调
*
* @param integer $storeId
* @param integer $pId
......@@ -149,7 +149,7 @@ interface OrderInterface
* @param array $subData
* @return bool
*/
public function updateMainOrderByPid(int $storeId,int $pId,array $mainData,array $subData=[]);
public function payCallback(int $storeId,int $pId,array $mainData,array $subData=[]);
/**
* 获取未入账统计
......
......@@ -9,4 +9,7 @@ class StoreEnum
const VIP_TYPE_TY = 'ty'; // 特殊VIP类型:免费体验
const INDUSTRY_BEAUTY = 1; //店铺行业:美业
const INDUSTRY_CATERING = 2; //店铺行业:餐饮
const INDUSTRY_ESHOP = 3; //店铺行业:电商
}
\ No newline at end of file
......@@ -29,15 +29,6 @@ interface SettingsInterface
public function getSettings(int $storeId);
/**
* 获取餐饮行业店铺的设置
*
* @Number(name="storeId")
* @param int $storeId
* @return array
*/
public function getCateringSettings(int $storeId);
/**
* 获取消息通知的开关设置项
*
* @param int $storeId
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment