|
|
@@ -61,7 +61,7 @@ class PtAssetClass extends BaseClass
|
|
|
//零售平台余额对象 shish 20210519
|
|
|
public static function getHdBalance()
|
|
|
{
|
|
|
- $hd = dict::getDict('hdBalance');
|
|
|
+ $hd = dict::getDict('ptAsset', 'hdBalance');
|
|
|
$id = $hd['id'];
|
|
|
$name = $hd['name'];
|
|
|
$asset = self::getLockById($id);
|
|
|
@@ -79,7 +79,7 @@ class PtAssetClass extends BaseClass
|
|
|
//供货商平台余额对象 shish 20210519
|
|
|
public static function getGhsBalance()
|
|
|
{
|
|
|
- $ghs = dict::getDict('ghsBalance');
|
|
|
+ $ghs = dict::getDict('ptAsset', 'ghsBalance');
|
|
|
$id = $ghs['id'];
|
|
|
$name = $ghs['name'];
|
|
|
$asset = self::getLockById($id);
|
|
|
@@ -97,7 +97,7 @@ class PtAssetClass extends BaseClass
|
|
|
//零售平台余额对象 shish 20210519
|
|
|
public static function getHdTxBalance()
|
|
|
{
|
|
|
- $txHd = dict::getDict('hdTxBalance');
|
|
|
+ $txHd = dict::getDict('ptAsset', 'hdTxBalance');
|
|
|
$id = $txHd['id'];
|
|
|
$name = $txHd['name'];
|
|
|
$asset = self::getLockById($id);
|
|
|
@@ -115,7 +115,7 @@ class PtAssetClass extends BaseClass
|
|
|
//供货商平台余额对象 shish 20210519
|
|
|
public static function getGhsTxBalance()
|
|
|
{
|
|
|
- $txGhs = dict::getDict('ghsTxBalance');
|
|
|
+ $txGhs = dict::getDict('ptAsset', 'ghsTxBalance');
|
|
|
$id = $txGhs['id'];
|
|
|
$name = $txGhs['name'];
|
|
|
$asset = self::getLockById($id);
|