修复bug
This commit is contained in:
@@ -26,4 +26,22 @@ class DrugStoreRelations extends \common\modelsgii\DrugStoreRelations
|
||||
{
|
||||
return $this->hasOne(Store::class,['id' => 'store_id']);
|
||||
}
|
||||
|
||||
public static function inventory($params, $storeId)
|
||||
{
|
||||
$list = self::find()->with(['drugStoreDrug', 'drug'])->where(['store_id' => $storeId])->select([
|
||||
'drug_id',
|
||||
'price',
|
||||
])->asArray()->all();
|
||||
$result = [];
|
||||
foreach ($list as $k => $v) {
|
||||
$result[$k]['drug_id'] = $v['drug_id'];
|
||||
$result[$k]['drug_name'] = $v['drug']['drug_name'];
|
||||
$result[$k]['market_price'] = $v['drugStoreDrug']['market_price'];
|
||||
$result[$k]['test_price'] = $v['drugStoreDrug']['price'];
|
||||
$result[$k]['price'] = $v['price'];
|
||||
}
|
||||
return $result;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user