|
|
@@ -3,6 +3,7 @@
|
|
|
namespace ghs\controllers;
|
|
|
|
|
|
use biz\set\classes\SetClass;
|
|
|
+use biz\sj\classes\SjClass;
|
|
|
use biz\sj\services\MerchantExtendService;
|
|
|
use biz\sj\services\MerchantService;
|
|
|
use bizGhs\shop\classes\RenewClass;
|
|
|
@@ -37,8 +38,11 @@ class RenewController extends BaseController
|
|
|
$staffId = $staff->id ?? 0;
|
|
|
$shopAdminName = $staff->name ?? '';
|
|
|
$shop = $this->shop;
|
|
|
+ $shopName = $shop->shopName ?? '';
|
|
|
$shopId = $shop->id ?? 0;
|
|
|
$sjId = $shop->sjId ?? 0;
|
|
|
+ $sj = SjClass::getById($sjId, true);
|
|
|
+ $sjName = $sj->name ?? '';
|
|
|
$mainId = $shop->mainId ?? 0;
|
|
|
$pfLevel = $shop->pfLevel ?? 0;
|
|
|
$deadline = $shop->deadline ?? '';
|
|
|
@@ -56,8 +60,10 @@ class RenewController extends BaseController
|
|
|
'shopAdminId' => $staffId,
|
|
|
'shopAdminName' => $shopAdminName,
|
|
|
'sjId' => $sjId,
|
|
|
+ 'sjName' => $sjName,
|
|
|
'mainId' => $mainId,
|
|
|
'shopId' => $shopId,
|
|
|
+ 'shopName' => $shopName,
|
|
|
'pfLevel' => $pfLevel,
|
|
|
'year' => $year,
|
|
|
'deadline' => $deadline,
|