175 lines
6.1 KiB
PHP
175 lines
6.1 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\financial\FinancialExpenseReimbursement;
|
||
use app\common\model\financial\FinancialExpenseReimbursementDetail;
|
||
use app\common\model\financial\FinancialFeeApplication;
|
||
use app\common\model\marketing\MarketingContract;
|
||
use think\facade\Db;
|
||
|
||
|
||
/**
|
||
* 财务管理--费用报销单逻辑
|
||
* Class FinancialExpenseReimbursementLogic
|
||
* @package app\adminapi\logic\financial
|
||
*/
|
||
class FinancialExpenseReimbursementLogic extends BaseLogic
|
||
{
|
||
|
||
|
||
/**
|
||
* @notes 添加财务管理--费用报销单
|
||
* @param array $params
|
||
* @return bool
|
||
* @author likeadmin
|
||
* @date 2024/03/28 09:26
|
||
*/
|
||
public static function add(array $params): bool
|
||
{
|
||
Db::startTrans();
|
||
try {
|
||
$res = FinancialExpenseReimbursement::create([
|
||
'contract_id' => $params['contract_id'] ?? 0,
|
||
'fee_application_id' => $params['fee_application_id'] ?? 0,
|
||
'theme' => $params['theme'],
|
||
'code' => data_unique_code('FYBX'),
|
||
'bill_num' => $params['bill_num'],
|
||
'pay_type' => $params['pay_type'],
|
||
'content' => $params['content'],
|
||
'annex' => $params['annex'] ? json_encode($params['annex']) : null,
|
||
'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) {
|
||
FinancialExpenseReimbursementDetail::create([
|
||
'expense_reimbursement_id' => $res->id,
|
||
'dept_id' => $v['dept_id'],
|
||
'date' => !empty($v['date']) ? strtotime($v['date']) : 0,
|
||
'subject_name' => $v['subject_name'],
|
||
'amount' => $v['amount'],
|
||
'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 09:26
|
||
*/
|
||
public static function edit(array $params): bool
|
||
{
|
||
Db::startTrans();
|
||
try {
|
||
FinancialExpenseReimbursement::where('id', $params['id'])->update([
|
||
'contract_id' => $params['contract_id'] ?? 0,
|
||
'fee_application_id' => $params['fee_application_id'] ?? 0,
|
||
'theme' => $params['theme'],
|
||
'bill_num' => $params['bill_num'],
|
||
'pay_type' => $params['pay_type'],
|
||
'content' => $params['content'],
|
||
'annex' => $params['annex'] ? json_encode($params['annex']) : null,
|
||
'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'])) {
|
||
FinancialExpenseReimbursementDetail::where('id', $v['id'])->update([
|
||
'expense_reimbursement_id' => $params['id'],
|
||
'dept_id' => $v['dept_id'],
|
||
'date' => !empty($v['date']) ? strtotime($v['date']) : 0,
|
||
'subject_name' => $v['subject_name'],
|
||
'amount' => $v['amount'],
|
||
'abstract' => $v['abstract'],
|
||
'update_time' => time(),
|
||
]);
|
||
} else {
|
||
FinancialExpenseReimbursementDetail::create([
|
||
'expense_reimbursement_id' => $params['id'],
|
||
'dept_id' => $v['dept_id'],
|
||
'date' => !empty($v['date']) ? strtotime($v['date']) : 0,
|
||
'subject_name' => $v['subject_name'],
|
||
'amount' => $v['amount'],
|
||
'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 09:26
|
||
*/
|
||
public static function delete(array $params): bool
|
||
{
|
||
$detail = FinancialExpenseReimbursementDetail::where('expense_reimbursement_id', 'in', $params['id'])->findOrEmpty();
|
||
if (!$detail->isEmpty()) {
|
||
self::setError('此数据关联了报销明细信息,需删除报销明细信息');
|
||
return false;
|
||
}
|
||
return FinancialExpenseReimbursement::destroy($params['id']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 获取财务管理--费用报销单详情
|
||
* @param $params
|
||
* @return array
|
||
* @author likeadmin
|
||
* @date 2024/03/28 09:26
|
||
*/
|
||
public static function detail($params): array
|
||
{
|
||
$data = FinancialExpenseReimbursement::withoutField('update_time,delete_time')->findOrEmpty($params['id']);
|
||
$contract = MarketingContract::field('contract_name,contract_type')->where('id', $data['contract_id'])->findOrEmpty();
|
||
$fee_application = FinancialFeeApplication::field('theme')->where('id', $data['fee_application_id'])->findOrEmpty();
|
||
$data['contract_name'] = !$contract->isEmpty() ? $contract['contract_name'] : '';
|
||
$data['contract_type'] = !$contract->isEmpty() ? $contract['contract_type'] : 0;
|
||
$data['contract_type_text'] = !$contract->isEmpty() ? $contract->contract_type_text : '';
|
||
$data['fee_application_theme'] = !$fee_application->isEmpty() ? $fee_application['theme'] : '';
|
||
$data['pay_type_text'] = $data->pay_type_text;
|
||
$data['total_amount'] = FinancialExpenseReimbursementDetail::where('expense_reimbursement_id', $data['id'])->sum('amount');
|
||
return $data->toArray();
|
||
}
|
||
} |