### 訂單的發貨
**位置:**
Common\Lib\FlowLib.class.php
**參數:**
* @param $id int 訂單ID
* @param $order_type int 訂單類型
* @return array 訂單發貨返回信息
**調用:**
* $flow = new FlowLib();
* $order_arr = $flow->orderOut($id, $order_type);
**完整代碼:**
~~~
/**
* 發貨單發貨
* @param $id int 訂單ID
* @param $order_type int 訂單類型
* @return array 返回檢查信息數組
* whz 2018-01-30
*
*/
public function orderOut($id, $order_type) {
//1、查詢訂單發起類型
$type_id = M('wms_flow')
->where(array('id' => $id))
->find();
$type = $type_id['type']; //1、商品部發起,2、倉庫發起
//2、商品部發起需要檢查SKU數量是否達到
$no_count = M('wms_no')
->where(array('order_id'=>$id, 'is_delete'=>0))
->count();
if ($no_count == 0) {
return array('success'=>false, 'code'=>201, 'msg'=>'沒有掃描唯一碼,請先掃描唯一碼!');
}
if ($type == 1) {
//查詢當前訂單下SKU需要配的數量
$sku_num = M('wms_flow as r')
->field('u.id as goods_id,u.num')
->join('coscia_wms_sku as u on r.id = u.order_id', 'left')
->where(array('r.id' => $id))
->select();
//循環判斷每一條SKU數量是否達標
foreach ($sku_num as $key => $value) {
$count = M('wms_no')
->where(array('goods_id'=>$value['goods_id'], 'is_delete'=>0))
->count();
//判斷SKU數量是否達到
if ($value['num'] > $count) {
$is_ok = 1; //只要有一個SKU沒有達到數量就就提示發貨數量不夠
if ($is_ok == 1) {
return array('success'=>false, 'code'=>201, 'msg'=>'發貨數量沒有達到,發貨失敗!');
}
}
}
}elseif ($type == 2) {
//自主新建訂單商品部是否已經審批通過
if ($type_id['status'] != 2) {
return array('success'=>false, 'code'=>201, 'msg'=>'訂單商品部未審批,發貨失敗!');
}
}
M()->startTrans();
//3、保存發貨人和時間到訂單
$data = array(
'out_uid' => $_SESSION['userInfo']['id'],
'out_time' => time(),
'status' => 5
);
$edit = M('wms_flow')
->where(array('id'=>$id))
->save($data);
if ($edit === false) {
M()->rollback();
return array('success'=>false, 'code'=>202, 'msg'=>'記錄發貨人和時間失敗!');
}
//4、發貨單發貨之后改變商品的物流狀態
$goods_arr = M('wms_no')
->field('no_id')
->where(array('order_id'=>$id, 'is_delete'=>0, 'status'=>1))
->select();
$delivery_status = $this->deliveryStatus($order_type);
//循環唯一碼表改變發貨的商品的狀態: 6、待收貨
foreach ($goods_arr as $key => $value){
$status = M('goods_no')
->where(array('id' => $value['no_id']))
->save(array('delivery_status'=>$delivery_status[1]));
if ($status === false) {
M()->rollback();
return array('success'=>false, 'code'=>203, 'msg'=>'發貨商品狀態改變失敗!');
}
}
//5、確認發貨記錄日志
$add_log['description'] = '發貨成功!';
$add_log['order_id'] = $id;
$add_log['type'] = $order_type;
$addlog = $this->addLog($add_log);
if(!$addlog){
M()->rollback();
return array('success'=>false, 'code'=>202,'msg'=>'日志記錄添加失敗!');
}
M()->commit();
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
- 問題反饋