调整搜索条件以仅确认买家确认的订单

修改了PurchaseProductOfferLists类的setSearch方法,将搜索条件从空数组更改为只包含'buyer_confirm'字段。这确保了只有买家已确认的订单会在列表中显示。
This commit is contained in:
mkm 2024-10-10 17:29:17 +08:00
parent 9da525af64
commit 999ea58cee

View File

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