shop->id); } public function incrQuantity($businessGoodsSku, $num, $incremental) { $appendParams = Goods::incrQuantity($this->shop->id, $num, $businessGoodsSku); $url = 'http://shop.chutang66.com/miaoxuan/stock'; $this->formDataPostRequest($url, $appendParams); } public function downloadOrdersAndSave($beginTime, $endTime, $downloadType = 'default', $page = 1) { } public function batchIncrQuantity($businessGoodsSkus, $num, $incremental) { $batchAppendParams = []; foreach ($businessGoodsSkus as $businessGoodsSku) { $appendParams = Goods::incrQuantity($this->shop->id, $num, $businessGoodsSku); $batchAppendParams[] = $appendParams; } $this->batchAsyncPostRequest('http://shop.chutang66.com/miaoxuan/stock', $batchAppendParams); } public function downloadGoods($skuId) { // TODO: Implement downloadGoods() method. } }