### 裝箱單封箱保存唯一碼信息
**位置:**
Common\Lib\FlowLib.class.php
**參數:**
* @param $data array 裝箱單信息(如:訂單類型,訂單ID,裝箱單編號)
* @return array 裝箱返回的提示信息
**調用:**
* $flow = new FlowLib();
* $order_arr = $flow->boxClose($data);
**完整代碼:**
~~~
/**
* 掃描商品封箱
* @param $data array 封箱的商品信息
* @return array 返回查詢的商品信息
* whz 2018-01-30
*
*/
public function boxClose($data) {
$url = U('view',array('id' => $data['id']));
//1、沒有掃描商品不能封箱
if(count($data['nos']) == 0 || $data['nos'][0] == ''){
return array('success'=>false, 'code'=>201, 'msg'=>'沒有掃描商品,請掃描商品后再封箱');
}
//2、查詢訂單信息
$type = M('wms_flow')
->where(array('id' => $data['id']))
->find();
if (count($type) == 0) {
return array('success'=>false, 'code'=>202, 'msg'=>'訂單信息查詢失敗!');
}
//3、確認封箱生成裝箱單
$box_data = array(
'box_no' => $data['box_no'],
'num' => count($data['nos']),
'type' => $data['type'],
'order_id' => $data['id'],
'uid' => $_SESSION['userInfo']['id'],
'create_time' => time(),
'status' => 0 //裝箱單狀態:0、已封箱
);
M()->startTrans();
//往裝箱單表添加新封箱的裝箱單
$box_id = M("wms_box")->add($box_data);
if (!$box_id){
M()->rollback();
return array('success'=>false, 'code'=>202,'msg'=>'封箱生成裝箱單失敗,請重新掃描!');
}
//4、把掃的商品唯一碼添加到流通唯一碼表里面
foreach ($data['nos'] as $key => $value){
//查詢唯一碼信息
$no_arrs = M('goods_no')
->where(array('is_delete'=>0, 'no'=>$value))
->find();
if (count($no_arrs) == 0) {
M()->rollback();
return array('success'=>false, 'code'=>202, 'msg'=>'唯一碼信息查詢失敗!');
}
//唯一碼SKU的ID查詢
if ($type['type'] == 1) {
$goods_id = M('wms_sku')
->where(array('order_id'=>$data['id'],'sku_id'=>$no_arrs['sku_id']))
->find();
$goodsid = $goods_id['id'];
if (count($goods_id) == 0) {
M()->rollback();
return array('success'=>false, 'code'=>202, 'msg'=>'SKU信息查詢失敗!');
}
}else{
$goodsid = 0;
}
$no_data = array(
'no_id' => $no_arrs['id'],
'no' => $value,
'goods_id' => $goodsid,
'box_id' => $box_id,
'status' => 1, //商品狀態:1、已掃描
'uid' => $_SESSION['userInfo']['id'],
'create_time' => time(),
'is_delete' => 0,
'type' => $data['type'],
'order_id' => $data['id']
);
//添加掃描的商品插入流通唯一碼表
$edit_no = M('wms_no')
->add($no_data);
if (!$edit_no) {
M()->rollback();
return array('success'=>false, 'code'=>203, 'msg'=>'掃描的商品入箱出錯,請重新掃描!');
}
//5、改變唯一碼物流狀態
$edit_status = $this->deliveryStatus($data['type']);
$edit_delivert = M('goods_no')
->where(array('is_delete'=>0, 'no'=>$value))
->save(array('delivery_status'=>$edit_status[0]));
if ($edit_delivert === false) {
M()->rollback();
return array('success'=>false, 'code'=>203, 'msg'=>'掃描的唯一碼物流狀態改變出錯,請重新掃描!');
}
}
if ($type['type'] == 2) {
//改變訂單狀態
$order_status = M('wms_flow')
->where(array('id'=>$data['id']))
->save(array('status'=>1));
if ($order_status === false) {
M()->rollback();
return array('success'=>false, 'code'=>203, 'msg'=>'訂單狀態改變失敗!');
}
}
//6、生成日志記錄
$add_log['description'] = '裝箱單:' . $data['box_no'] . ' 生成成功!';
$add_log['order_id'] = $data['id'];
$add_log['type']= $data['type'];
$log_add = $this->addLog($add_log);
if (!$log_add) {
M()->rollback();
return array('success'=>false, 'code'=>204, 'msg'=>'日志信息記錄失敗!');
}
M()->commit();
return array('success'=>true, 'code'=>200, 'msg'=>'裝箱單:'. $data['box_no'] . ' 生成成功!', 'url'=>$url);
}
~~~
- 模版
- 前言
- 項目架構
- 項目規范
- 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
- 問題反饋