### 订单的打回或终止
**位置:**
Common\Lib\FlowLib.class.php
**参数:**
* @param $data array 订单信息(如:订单类型,订单ID,备注信息)
* @param $type int 打回或终止
* @return bool 订单打回或终止返回提示信息
**调用:**
* $flow = new FlowLib();
* $order_arr = $flow->orderStop($data, $type);
**完整代码:**
~~~
/**
* 订单的打回或终止
* @param $data array 订单信息
* @param $type int 操作类型:1、打回,2、终止
* @return int 打回订单返回类型
* whz 2018-01-25
*
*/
public function orderStop($data, $type) {
M()->startTrans();
//1、查询之前是否有备足信息(因为备注公用一个字段,需要注意下样式换行)
$remarkarr = M('wms_flow')
->field('remark')
->where(array('id'=>$data['id']))
->find();
//2、打回订单备注信息
if ($type == 1) {
if (!empty($remarkarr['remark'])) {
$remarks = $remarkarr['remark'] . '<br/>打回订单备注:' . $data['remark'];
} else {
$remarks = '打回订单备注:' . $data['remark'];
}
$datas = array(
'id' => $data['id'],
'status' => 3,
'remark' => $remarks
);
$msg = '打回失败!';
$description = '打回订单成功!';
}
//3、终止订单备注信息
if ($type == 2) {
if (!empty($remarkarr['remark'])) {
$remarks = $remarkarr['remark'] . '<br/>终止订单备注:' . $data['remark'];
} else {
$remarks = '终止订单备注:' . $data['remark'];
}
$datas = array(
'id' => $data['id'],
'status' => 4,
'remark' => $remarks
);
$msg = '终止失败!';
$description = '终止订单成功!';
}
//4、改变订单状态
$res = M('wms_flow')->save($datas);
if ($res === false) {
M()->rollback();
return array('success'=>false, 'code'=>204, 'msg'=>$msg);
}
//5、打回订单,sku伪删除
$sku_id = M('wms_flow as r')
->field('u.id')
->join('coscia_wms_sku as u on r.id=u.order_id','left')
->where(array('r.id'=>$data['id'], 'u.is_delete'=>0))
->select();
if (count($sku_id) > 0) {
foreach ($sku_id as $k => $v) {
$sku_delete = M('wms_sku')
->where(array('id'=>$v['id']))
->save(array('is_delete'=>1));
if ($sku_delete === false) {
M()->rollback();
return array('success'=>false, 'code'=>204, 'msg'=>'SKU伪删除失败!');
}
}
}
//6、打回订单,唯一码伪删除
$no_id = M('wms_flow as r')
->field('u.id,u.no_id,u.type')
->join('coscia_wms_no as u on r.id=u.order_id','left')
->where(array('u.type'=>$data['order_type'], 'r.id'=>$data['id'], 'u.is_delete'=>0))
->select();
if (count($no_id) > 0) {
foreach ($no_id as $kk => $vv) {
$no_delete = M('wms_no')
->where(array('id'=>$vv['id']))
->save(array('is_delete'=>1));
if ($no_delete === false) {
M()->rollback();
return array('success'=>false, 'code'=>204, 'msg'=>'唯一码伪删除失败!');
}
//7、还原唯一码状态
if ($vv['type'] == 1 || $vv['type'] == 4) {
$delivery = 1;
}
if ($vv['type'] == 2 || $vv['type'] == 3) {
$delivery = 2;
}
$edit_no = M('goods_no')
->where(array('id'=>$vv['no_id']))
->save(array('delivery_status'=>$delivery));
if ($edit_no === false) {
M()->rollback();
return array('success'=>false, 'code'=>202, 'msg'=>'唯一码物流状态改变失败!');
}
}
}
//7、记录打回订单日志
$add_log['description'] = $description;
$add_log['order_id'] = $data['id'];
$add_log['type'] = $data['order_type'];
$ress = $this->addLog($add_log);
if (!$ress) {
M()->rollback();
return array('success'=>false, 'code'=>207, 'msg'=>'日志录入失败!');
}
M()->commit();
return array('success'=>true, 'code'=>200, 'msg'=>$description);
}
~~~
- 模版
- 前言
- 项目架构
- 项目规范
- 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
- 问题反馈