### 扫描唯一码判断是否满足验收条件
**位置:**
Common\Lib\FlowLib.class.php
**参数:**
* @param $data array 订单信息(如:订单ID,扫描的唯一码,装箱单ID)
* @return array 验收返回提示信息
**调用:**
* $flow = new FlowLib();
* $order_arr = $flow->checkGoods($data);
**完整代码:**
~~~
/**
* 门店最终的验货扫描商品
* @param $data array 订单信息
* @return array 验收返回提示信息
* whz 2018-01-30
*
*/
public function checkGoods($data) {
M()->startTrans();
//1、根据装箱单ID查询扫的这件商品是否存在,如果存在进行验货操作
$no_info = M('wms_box as x')
->field('x.id,x.box_no,o.status')
->join('coscia_wms_no as o on x.id=o.box_id','left')
->where(array('o.no'=>$data['no'], 'x.id'=>$data['box_id'], 'x.type'=>$data['type'], 'x.order_id'=>$data['id'], 'o.is_delete'=>0))
->find();
//2、判断扫描唯一码信息在当前装箱单是否存在
if ($no_info) {
//查询配货门店信息
$shop_info = M('wms_flow')
->where(array('id' => $data['id']))
->find();
if (count($shop_info) == 0) {
return array('success'=>false, 'code'=>201, 'msg'=>'订单信息查找失败!');
}
//3、判断扫描唯一码是否已经验收
if ($no_info['status'] == 2) {
return array('success'=>false, 'code'=>202, 'msg'=>'扫描的商品在装箱单已经验收!');
} else {
//3、记录扫描商品的验收人和验收时间
$edit_data = array(
'status' => 2,
'in_uid' => $_SESSION['userInfo']['id'],
'in_time' => time()
);
$result = M('wms_no')
->where(array('no'=>$data['no'], 'box_id'=>$data['box_id'], 'is_delete'=>0))
->save($edit_data);
if ($result === false) {
M()->rollback();
return array('success'=>false, 'code'=>202, 'msg'=>'验收人和验收时间记录失败!');
}
//4、唯一码验收之后改变商品状态
if ($data['type'] == 1 || $data['type'] == 2) {
$shop_id = $shop_info['receive_id'];
$warehouse = 0;
$delivery_status = 2;
}
if ($data['type'] == 3 || $data['type'] == 4) {
$shop_id = 0;
$warehouse = $shop_info['receive_id'];
$delivery_status = 1;
}
$status = M('goods_no')
->where(array('no'=>$data['no'], 'is_delete'=>0))
->save(array('delivery_status'=>$delivery_status, 'warehouse'=>$warehouse, 'max_shops_id'=>$shop_id));
if ($status === false) {
M()->rollback();
return array('success'=>false, 'code'=>202, 'msg'=>'验收商品状态改变失败!');
}
M()->commit();
return array('success'=>true, 'code'=>200, 'msg'=>'扫描商品验收成功!');
}
} else {
return array('success'=>false, 'code'=>201, '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
- 问题反馈