Commit 0e26ad3c by feixiang

未入账统计

parent 8090be93
...@@ -24,6 +24,7 @@ use Swoft\Core\ResultInterface; ...@@ -24,6 +24,7 @@ use Swoft\Core\ResultInterface;
* @method ResultInterface deferCollectionClose(int $storeId, int $orderId) * @method ResultInterface deferCollectionClose(int $storeId, int $orderId)
* @method ResultInterface deferGetOtherInfo(int $storeId, string $orderSn, array $consigneeFields = [], array $itemFields = []) * @method ResultInterface deferGetOtherInfo(int $storeId, string $orderSn, array $consigneeFields = [], array $itemFields = [])
* @method ResultInterface deferGetList(int $storeId,array $ids) * @method ResultInterface deferGetList(int $storeId,array $ids)
* @method ResultInterface deferUnconfirmedCount(int $storeId)
*/ */
interface OrderInterface interface OrderInterface
{ {
...@@ -229,4 +230,11 @@ interface OrderInterface ...@@ -229,4 +230,11 @@ interface OrderInterface
*/ */
public function getList(int $storeId,array $ids); public function getList(int $storeId,array $ids);
/**
* 统计核销
* @param int $storeId
* @return mixed
*/
public function unconfirmedCount(int $storeId);
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment