145 lines
4.7 KiB
PHP
145 lines
4.7 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\bill;
|
||
|
||
|
||
use app\common\model\bill\TransferBill;
|
||
use app\common\logic\BaseLogic;
|
||
use think\facade\Db;
|
||
|
||
|
||
/**
|
||
* TransferBill逻辑
|
||
* Class TransferBillLogic
|
||
* @package app\adminapi\logic\bill
|
||
*/
|
||
class TransferBillLogic extends BaseLogic
|
||
{
|
||
|
||
|
||
/**
|
||
* @notes 添加
|
||
* @param array $params
|
||
* @return bool
|
||
* @author likeadmin
|
||
* @date 2023/12/20 10:14
|
||
*/
|
||
public static function add(array $params): bool
|
||
{
|
||
Db::startTrans();
|
||
try {
|
||
TransferBill::create([
|
||
'org_id' => $params['org_id'] ?? 0,
|
||
'dept_id' => $params['dept_id'] ?? 0,
|
||
'supplier_id' => $params['supplier_id'] ?? 0,
|
||
'procurement_contract_id' => $params['procurement_contract_id'] ?? 0,
|
||
'acceptance_bill_id' => $params['acceptance_bill_id'] ?? 0,
|
||
'payment_date' => $params['payment_date'] ?? '',
|
||
'amount' => $params['amount'] ?? 0,
|
||
'amount_daxie' => $params['amount_daxie'] ?? '',
|
||
'remark' => $params['remark'] ?? '',
|
||
'annex' => $params['annex'] ?? '',
|
||
]);
|
||
|
||
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/20 10:14
|
||
*/
|
||
public static function edit(array $params): bool
|
||
{
|
||
Db::startTrans();
|
||
try {
|
||
TransferBill::where('id', $params['id'])->update([
|
||
'org_id' => $params['org_id'] ?? 0,
|
||
'dept_id' => $params['dept_id'] ?? 0,
|
||
'supplier_id' => $params['supplier_id'] ?? 0,
|
||
'procurement_contract_id' => $params['procurement_contract_id'] ?? 0,
|
||
'acceptance_bill_id' => $params['acceptance_bill_id'] ?? 0,
|
||
'payment_date' => $params['payment_date'] ?? '',
|
||
'amount' => $params['amount'] ?? 0,
|
||
'amount_daxie' => $params['amount_daxie'] ?? '',
|
||
'remark' => $params['remark'] ?? '',
|
||
'annex' => $params['annex'] ?? '',
|
||
]);
|
||
|
||
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/20 10:14
|
||
*/
|
||
public static function delete(array $params): bool
|
||
{
|
||
return TransferBill::destroy($params['id']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 获取详情
|
||
* @param $params
|
||
* @return array
|
||
* @author likeadmin
|
||
* @date 2023/12/20 10:14
|
||
*/
|
||
public static function detail($params): array
|
||
{
|
||
$transferBill = TransferBill::findOrEmpty($params['id']);
|
||
$transferBill->org;
|
||
$transferBill->dept;
|
||
$transferBill->contract;
|
||
$transferBill->acceptance;
|
||
$transferBill->project = null;
|
||
$transferBill->custom = null;
|
||
$transferBill->bankAccount = null;
|
||
if (!empty($transferBill->contract->project)) {
|
||
$transferBill->project = $transferBill->contract->project;
|
||
unset($transferBill->contract->project);
|
||
}
|
||
if (!empty($transferBill->project->custom)) {
|
||
$transferBill->custom = $transferBill->project->custom;
|
||
unset($transferBill->project->custom);
|
||
}
|
||
if (!empty($transferBill->acceptance->bankAccount)) {
|
||
$transferBill->bankAccount = $transferBill->acceptance->bankAccount;
|
||
unset($transferBill->acceptance->bankAccount);
|
||
}
|
||
$transferBill->annex = json_decode($transferBill->annex, true);
|
||
return $transferBill->toArray();
|
||
}
|
||
} |