|
@@ -35,11 +35,11 @@ class TxAdqNewNoAdvBookController extends BaseController
|
|
->value('extra_config');
|
|
->value('extra_config');
|
|
if($extraConfig) {
|
|
if($extraConfig) {
|
|
$extraConfigDecode = \json_decode($extraConfig, true);
|
|
$extraConfigDecode = \json_decode($extraConfig, true);
|
|
- $bid = $extraConfigDecode['txAdqNoAdvBid'] ?? 0;
|
|
|
|
|
|
+ $bid = $extraConfigDecode['txAdqNoAdvBid'] ?? '';
|
|
$cid = $extraConfigDecode['txAdqNoAdvCid'] ?? 0;
|
|
$cid = $extraConfigDecode['txAdqNoAdvCid'] ?? 0;
|
|
if($bid) {
|
|
if($bid) {
|
|
return response()->success([
|
|
return response()->success([
|
|
- 'bid' => Hashids::encode($bid),
|
|
|
|
|
|
+ 'bid' => $bid,
|
|
'cid' => $cid,
|
|
'cid' => $cid,
|
|
]);
|
|
]);
|
|
}
|
|
}
|