|
@@ -15,7 +15,9 @@ class GoodCombind extends Model
|
|
|
protected $append=["usable_stock"];
|
|
|
|
|
|
public function getUsabelStockAttr($v,$row){
|
|
|
- return Good::where(["spuCode"=>$row['childCode']])->value("usable_stock",0);
|
|
|
+ return (new GoodStock())->withJoin(['wsminfo'] , 'left')
|
|
|
+ ->where(['spuCode'=>$row['childCode'] , 'wsm_type'=>[2 , 5]])
|
|
|
+ ->sum('usable_stock');
|
|
|
}
|
|
|
|
|
|
public function AddStock($spuCode='',$num="0"){
|