feat(beforehand_order): 添加审批记录功能并优化相关逻辑

- 在 BeforehandOrderLogic 中添加审批记录创建逻辑
- 更新 UserLogic 中的余额和预付款扣减逻辑
- 新增 BeforehandOrderRecord 模型用于存储审批记录
- 修改订单导出功能,调整预收金额和合计预收的显示逻辑
- 新增审批页面模板,支持审批操作和下载表格功能
This commit is contained in:
mkm 2024-11-06 15:46:53 +08:00
parent 3d05c5940f
commit f9cb852e37
9 changed files with 140 additions and 8 deletions

View File

@ -71,7 +71,7 @@ class BeforehandOrderCartInfoLists extends BaseAdminDataLists implements ListsSe
}
$list = BeforehandOrderCartInfo::where($this->searchWhere)
->field(['id', 'bhoid','package','store_info','marques','gross_weight','net_weight','accept_num','after_sales','loss', 'uid', 'is_buyer', 'buyer_uid', 'product_id', 'attr_value_id', 'purchase', 'price', 'total_price', 'cart_num', 'mark'])
->field(['id', 'bhoid','package','store_info','marques','gross_weight','net_weight','accept_num','after_sales','loss', 'uid','pay_price', 'is_buyer', 'buyer_uid', 'product_id', 'attr_value_id', 'purchase', 'price', 'total_price', 'cart_num', 'mark'])
->limit($this->limitOffset, $this->limitLength)
->order(['id' => 'desc'])
->select()->each(function ($item) use($system_store,$order_mark) {

View File

@ -58,7 +58,7 @@ class StoreOrderCartInfoGroupLists extends BaseAdminDataLists implements ListsSe
->field('product_id,price,SUM(total_price) as total_price,SUM(cart_num) as cart_num')->group('product_id')
->limit($this->limitOffset, $this->limitLength)
->select()->each(function ($item) {
$find=StoreProduct::where('id',$item['product_id'])->field('image,unit,cate_id,store_name,store_info')->find();
$find=StoreProduct::where('id',$item['product_id'])->field('image,unit,cate_id,store_name,store_info')->withTrashed()->find();
if($find){
$item['image']=$find['image'];//商品图片
$item['store_name']=$find['store_name'];//商品名称

View File

@ -59,7 +59,7 @@ class StoreOrderCartInfoGroupMonthLists extends BaseAdminDataLists implements Li
->order('cart_num desc')
->limit($this->limitOffset, $this->limitLength)
->select()->each(function ($item) {
$find=StoreProduct::where('id',$item['product_id'])->field('image,unit,cate_id,store_name,store_info')->find();
$find=StoreProduct::where('id',$item['product_id'])->field('image,unit,cate_id,store_name,store_info')->withTrashed()->find();
if($find){
$item['image']=$find['image'];//商品图片
$item['store_name']=$find['store_name'];//商品名称

View File

@ -76,7 +76,7 @@ class StoreOrderCartInfoTwoLists extends BaseAdminDataLists implements ListsSear
}
return $query->limit($this->limitOffset, $this->limitLength)
->select()->each(function ($item) use($is_group,$export){
$find = StoreProduct::where('id', $item['product_id'])->field('image,unit,cate_id,store_name,store_info')->find();
$find = StoreProduct::where('id', $item['product_id'])->field('image,unit,cate_id,store_name,store_info')->withTrashed()->find();
$item['nickname']='';
$item['mobile']='';
$item['order_id']='';

View File

@ -10,6 +10,7 @@ use app\common\model\beforehand_order\BeforehandOrder;
use app\common\logic\BaseLogic;
use app\common\model\auth\Admin;
use app\common\model\beforehand_order_cart_info\BeforehandOrderCartInfo;
use app\common\model\beforehand_order_record\BeforehandOrderRecord;
use app\common\model\purchase_product_offer\PurchaseProductOffer;
use app\common\model\store_branch_product\StoreBranchProduct;
use app\common\model\store_category\StoreCategory;
@ -105,6 +106,8 @@ class BeforehandOrderLogic extends BaseLogic
'order_type' => $order_type,
'other_data' => json_encode($params['other_data'], true)
]);
/** 添加审批记录 */
BeforehandOrderRecord::create(['oid'=>$order['id'],'step_id'=>1]);
$product_arr = [];
foreach ($datas as $k => $v) {
$datas[$k]['bhoid'] = $order['id'];
@ -515,6 +518,16 @@ class BeforehandOrderLogic extends BaseLogic
$res['top_cate'] = $arr?->toArray();
}
$res['system_store'] = SystemStore::where('id', $res['store_id'])->value('name');
$res['admin_name'] = Admin::where('id', $res['admin_id'])->value('name');
$record=BeforehandOrderRecord::where('oid',$params['id'])->order('id','desc')->find();
$res['step_id']=1;
if($record){
$res['step_id']=$record['step_id'];
if($record['check_user_id']>0){
$res['examine_name']=Admin::where('id',$record['check_user_id'])->value('name');
}
}
return $res;
}

View File

@ -247,7 +247,7 @@ class UserLogic extends BaseLogic
$find->save();
} else {
$capitalFlowDao->userExpense('system_purchase_dec', 'system', 0, $params['purchase_funds'],$params['mark']??'');
$find->purchase_funds = bcsub($params['purchase_funds'], $find['purchase_funds'], 2);
$find->purchase_funds = bcsub($find['purchase_funds'],$params['purchase_funds'], 2);
$find->save();
}
Db::commit();
@ -272,7 +272,7 @@ class UserLogic extends BaseLogic
$find->save();
} else {
$capitalFlowDao->userExpense('system_balance_reduce', 'system', 0, $params['now_money'],$params['mark']??'');
$find->now_money = bcsub($params['now_money'], $find['now_money'], 2);
$find->now_money = bcsub($find['now_money'],$params['now_money'], 2);
$find->save();
}
Db::commit();

View File

@ -0,0 +1,97 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>webman</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
}
.button-container {
display: flex;
flex-direction: column;
gap: 10px;
}
.button {
background-color: #007BFF;
color: white;
border: none;
padding: 15px 30px;
font-size: 16px;
cursor: pointer;
border-radius: 5px;
text-align: center;
width: 400px;
}
.buttons {
border: none;
padding: 15px 30px;
font-size: 16px;
cursor: pointer;
border-radius: 5px;
text-align: center;
width: 400px;
background-color: #c8c9ca;
}
.button:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="button-container">
<input class="buttons" placeholder="请填写识别码" />
<div class="button enter" >确认审批</div>
<div class="button dw">下载<?=htmlspecialchars($xlsx_name)?>表格</div>
</div>
<script>
const dw = document.querySelector('.dw');
dw.onclick = function () {
let form=new FormData();
form.append('id',"<?=htmlspecialchars($id)?>")
form.append('is_xlsx',"<?=htmlspecialchars($is_xlsx)?>")
fetch("/api/view_beforehand_order_record_enter", {
method: "POST",
body: form,
})
.then((response) => response.json())
.then((data) =>{
window.open(data.data.url, '_blank')
});
}
const enter = document.querySelector('.enter');
let form=new FormData();
form.append('id',"<?=htmlspecialchars($id)?>")
enter.onclick = function () {
form.append('check',document.querySelector('.buttons').value)
fetch("/api/view_beforehand_order_record_enter", {
method: "POST",
body: form,
})
.then((response) => response.json())
.then((data) =>{
if(data.code==1){
alert(data.msg)
}else{
alert(data.msg)
}
});
}
</script>
</body>
</html>

View File

@ -0,0 +1,22 @@
<?php
namespace app\common\model\beforehand_order_record;
use app\common\model\BaseModel;
use think\model\concern\SoftDelete;
/**
* 审批记录表模型
* Class BeforehandOrderRecord
* @package app\common\model\beforehand_order_record
*/
class BeforehandOrderRecord extends BaseModel
{
use SoftDelete;
protected $name = 'beforehand_order_record';
protected $deleteTime = 'delete_time';
}

View File

@ -74,10 +74,10 @@ class OrderOutbound
$sheet->setCellValue('A' . ($count + 5),'累计接单:');
$sheet->setCellValue('C' . ($count + 5),'预收金额:');
$sheet->setCellValue('D' . ($count + 5),$order['pay_price']==0?$order['total_price']:$order['pay_price']);
$sheet->setCellValue('D' . ($count + 5),$order['total_price']);
$sheet->setCellValue('E' . ($count + 5),'预收押金:');
$sheet->setCellValue('G' . ($count + 5),'合计预收:');
$sheet->setCellValue('H' . ($count + 5),$order['pay_price']==0?$order['total_price']:$order['pay_price']);
$sheet->setCellValue('H' . ($count + 5),$order['total_price']);
$sheet->setCellValue('A' . ($count + 6),'出库合计:');
$sheet->setCellValue('C' . ($count + 6),'出库金额:');