Commit a7f73166 by feixiang

Merge remote-tracking branch 'origin/master'

parents 5217c189 1755ecae
...@@ -184,6 +184,7 @@ class User ...@@ -184,6 +184,7 @@ class User
{ {
$userInfo = []; $userInfo = [];
$userInfo['userInfo'][$key] = $value; $userInfo['userInfo'][$key] = $value;
RequestContext::removeContextDataByChildKey('userInfo', $key);
RequestContext::setContextData($userInfo); RequestContext::setContextData($userInfo);
} }
......
...@@ -15,7 +15,7 @@ use Swoft\Core\ResultInterface; ...@@ -15,7 +15,7 @@ use Swoft\Core\ResultInterface;
* method ResultInterface deferReduceBalance($sellerId, $money) * method ResultInterface deferReduceBalance($sellerId, $money)
* method ResultInterface deferAddTotal($sellerId, $money) * method ResultInterface deferAddTotal($sellerId, $money)
* method ResultInterface deferReduceTotal($sellerId, $money) * method ResultInterface deferReduceTotal($sellerId, $money)
* method ResultInterface deferListByOrderId($storeId, $orderId) * method ResultInterface deferListByOrderId($storeId, $orderId,$sellerId)
* Interface SellerDistributionInterface * Interface SellerDistributionInterface
* @package App\Lib * @package App\Lib
*/ */
...@@ -85,8 +85,9 @@ interface SellerDistributionInterface{ ...@@ -85,8 +85,9 @@ interface SellerDistributionInterface{
* 获取分销记录 * 获取分销记录
* @param $storeId * @param $storeId
* @param $orderId * @param $orderId
* @param $sellerId
* @return mixed * @return mixed
* @author Administrator * @author Administrator
*/ */
public function listByOrderId($storeId, $orderId); public function listByOrderId($storeId, $orderId,$sellerId);
} }
\ No newline at end of file
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