|
|
@@ -33,10 +33,8 @@ class GhsClass extends BaseClass
|
|
|
}
|
|
|
$ghsShop = ShopClass::getShopInfo($ghsShopId);
|
|
|
$ghsSjId = $ghsShop['merchantId'] ?? 0;
|
|
|
- $ghsSj = SjClass::getById($ghsSjId);
|
|
|
- $name = $ghsSj['name'] . ' ' . $ghsShop['shopName'];
|
|
|
+ $name = $ghsShop['merchantName'] . ' ' . $ghsShop['shopName'];
|
|
|
$py = stringUtil::py($name);
|
|
|
-
|
|
|
$ghShop = ShopClass::getShopInfo($hdShopId);
|
|
|
$hdSjId = $ghShop['merchantId'] ?? 0;
|
|
|
|
|
|
@@ -58,11 +56,8 @@ class GhsClass extends BaseClass
|
|
|
'long' => $ghsShop['long'] ?? '',
|
|
|
];
|
|
|
$ghs = self::addGhs($data);
|
|
|
-
|
|
|
$shop = ShopClass::getShopInfo($hdShopId);
|
|
|
- $sjId = $shop['merchantId'] ?? 0;
|
|
|
- $sj = SjClass::getById($sjId);
|
|
|
- $name = $sj['name'] . ' ' . $shop['shopName'];
|
|
|
+ $name = $shop['merchantName'] . ' ' . $shop['shopName'];
|
|
|
$py = stringUtil::py($name);
|
|
|
$mobile = $shop['mobile'] ?? '';
|
|
|
$ghsId = $ghs['id'] ?? 0;
|