新增费用科目

This commit is contained in:
yaooo 2023-12-18 16:49:23 +08:00
parent 4b8e86eb8f
commit 5ddd8fc07b

View File

@ -128,6 +128,9 @@ class FinanceRefundApplyLogic extends BaseLogic
$financeRefundApply = FinanceRefundApply::findOrEmpty($params['id']);
$financeRefundApply->contract;
$financeRefundApply->custom;
$financeRefundApply->document = $financeRefundApply->contract->document;
$financeRefundApply->project = $financeRefundApply->document->project;
unset($financeRefundApply->contract->document, $financeRefundApply->document->project);
return $financeRefundApply->toArray();
}
}