|
@@ -0,0 +1,263 @@
|
|
|
+<?php
|
|
|
+namespace app\purchase\controller;
|
|
|
+use app\common\model\BaseGoods;
|
|
|
+use app\common\model\BaseGoodsItem;
|
|
|
+use app\common\model\OfflineOrderItem;
|
|
|
+use app\common\model\SystemUser;
|
|
|
+use library\tools\Data;
|
|
|
+use think\Db;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 销售订单管理
|
|
|
+ * Class OfflineOrder
|
|
|
+ * @package app\purchase\controller
|
|
|
+ */
|
|
|
+class OfflineOrderRefund extends PurBase
|
|
|
+{
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 绑定数据表
|
|
|
+ * @var string
|
|
|
+ */
|
|
|
+ protected $table = 'OfflineOrderRefund';
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 销售订单列表
|
|
|
+ * @auth true
|
|
|
+ * @menu true
|
|
|
+ * @throws \think\Exception
|
|
|
+ * @throws \think\db\exception\DataNotFoundException
|
|
|
+ * @throws \think\db\exception\ModelNotFoundException
|
|
|
+ * @throws \think\exception\DbException
|
|
|
+ * @throws \think\exception\PDOException
|
|
|
+ */
|
|
|
+ public function index()
|
|
|
+ {
|
|
|
+ $this->title = '销售订单列表';
|
|
|
+ $this->supplier = Db::name('Supplier')->where('is_deleted',0)->column('name','id');
|
|
|
+ $this->admin_arr =SystemUser::column('username','id');
|
|
|
+ $this->admin_arr[0] = 'admin';
|
|
|
+ $where = [];
|
|
|
+ $where[] = ['is_deleted','=',0];
|
|
|
+ if($this->admin_authorize == 1) $where[] = ['employee_user','=',$this->admin_user['id']];
|
|
|
+ $query = $this->_query($this->table)->where($where);
|
|
|
+ $query->like('order_num');
|
|
|
+ $query->order('id desc')->page();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 数据列表处理
|
|
|
+ * @auth true
|
|
|
+ * @menu true
|
|
|
+ * @param array $data
|
|
|
+ * @throws \think\db\exception\DataNotFoundException
|
|
|
+ * @throws \think\db\exception\ModelNotFoundException
|
|
|
+ * @throws \think\exception\DbException
|
|
|
+ */
|
|
|
+ protected function _index_page_filter(&$data)
|
|
|
+ {
|
|
|
+ foreach ($data as &$v)
|
|
|
+ {
|
|
|
+ $v['list'] = OfflineOrderItem::where('order_id',$v['id'])->select()->toArray();
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 添加销售订单
|
|
|
+ * @auth true
|
|
|
+ * @menu true
|
|
|
+ * @throws \think\Exception
|
|
|
+ * @throws \think\db\exception\DataNotFoundException
|
|
|
+ * @throws \think\db\exception\ModelNotFoundException
|
|
|
+ * @throws \think\exception\DbException
|
|
|
+ * @throws \think\exception\PDOException
|
|
|
+ */
|
|
|
+ public function add()
|
|
|
+ {
|
|
|
+ $this->title = '添加';
|
|
|
+ $this->_form($this->table, 'form');
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 编辑销售订单
|
|
|
+ * @auth true
|
|
|
+ * @menu true
|
|
|
+ * @throws \think\Exception
|
|
|
+ * @throws \think\db\exception\DataNotFoundException
|
|
|
+ * @throws \think\db\exception\ModelNotFoundException
|
|
|
+ * @throws \think\exception\DbException
|
|
|
+ * @throws \think\exception\PDOException
|
|
|
+ */
|
|
|
+ public function edit()
|
|
|
+ {
|
|
|
+ $this->title = '编辑';
|
|
|
+ $this->_form($this->table, 'form');
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 销售订单审核
|
|
|
+ * @auth true
|
|
|
+ * @menu true
|
|
|
+ * @throws \think\Exception
|
|
|
+ * @throws \think\db\exception\DataNotFoundException
|
|
|
+ * @throws \think\db\exception\ModelNotFoundException
|
|
|
+ * @throws \think\exception\DbException
|
|
|
+ * @throws \think\exception\PDOException
|
|
|
+ */
|
|
|
+ public function audit()
|
|
|
+ {
|
|
|
+ $this->title = '审核';
|
|
|
+ $this->_form($this->table, 'audit');
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 删除
|
|
|
+ * @auth true
|
|
|
+ * @menu true
|
|
|
+ * @throws \think\Exception
|
|
|
+ * @throws \think\exception\PDOException
|
|
|
+ */
|
|
|
+ public function del()
|
|
|
+ {
|
|
|
+ $this->_save($this->table, ['is_deleted' => 1]);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 表单数据处理
|
|
|
+ * @auth true
|
|
|
+ * @menu true
|
|
|
+ * @param array $data
|
|
|
+ */
|
|
|
+ protected function _form_filter(&$data)
|
|
|
+ {
|
|
|
+ if($this->request->isGet()){
|
|
|
+ $this->supplier = Db::name('Supplier')->where('is_deleted',0)->column('name','id');
|
|
|
+ $this->goods_list = BaseGoods::where(['is_deleted'=>0])->order('sort desc ,id desc')->column('name','id');
|
|
|
+ $this->item_list = [];
|
|
|
+ if($this->request->action() == 'edit' || $this->request->action() == 'depot') {
|
|
|
+ $this->item_list = OfflineOrderItem::where(['order_id'=>$data['id']])->select()->toArray();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if($this->request->isPost())
|
|
|
+ {
|
|
|
+ // 录单人id
|
|
|
+ if(in_array($this->request->action(),['edit','add'])){
|
|
|
+ if(!empty($data['id'])) {
|
|
|
+ $order_sh = \app\common\model\OfflineOrder::where('id',$data['id'])->value('sh_status');
|
|
|
+ if($order_sh) $this->error('已审核通过,不能修改');
|
|
|
+ }
|
|
|
+ $data['employee_user'] = $this->admin_user['id'];
|
|
|
+ $data['goods_num'] = array_sum($data['num']);
|
|
|
+ }
|
|
|
+ // 审核人id
|
|
|
+ if($this->request->action() == 'audit') {
|
|
|
+ $order_sh = \app\common\model\OfflineOrder::where('id',$data['id'])->value('sh_status');
|
|
|
+ if($order_sh) $this->error('已审核通过,不能修改');
|
|
|
+ $data['audit_user'] = $this->admin_user['id'];
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ $data['create_at'] = date('Y-m-d H:i:s');
|
|
|
+ }
|
|
|
+
|
|
|
+ protected function _form_result($id)
|
|
|
+ {
|
|
|
+ // 审核通过
|
|
|
+ if($this->request->isPost() && $this->request->action() == 'audit') {
|
|
|
+ $sh_status = input('sh_status');
|
|
|
+ OfflineOrderItem::where(['order_id'=>$id])->update(['sh_status'=>$sh_status]);
|
|
|
+ }
|
|
|
+
|
|
|
+ if($this->request->isPost() && in_array($this->request->action(),['add','edit']))
|
|
|
+ {
|
|
|
+ list($post, $data) = [$this->request->post(), []];
|
|
|
+ if(!empty($post['item_id']))
|
|
|
+ {
|
|
|
+ foreach (array_keys($post['item_id']) as $key) {
|
|
|
+ $item_info = [
|
|
|
+ 'order_id' => $id,
|
|
|
+ 'goods_id' => $post['goods_id'],
|
|
|
+ 'spec_id' =>$post['item_id'][$key],
|
|
|
+ 'goods_spec' =>$post['goods_spec'][$key],
|
|
|
+ 'num' =>$post['num'][$key],
|
|
|
+ 'price' =>$post['price'][$key],
|
|
|
+ 'total_price' =>bcmul($post['num'][$key],$post['price'][$key],2),
|
|
|
+ ];
|
|
|
+ Data::save('OfflineOrderItem',$item_info,'order_id',['order_id' => $id, 'goods_id' => $post['goods_id'], 'spec_id' =>$post['item_id'][$key]]);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if($this->request->action() == 'audit' && $this->request->post('sh_status') == 1)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * ajax获取商品规格
|
|
|
+ * @auth true
|
|
|
+ * @menu true
|
|
|
+ */
|
|
|
+ public function goods_item()
|
|
|
+ {
|
|
|
+ if($this->request->isAjax()){
|
|
|
+ $goods_id= input('goods_id');
|
|
|
+ $item_list= BaseGoodsItem::where(['goods_id'=>$goods_id,'is_deleted'=>0])->order('sort desc ,id desc')->select()->toArray();
|
|
|
+ $this->success('ok',['list'=>$item_list]);
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 修改快递
|
|
|
+ * @auth true
|
|
|
+ * @throws \think\Exception
|
|
|
+ * @throws \think\db\exception\DataNotFoundException
|
|
|
+ * @throws \think\db\exception\ModelNotFoundException
|
|
|
+ * @throws \think\exception\DbException
|
|
|
+ * @throws \think\exception\PDOException
|
|
|
+ */
|
|
|
+ public function express()
|
|
|
+ {
|
|
|
+ if ($this->request->isGet()) {
|
|
|
+ $where = ['is_deleted' => '0', 'status' => '1'];
|
|
|
+ $this->expressList = Db::name('express_company')->where($where)->order('sort desc,id desc')->select();
|
|
|
+ }
|
|
|
+ $this->_form($this->table);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 快递表单处理
|
|
|
+ * @param array $vo
|
|
|
+ * @throws \think\db\exception\DataNotFoundException
|
|
|
+ * @throws \think\db\exception\ModelNotFoundException
|
|
|
+ * @throws \think\exception\DbException
|
|
|
+ */
|
|
|
+ protected function _express_form_filter(&$vo)
|
|
|
+ {
|
|
|
+ if ($this->request->isPost()) {
|
|
|
+ $order = Db::name($this->table)->where(['id' => $vo['id']])->find();
|
|
|
+ if (empty($order)) $this->error('订单查询异常,请稍候再试!');
|
|
|
+ $express = Db::name('express_company')->where(['express_code' => $vo['express_company_code']])->find();
|
|
|
+ if (empty($express)) $this->error('发货快递公司异常,请重新选择快递公司!');
|
|
|
+ $vo['express_company_title'] = $express['express_title'];
|
|
|
+ $vo['express_send_at'] = empty($order['express_send_at']) ? date('Y-m-d H:i:s') : $order['express_send_at'];
|
|
|
+ $vo['express_state'] = '1';
|
|
|
+ $vo['status'] = '1';
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+}
|