Merge pull request 'dev' (#252) from dev into main

Reviewed-on: https://gitea.lihaink.cn/mkm/multi-store/pulls/252
This commit is contained in:
mkm 2024-10-10 17:39:17 +08:00
commit 1e09de4212
2 changed files with 3 additions and 1 deletions

View File

@ -76,6 +76,8 @@ class WarehouseOrderLists extends BaseAdminDataLists implements ListsSearchInter
}
if ($item->supplier_id) {
$item->supplier_name = Supplier::where('id', $item->supplier_id)->value('mer_name');
}else{
$item->supplier_name = '';
}
})
->toArray();

View File

@ -27,7 +27,7 @@ class PurchaseProductOfferLists extends BaseApiDataLists implements ListsSearchI
public function setSearch(): array
{
return [
'=' => [],
'=' => ['buyer_confirm'],
];
}