From c39b32213618cf727a8bfff9ac96c84542d86d62 Mon Sep 17 00:00:00 2001 From: lyt Date: Sat, 28 Sep 2019 23:32:36 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9C=AA=E7=A1=AE=E8=AE=A4=E7=9A=84?= =?UTF-8?q?=E4=B8=8D=E5=90=8C=E6=AD=A5=E4=BD=86=E6=98=AF=E6=9B=B4=E6=96=B0?= =?UTF-8?q?=E6=97=B6=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../trippestOrderSync/controllers/TulanduoApi.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/webht/third_party/trippestOrderSync/controllers/TulanduoApi.php b/webht/third_party/trippestOrderSync/controllers/TulanduoApi.php index 493501b7..b43358e8 100644 --- a/webht/third_party/trippestOrderSync/controllers/TulanduoApi.php +++ b/webht/third_party/trippestOrderSync/controllers/TulanduoApi.php @@ -279,6 +279,12 @@ class TulanduoApi extends CI_Controller } if (strval($detail_jsonResp->orderDetail->orderStatus) !== '1') { echo "not confirm"; + /** groupcombineinfo */ + $this->Order_update->gci_where_update = " GCI_VendorOrderId='" . $detail_jsonResp->orderDetail->orderId . "' and GCI_VEI_SN in (" . implode(',', $this->vendor_ids) . ")"; // 不明确指定供应商id,出现过不对应的情况 + $gci_update_column = array( + "GCI_createTime" => date('Y-m-d H:i:s') + ); + $gci_info = $this->Order_update->biz_groupcombineinfo_update($gci_update_column); return; } /** HT 开始 */