|
@@ -1,15 +1,15 @@
|
|
<?php
|
|
<?php
|
|
namespace app\purchase\controller;
|
|
namespace app\purchase\controller;
|
|
-use app\common\model\BaseGoods;
|
|
|
|
-use app\common\model\BaseGoodsItem;
|
|
|
|
use app\common\model\OfflineOrderItem;
|
|
use app\common\model\OfflineOrderItem;
|
|
use app\common\model\SystemUser;
|
|
use app\common\model\SystemUser;
|
|
|
|
+use app\common\service\PurchaseLogic;
|
|
use library\tools\Data;
|
|
use library\tools\Data;
|
|
use think\Db;
|
|
use think\Db;
|
|
|
|
+use function AlibabaCloud\Client\value;
|
|
|
|
|
|
/**
|
|
/**
|
|
- * 销售订单管理
|
|
|
|
- * Class OfflineOrder
|
|
|
|
|
|
+ * 线下订单管理
|
|
|
|
+ * Class OfflineOrderRefund
|
|
* @package app\purchase\controller
|
|
* @package app\purchase\controller
|
|
*/
|
|
*/
|
|
class OfflineOrderRefund extends PurBase
|
|
class OfflineOrderRefund extends PurBase
|
|
@@ -22,7 +22,7 @@ class OfflineOrderRefund extends PurBase
|
|
protected $table = 'OfflineOrderRefund';
|
|
protected $table = 'OfflineOrderRefund';
|
|
|
|
|
|
/**
|
|
/**
|
|
- * 销售订单列表
|
|
|
|
|
|
+ * 线下订单列表
|
|
* @auth true
|
|
* @auth true
|
|
* @menu true
|
|
* @menu true
|
|
* @throws \think\Exception
|
|
* @throws \think\Exception
|
|
@@ -33,16 +33,19 @@ class OfflineOrderRefund extends PurBase
|
|
*/
|
|
*/
|
|
public function index()
|
|
public function index()
|
|
{
|
|
{
|
|
- $this->title = '销售订单列表';
|
|
|
|
|
|
+ $this->title = '线下订单列表';
|
|
$this->supplier = Db::name('Supplier')->where('is_deleted',0)->column('name','id');
|
|
$this->supplier = Db::name('Supplier')->where('is_deleted',0)->column('name','id');
|
|
$this->admin_arr =SystemUser::column('username','id');
|
|
$this->admin_arr =SystemUser::column('username','id');
|
|
$this->admin_arr[0] = 'admin';
|
|
$this->admin_arr[0] = 'admin';
|
|
$where = [];
|
|
$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();
|
|
|
|
|
|
+ $where[] = ['r.is_deleted','=',0];
|
|
|
|
+ $query = $this->_query($this->table)
|
|
|
|
+ ->field('r.*,o.employee_user')
|
|
|
|
+ ->alias('r')
|
|
|
|
+ ->leftJoin('OfflineOrder o','o.id = r.order_id')
|
|
|
|
+ ->where($where);
|
|
|
|
+ $query->like('r.order_num');
|
|
|
|
+ $query->order('r.id desc')->page();
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -56,53 +59,13 @@ class OfflineOrderRefund extends PurBase
|
|
*/
|
|
*/
|
|
protected function _index_page_filter(&$data)
|
|
protected function _index_page_filter(&$data)
|
|
{
|
|
{
|
|
- foreach ($data as &$v)
|
|
|
|
- {
|
|
|
|
- $v['list'] = OfflineOrderItem::where('order_id',$v['id'])->select()->toArray();
|
|
|
|
|
|
+ foreach ($data as &$v) {
|
|
|
|
+ $v['list'] = OfflineOrderItem::where('order_id',$v['order_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
|
|
* @auth true
|
|
* @menu true
|
|
* @menu true
|
|
* @throws \think\Exception
|
|
* @throws \think\Exception
|
|
@@ -113,12 +76,11 @@ class OfflineOrderRefund extends PurBase
|
|
*/
|
|
*/
|
|
public function audit()
|
|
public function audit()
|
|
{
|
|
{
|
|
- $this->title = '审核';
|
|
|
|
|
|
+ $this->title = '审核线下订单';
|
|
$this->_form($this->table, 'audit');
|
|
$this->_form($this->table, 'audit');
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
-
|
|
|
|
/**
|
|
/**
|
|
* 删除
|
|
* 删除
|
|
* @auth true
|
|
* @auth true
|
|
@@ -142,121 +104,28 @@ class OfflineOrderRefund extends PurBase
|
|
{
|
|
{
|
|
if($this->request->isGet()){
|
|
if($this->request->isGet()){
|
|
$this->supplier = Db::name('Supplier')->where('is_deleted',0)->column('name','id');
|
|
$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 = [];
|
|
$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']);
|
|
|
|
- }
|
|
|
|
|
|
+ if($this->request->isPost()) {
|
|
// 审核人id
|
|
// 审核人id
|
|
if($this->request->action() == 'audit') {
|
|
if($this->request->action() == 'audit') {
|
|
- $order_sh = \app\common\model\OfflineOrder::where('id',$data['id'])->value('sh_status');
|
|
|
|
- if($order_sh) $this->error('已审核通过,不能修改');
|
|
|
|
|
|
+ $order_sh = \app\common\model\OfflineOrderRefund::where('id',$data['id'])->value('sh_status');
|
|
|
|
+ if($order_sh == 1) $this->error('已审核通过,不能修改');
|
|
$data['audit_user'] = $this->admin_user['id'];
|
|
$data['audit_user'] = $this->admin_user['id'];
|
|
}
|
|
}
|
|
-
|
|
|
|
}
|
|
}
|
|
$data['create_at'] = date('Y-m-d H:i:s');
|
|
$data['create_at'] = date('Y-m-d H:i:s');
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
|
|
+
|
|
protected function _form_result($id)
|
|
protected function _form_result($id)
|
|
{
|
|
{
|
|
- // 审核通过
|
|
|
|
|
|
+ // 采购订单审核通过后创建线下管理订单
|
|
if($this->request->isPost() && $this->request->action() == 'audit') {
|
|
if($this->request->isPost() && $this->request->action() == 'audit') {
|
|
$sh_status = input('sh_status');
|
|
$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';
|
|
|
|
|
|
+ $res = PurchaseLogic::auditSupplierRefund($id,$sh_status,$this->request->post('remark'));
|
|
|
|
+ $res['code'] == 200 ? $this->success($res['msg']):$this->error($res['msg']);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|