198 lines
7.5 KiB
PHP
198 lines
7.5 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\expense;
|
||
|
||
|
||
use app\common\model\expense\ExpenseReimbursement;
|
||
use app\common\model\expense\ExpenseReimbursementDetail;
|
||
use app\common\model\expense\ExpenseReimbursementInvoiceDetail;
|
||
use app\common\logic\BaseLogic;
|
||
use think\facade\Db;
|
||
|
||
|
||
/**
|
||
* ExpenseReimbursement逻辑
|
||
* Class ExpenseReimbursementLogic
|
||
* @package app\adminapi\logic\expense
|
||
*/
|
||
class ExpenseReimbursementLogic extends BaseLogic
|
||
{
|
||
|
||
|
||
/**
|
||
* @notes 添加
|
||
* @param array $params
|
||
* @return bool
|
||
* @author likeadmin
|
||
* @date 2023/12/19 11:12
|
||
*/
|
||
public static function add(array $params): bool
|
||
{
|
||
Db::startTrans();
|
||
try {
|
||
$expenseReimbursement = ExpenseReimbursement::create([
|
||
'org_id' => $params['org_id'] ?? 0,
|
||
'dept_id' => $params['dept_id'] ?? 0,
|
||
'approve_id' => $params['approve_id'] ?? 0,
|
||
'reimburser' => $params['reimburser'] ?? '',
|
||
'reimbursement_date' => $params['reimbursement_date'] ?? '',
|
||
'customer_id' => $params['customer_id'] ?? 0,
|
||
'pay_type' => $params['pay_type'] ?? 0,
|
||
'reimbursement_amount' => $params['reimbursement_amount'] ?? 0,
|
||
'reimbursement_amount_daxie' => $params['reimbursement_amount_daxie'] ?? '',
|
||
'payee_name' => $params['payee_name'] ?? '',
|
||
'payee_bank' => $params['payee_bank'] ?? '',
|
||
'payee_account' => $params['payee_account'] ?? '',
|
||
'remark' => $params['remark'] ?? '',
|
||
'annex' => $params['annex'] ?? '',
|
||
]);
|
||
|
||
foreach ($params['detail'] ?? [] as $item)
|
||
{
|
||
ExpenseReimbursementDetail::create([
|
||
'expense_id' => $expenseReimbursement->id,
|
||
'cost_subject_id' => $item['cost_subject_id'] ?? 0,
|
||
'use_to' => $item['use_to'] ?? '',
|
||
'amount' => $item['amount'] ?? 0,
|
||
'remark' => $item['remark'] ?? ''
|
||
]);
|
||
}
|
||
|
||
foreach ($params['invoice'] ?? [] as $item)
|
||
{
|
||
ExpenseReimbursementInvoiceDetail::create([
|
||
'expense_id' => $expenseReimbursement->id,
|
||
'invoice_type' => $item['invoice_type'] ?? 0,
|
||
'invoice_sn' => $item['invoice_sn'] ?? '',
|
||
'tax_rate' => $item['tax_rate'] ?? 0,
|
||
'invoice_form' => $item['invoice_form'] ?? 0,
|
||
'amount' => $item['amount'] ?? 0,
|
||
'tax' => $item['tax'] ?? 0,
|
||
'annex' => $item['annex'] ?? '',
|
||
'remark' => $item['remark'] ?? ''
|
||
]);
|
||
}
|
||
|
||
Db::commit();
|
||
return true;
|
||
} catch (\Exception $e) {
|
||
Db::rollback();
|
||
self::setError($e->getMessage());
|
||
return false;
|
||
}
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 编辑
|
||
* @param array $params
|
||
* @return bool
|
||
* @author likeadmin
|
||
* @date 2023/12/19 11:12
|
||
*/
|
||
public static function edit(array $params): bool
|
||
{
|
||
Db::startTrans();
|
||
try {
|
||
ExpenseReimbursement::where('id', $params['id'])->update([
|
||
'org_id' => $params['org_id'] ?? 0,
|
||
'dept_id' => $params['dept_id'] ?? 0,
|
||
'approve_id' => $params['approve_id'] ?? 0,
|
||
'reimburser' => $params['reimburser'] ?? '',
|
||
'reimbursement_date' => $params['reimbursement_date'] ?? '',
|
||
'customer_id' => $params['customer_id'] ?? 0,
|
||
'pay_type' => $params['pay_type'] ?? 0,
|
||
'reimbursement_amount' => $params['reimbursement_amount'] ?? 0,
|
||
'reimbursement_amount_daxie' => $params['reimbursement_amount_daxie'] ?? '',
|
||
'payee_name' => $params['payee_name'] ?? '',
|
||
'payee_bank' => $params['payee_bank'] ?? '',
|
||
'payee_account' => $params['payee_account'] ?? '',
|
||
'remark' => $params['remark'] ?? '',
|
||
'annex' => $params['annex'] ?? '',
|
||
]);
|
||
ExpenseReimbursementDetail::where('expense_id', $params['id'])->update(['delete_time' => time()]);
|
||
ExpenseReimbursementInvoiceDetail::where('expense_id', $params['id'])->update(['delete_time' => time()]);
|
||
foreach ($params['detail'] ?? [] as $item)
|
||
{
|
||
ExpenseReimbursementDetail::where('expense_id', $params['id'])->update([
|
||
'expense_id' => $expenseReimbursement->id,
|
||
'cost_subject_id' => $item['cost_subject_id'] ?? 0,
|
||
'use_to' => $item['use_to'] ?? '',
|
||
'amount' => $item['amount'] ?? 0,
|
||
'remark' => $item['remark'] ?? ''
|
||
]);
|
||
}
|
||
|
||
foreach ($params['invoice'] ?? [] as $item)
|
||
{
|
||
ExpenseReimbursementInvoiceDetail::where('expense_id', $params['id'])->update([
|
||
'expense_id' => $expenseReimbursement->id,
|
||
'invoice_type' => $item['invoice_type'] ?? 0,
|
||
'invoice_sn' => $item['invoice_sn'] ?? '',
|
||
'tax_rate' => $item['tax_rate'] ?? 0,
|
||
'invoice_form' => $item['invoice_form'] ?? 0,
|
||
'amount' => $item['amount'] ?? 0,
|
||
'tax' => $item['tax'] ?? 0,
|
||
'annex' => $item['annex'] ?? '',
|
||
'remark' => $item['remark'] ?? ''
|
||
]);
|
||
}
|
||
|
||
Db::commit();
|
||
return true;
|
||
} catch (\Exception $e) {
|
||
Db::rollback();
|
||
self::setError($e->getMessage());
|
||
return false;
|
||
}
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 删除
|
||
* @param array $params
|
||
* @return bool
|
||
* @author likeadmin
|
||
* @date 2023/12/19 11:12
|
||
*/
|
||
public static function delete(array $params): bool
|
||
{
|
||
return ExpenseReimbursement::destroy($params['id']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 获取详情
|
||
* @param $params
|
||
* @return array
|
||
* @author likeadmin
|
||
* @date 2023/12/19 11:12
|
||
*/
|
||
public static function detail($params): array
|
||
{
|
||
$expenseReimbursement = ExpenseReimbursement::findOrEmpty($params['id']);
|
||
$expenseReimbursement->detail;
|
||
foreach ($expenseReimbursement->detail as &$item) {
|
||
$item->subject;
|
||
}
|
||
$expenseReimbursement->invoice;
|
||
$expenseReimbursement->custom;
|
||
$expenseReimbursement->org;
|
||
$expenseReimbursement->dept;
|
||
$expenseReimbursement->annex = json_decode($expenseReimbursement->annex, true);
|
||
unset($item);
|
||
return $expenseReimbursement->toArray();
|
||
}
|
||
} |