Skip to content

Commit

Permalink
fix: 三态运费查询条件
Browse files Browse the repository at this point in the history
  • Loading branch information
forecho committed Jun 1, 2019
1 parent 49f8248 commit 4570586
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/platforms/SantaiPlatform.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public function getOrderFee(string $orderNumber): OrderFee
$client = $this->getClient();
$query = [
'code' => ltrim($orderNumber, 'SFC3'),
'startDate' => date('Y-m-d', strtotime("-30 days")),
'startDate' => date('Y-m-d', strtotime("-2 years")),
'endDate' => date('Y-m-d'),
];
$parameter = array_merge($this->getAuthParams(), ['orderFeeDetailRequestInfo' => $query]);
Expand Down

0 comments on commit 4570586

Please sign in to comment.