2022-08-06 15:25:13 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Services\Business\MiaoXuan;
|
|
|
|
|
|
2022-08-16 21:02:31 +08:00
|
|
|
use App\Models\BusinessGoodsSku;
|
2022-08-06 15:25:13 +08:00
|
|
|
use App\Services\Business\BusinessClient;
|
|
|
|
|
|
|
|
|
|
class MiaoXuan extends BusinessClient
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
public function auth()
|
|
|
|
|
{
|
|
|
|
|
// TODO: Implement auth() method.
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-29 11:29:48 +08:00
|
|
|
public function downloadGoodsListAndBind($activityNo)
|
2022-08-06 15:25:13 +08:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-06 16:38:04 +08:00
|
|
|
public function bindGoods($goods)
|
|
|
|
|
{
|
|
|
|
|
Goods::bindGoods($goods, $this->shop->id);
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-16 21:02:31 +08:00
|
|
|
public function incrQuantity($businessGoodsSku, $num, $incremental)
|
2022-08-06 15:25:13 +08:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-11 02:13:19 +08:00
|
|
|
public function downloadOrdersAndSave($beginTime, $endTime, $downloadType = 'default', $page = 1)
|
2022-08-06 15:25:13 +08:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-04 15:01:55 +08:00
|
|
|
public function batchIncrQuantity($businessGoodsSkus, $num, $incremental)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-08 18:53:38 +08:00
|
|
|
public function downloadGoods($skuId)
|
|
|
|
|
{
|
|
|
|
|
// TODO: Implement downloadGoods() method.
|
|
|
|
|
}
|
2023-08-28 13:42:27 +08:00
|
|
|
|
|
|
|
|
public function createLogistic($orderSn, $waybillNo)
|
|
|
|
|
{
|
|
|
|
|
// TODO: Implement createLogistic() method.
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function cancelLogistic($orderSn, $waybillNo)
|
|
|
|
|
{
|
|
|
|
|
// TODO: Implement cancelLogistic() method.
|
|
|
|
|
}
|
2022-08-06 15:25:13 +08:00
|
|
|
}
|