调整搜索条件以仅确认买家确认的订单
修改了PurchaseProductOfferLists类的setSearch方法,将搜索条件从空数组更改为只包含'buyer_confirm'字段。这确保了只有买家已确认的订单会在列表中显示。
This commit is contained in:
parent
9da525af64
commit
999ea58cee
@ -27,7 +27,7 @@ class PurchaseProductOfferLists extends BaseApiDataLists implements ListsSearchI
|
|||||||
public function setSearch(): array
|
public function setSearch(): array
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'=' => [],
|
'=' => ['buyer_confirm'],
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user