### 寫入訂單日志
**位置:**
Common\Lib\OrderLib.class.php
**參數:**
* @param $sms_log
說明:
參數數組包含6個項
$sms_log['to_mobile'] = $moblie; // 接收手機
$sms_log['uid'] = $record['sale_uid']; // 接受用戶ID
$sms_log['cid'] = $record['cid']; // 接受用戶ID
$sms_log['type'] = $use; // 短信用途,8.客戶進入商城通知對應時尚顧問9.客戶在商城下單通知對應時尚顧問
$sms_log['send_status'] = 1; // 發送狀態
$sms_log['create_time'] = time(); // 時間戳
調用時根據需要組合$order_log數組
**調用:**
* 組件文件外調用
~~~
// 寫入短信發送日志
$sms_log['to_mobile'] = $moblie; // 接收手機
$sms_log['uid'] = $record['sale_uid']; // 接受用戶ID
$sms_log['type'] = $use; // 短信用途,8.客戶進入商城通知對應時尚顧問9.客戶在商城下單通知對應時尚顧問
$sms_log['send_status'] = 1; // 發送狀態 1成功 2失敗
$sms_log['create_time'] = time(); // 時間戳
$mall = new MallLib(); // 實例化商城組件庫
$res_sms_log = $mall->smsLog($sms_log);
if ($res_sms_log['success'] == false) {
M()->rollback();
$result = array('success' => false, 'code' => 5006, 'msg'=> '寫入發送短信日志失敗!');
return $result;
}
~~~
**返回:**
成功時返回
true
失敗時候返回
false
**完整代碼:**
~~~
/**
* 寫入CRM短信日志
* @param $order_log
* 參數數組包含6個項
* $sms_log['to_mobile'] 接收手機號
* $sms_log['uid'] 接收用戶ID
* $sms_log['cid'] 接收客戶ID
* $sms_log['type'] 短信類型8.客戶進入商城通知對應時尚顧問9.客戶在商城下單通知對應時尚顧問
* $sms_log['send_status'] 發送狀態
* $sms_log['create_time'] 發送時間
* 調用時根據需要組合$order_log數組
* @return bool
*/
public function smsLog($sms_log) {
if (empty($sms_log['to_mobile'])) {
return array('success' => false, 'code' => -1, 'msg'=> '接收手機號不能為空!');
}
if (empty($sms_log['type'])) {
return array('success' => false, 'code' => -2, 'msg'=> '短信類型不能為空!');
}
// 將日志數組信息插入訂單日志表
$res_log = M('sms_log')->add($sms_log);
if ($res_log === false) {
return array('success' => false, 'code' => -4, 'msg'=> '插入數據操作失敗!');
}
return array('success' => true, 'code' => 200, 'msg' => '日志插入成功!' );
}
~~~
~~~
- 模版
- 前言
- 項目架構
- 項目規范
- HTML
- CSS
- Javascript
- PHP
- MySQL
- 注意規范
- 開發版本管理
- 開發流程
- 系統配置
- 阿里云服務器配置
- 計劃任務配置說明
- 開發示例
- Page分頁
- Search_param搜索結果賦值
- Add新增
- Edit編輯
- Ajax表單驗證
- Ajax二級聯動
- Excel 導出數據首位不去0的方法
- POS總部控制
- 下載CSV格式的模板
- 訂單唯一碼表和訂單SKU表實收金額生成
- 快捷日期選擇
- JS函數
- ajax_send
- ajax_result
- createQrCodes
- createBarCodes
- printTpl
- JS插件
- BootstrapValidator表單驗證插件
- Address省市區插件
- Bootstrap-datepicker日期插件
- Bootstrap-select多選框插件
- Toastr消息提示插件
- PalyAudit掃描聲音提示插件
- WebUploader多圖片上傳插件
- Ueditor富文本編輯器插件
- Function
- alert
- object_to_array
- array_to_object
- get_address
- set_param_url
- get_shops_name
- get_user_name
- get_warehouse
- get_cheapest_sku
- print_attr(新)
- print_img(新)
- get_spu_no(新)
- get_type_name(新)
- get_brand_en(新)
- get_cat_name(新)
- get_attr_name(新)
- spu_cat_info(新)
- get_time_event_price
- get_vendors
- check_total_reduce
- check_total_discount
- get_inventory
- get_delivery
- get_sale_inventory
- get_customer_name
- phone_protection
- get_order_no
- get_event_name
- get_order_status
- get_item_status
- get_ditch_name
- get_card_no
- get_shop_sales
- get_pay_name
- get_season
- amt_format
- get_cat_parent
- print_attr_id
- round_bcadd
- round_bcsub
- round_bcmul
- round_bcdiv
- get_account_name
- Controller
- Common_BaseController
- check_membership_card
- get_menu_list
- importErrorMassage
- Wpos_IndexController
- get_customer_vip_card
- get_shops_id
- calculate_active_integral
- check_numbers_active
- check_goods_active
- Woms_IndexController
- Model
- View
- category
- cycle_date.html
- shop_select門店多選搜索框
- 品牌A-Z排序多選brand_mc.html
- 供應商代碼A-Z排序vendor_no_mc.html
- Lib
- BuyerLib
- WarehouseLib
- EventLib
- getTimeEventPrice
- getVipType
- getEvent
- orderTotalEvent
- orderTimeEvent
- getTotalReduce
- getTotalDiscount
- SaleLib
- CustomerLib
- addCustomerService
- GiftcardLib
- WechatLib
- wxRefund
- OrdersLib
- orderLog
- calculatePayinAmount
- calculateSubtotal
- correctPayinAmount
- saveOrderAddress
- getOrderAddress
- setDeliveryNo
- SyncLib
- updateOuterStock
- UserLib
- createCommission
- FlowLib
- orderList
- addOrder
- addLog
- orderInfo
- checkSku
- orderSave
- orderStop
- orderExecute
- skuEdit
- orderPrinta
- scanGoods
- boxClose
- orderOut
- take
- bview
- check
- deliveryStatus
- checkGoods
- GoodsLib
- createGoodsNo
- createNewGoodsNo
- getSystemStyleNo
- getDim
- MallLib
- smsLog
- GoodsBaseLib
- getBrandInfo
- getBrandsInfo
- getAttrIdArray
- getPrintAttr
- getMustAttr
- getCatIdInfo
- valTypeId
- valsTypeId
- getCatNoInfo
- getCatInfo
- getAttrArr
- getAttrInfo
- getValInfo
- getAttrId
- getValId
- getAttrSeaon
- getValueId
- PointsLog
- pointsIn
- pointsUp
- EcGoodsLib
- getSkuInventory
- Tools
- CsvTools
- csvImport
- csvExport
- ExcelTools
- importExcel
- exportExcel
- exportHeadExcel
- MailTools
- SmsTools
- sendMessage
- UploadTools
- ExportTools
- exportData
- TaobaoTools
- getOnsaleItems
- getSkusItems
- PicturesTools
- uploadPicture
- Plugins
- WxBase
- Taobao
- 問題反饋