194 lines
6.9 KiB
PHP
194 lines
6.9 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
||
// +----------------------------------------------------------------------
|
||
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
||
// | 开源版本可自由商用,可去除界面版权logo
|
||
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
||
// | github下载:https://github.com/likeshop-github/likeadmin
|
||
// | 访问官网:https://www.likeadmin.cn
|
||
// | likeadmin团队 版权所有 拥有最终解释权
|
||
// +----------------------------------------------------------------------
|
||
// | author: likeadminTeam
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\adminapi\logic\financial;
|
||
|
||
|
||
use app\common\logic\BaseLogic;
|
||
use app\common\model\dept\Dept;
|
||
use app\common\model\financial\FinancialFeeApplication;
|
||
use app\common\model\financial\FinancialTravelReimbursement;
|
||
use app\common\model\financial\FinancialTravelReimbursementDetail;
|
||
use think\facade\Db;
|
||
|
||
|
||
/**
|
||
* 财务管理--差旅费报销单逻辑
|
||
* Class FinancialTravelReimbursementLogic
|
||
* @package app\adminapi\logic\financial
|
||
*/
|
||
class FinancialTravelReimbursementLogic extends BaseLogic
|
||
{
|
||
|
||
|
||
/**
|
||
* @notes 添加财务管理--差旅费报销单
|
||
* @param array $params
|
||
* @return bool
|
||
* @author likeadmin
|
||
* @date 2024/03/28 14:23
|
||
*/
|
||
public static function add(array $params): bool
|
||
{
|
||
Db::startTrans();
|
||
try {
|
||
$res = FinancialTravelReimbursement::create([
|
||
'code' => data_unique_code('CLBX'),
|
||
'approve_dept' => $params['approve_dept'],
|
||
'cost_type' => $params['cost_type'],
|
||
'pay_type' => $params['pay_type'],
|
||
'tax_deductible_amount' => $params['tax_deductible_amount'] ?? 0,
|
||
'bill_num' => $params['bill_num'],
|
||
'fee_application_id' => $params['fee_application_id'] ?? 0,
|
||
'content' => $params['content'] ?? '',
|
||
'create_user' => $params['create_user'],
|
||
'create_time' => !empty($params['create_time']) ? strtotime($params['create_time']) : time(),
|
||
]);
|
||
if (!empty($params['detail'])) {
|
||
foreach ($params['detail'] as $v) {
|
||
FinancialTravelReimbursementDetail::create([
|
||
'travel_reimbursement_id' => $res->id,
|
||
'dept_id' => $v['dept_id'],
|
||
'date' => !empty($v['date']) ? strtotime($v['date']) : 0,
|
||
'address' => $v['address'],
|
||
'traffic_amount' => $v['traffic_amount'] ?? 0,
|
||
'stay_amount' => $v['stay_amount'] ?? 0,
|
||
'stay_days' => $v['stay_days'] ?? 0,
|
||
'stay_price' => $v['stay_price'] ?? 0,
|
||
'subsidy_days' => $v['subsidy_days'] ?? 0,
|
||
'subsidy_price' => $v['subsidy_price'] ?? 0,
|
||
'subsidy_amount' => $v['subsidy_amount'] ?? 0,
|
||
'subsidy_deduction' => $v['subsidy_deduction'] ?? 0,
|
||
'abstract' => $v['abstract'] ?? '',
|
||
]);
|
||
}
|
||
}
|
||
Db::commit();
|
||
return true;
|
||
} catch (\Exception $e) {
|
||
Db::rollback();
|
||
self::setError($e->getMessage());
|
||
return false;
|
||
}
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 编辑财务管理--差旅费报销单
|
||
* @param array $params
|
||
* @return bool
|
||
* @author likeadmin
|
||
* @date 2024/03/28 14:23
|
||
*/
|
||
public static function edit(array $params): bool
|
||
{
|
||
Db::startTrans();
|
||
try {
|
||
FinancialTravelReimbursement::where('id', $params['id'])->update([
|
||
'approve_dept' => $params['approve_dept'],
|
||
'cost_type' => $params['cost_type'],
|
||
'pay_type' => $params['pay_type'],
|
||
'tax_deductible_amount' => $params['tax_deductible_amount'] ?? 0,
|
||
'bill_num' => $params['bill_num'],
|
||
'fee_application_id' => $params['fee_application_id'] ?? 0,
|
||
'content' => $params['content'] ?? '',
|
||
'create_user' => $params['create_user'],
|
||
'create_time' => !empty($params['create_time']) ? strtotime($params['create_time']) : time(),
|
||
'update_time' => time(),
|
||
]);
|
||
if (!empty($params['detail'])) {
|
||
foreach ($params['detail'] as $v) {
|
||
if (!empty($v['id'])) {
|
||
FinancialTravelReimbursementDetail::where('id', $v['id'])->update([
|
||
'travel_reimbursement_id' => $params['id'],
|
||
'dept_id' => $v['dept_id'],
|
||
'date' => !empty($v['date']) ? strtotime($v['date']) : 0,
|
||
'address' => $v['address'],
|
||
'traffic_amount' => $v['traffic_amount'] ?? 0,
|
||
'stay_amount' => $v['stay_amount'] ?? 0,
|
||
'stay_days' => $v['stay_days'] ?? 0,
|
||
'stay_price' => $v['stay_price'] ?? 0,
|
||
'subsidy_days' => $v['subsidy_days'] ?? 0,
|
||
'subsidy_price' => $v['subsidy_price'] ?? 0,
|
||
'subsidy_amount' => $v['subsidy_amount'] ?? 0,
|
||
'subsidy_deduction' => $v['subsidy_deduction'] ?? 0,
|
||
'abstract' => $v['abstract'] ?? '',
|
||
'update_time' => time(),
|
||
]);
|
||
} else {
|
||
FinancialTravelReimbursementDetail::create([
|
||
'travel_reimbursement_id' => $params['id'],
|
||
'dept_id' => $v['dept_id'],
|
||
'date' => !empty($v['date']) ? strtotime($v['date']) : 0,
|
||
'address' => $v['address'],
|
||
'traffic_amount' => $v['traffic_amount'] ?? 0,
|
||
'stay_amount' => $v['stay_amount'] ?? 0,
|
||
'stay_days' => $v['stay_days'] ?? 0,
|
||
'stay_price' => $v['stay_price'] ?? 0,
|
||
'subsidy_days' => $v['subsidy_days'] ?? 0,
|
||
'subsidy_price' => $v['subsidy_price'] ?? 0,
|
||
'subsidy_amount' => $v['subsidy_amount'] ?? 0,
|
||
'subsidy_deduction' => $v['subsidy_deduction'] ?? 0,
|
||
'abstract' => $v['abstract'] ?? '',
|
||
]);
|
||
}
|
||
}
|
||
}
|
||
Db::commit();
|
||
return true;
|
||
} catch (\Exception $e) {
|
||
Db::rollback();
|
||
self::setError($e->getMessage());
|
||
return false;
|
||
}
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 删除财务管理--差旅费报销单
|
||
* @param array $params
|
||
* @return bool
|
||
* @author likeadmin
|
||
* @date 2024/03/28 14:23
|
||
*/
|
||
public static function delete(array $params): bool
|
||
{
|
||
$detail = FinancialTravelReimbursementDetail::where('travel_reimbursement_id', 'in', $params['id'])->findOrEmpty();
|
||
if (!$detail->isEmpty()) {
|
||
self::setError('此数据关联了报销明细信息,需删除报销明细信息');
|
||
return false;
|
||
}
|
||
return FinancialTravelReimbursement::destroy($params['id']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 获取财务管理--差旅费报销单详情
|
||
* @param $params
|
||
* @return array
|
||
* @author likeadmin
|
||
* @date 2024/03/28 14:23
|
||
*/
|
||
public static function detail($params): array
|
||
{
|
||
$data = FinancialTravelReimbursement::withoutField('update_time,delete_time')->findOrEmpty($params['id']);
|
||
$fee_application = FinancialFeeApplication::field('theme')->where('id', $data['fee_application_id'])->findOrEmpty();
|
||
$dept = Dept::field('name')->where('id', $data['approve_dept'])->findOrEmpty();
|
||
$data['fee_application_theme'] = !$fee_application->isEmpty() ? $fee_application['theme'] : '';
|
||
$data['approve_dept_name'] = $dept['name'];
|
||
$data['pay_type_text'] = $data->pay_type_text;
|
||
$data['cost_type_text'] = $data->cost_type_text;
|
||
return $data->toArray();
|
||
}
|
||
} |