|
@@ -2,6 +2,7 @@
|
|
|
|
|
|
|
|
namespace common\services;
|
|
namespace common\services;
|
|
|
|
|
|
|
|
|
|
+use biz\shop\classes\ShopAdminClass;
|
|
|
use bizGhs\order\classes\OrderSendClass;
|
|
use bizGhs\order\classes\OrderSendClass;
|
|
|
use bizHd\coupon\classes\CouponClass;
|
|
use bizHd\coupon\classes\CouponClass;
|
|
|
use bizHd\merchant\classes\ShopClass;
|
|
use bizHd\merchant\classes\ShopClass;
|
|
@@ -385,6 +386,10 @@ class xhPayToolService
|
|
|
|
|
|
|
|
$transaction->commit();
|
|
$transaction->commit();
|
|
|
|
|
|
|
|
|
|
+ $shopId = $order['shopId'] ?? 0;
|
|
|
|
|
+ $money = $order['actPrice'] ?? 0.00;
|
|
|
|
|
+ ShopAdminClass::incomeNotice($shopId, $money, 0);
|
|
|
|
|
+
|
|
|
//如果是小程序支付可以获取unionId并进行更新关联
|
|
//如果是小程序支付可以获取unionId并进行更新关联
|
|
|
if ($payWay == $wxWay && $wxPayType == 1) {
|
|
if ($payWay == $wxWay && $wxPayType == 1) {
|
|
|
//OrderClass::payToUpdateUnionId($merchant, $merchantExtend, $orderSn, $user);
|
|
//OrderClass::payToUpdateUnionId($merchant, $merchantExtend, $orderSn, $user);
|