Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
J
Jz-Php
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
PHP
Jz-Php
Commits
e153a5f0
提交
e153a5f0
authored
7月 21, 2020
作者:
chengye
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
test
上级
54ecc0ac
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
16 行增加
和
12 行删除
+16
-12
Payment.php
application/api/controller/v2/common/Payment.php
+1
-1
WriteOff.php
application/em/controller/WriteOff.php
+15
-11
没有找到文件。
application/api/controller/v2/common/Payment.php
浏览文件 @
e153a5f0
...
...
@@ -46,7 +46,7 @@ class Payment
$payment
->
status
=
$status
;
$payment
->
pay_date
=
time
();
$payment
->
save
();
$res
=
(
new
WriteOff
())
->
writeOffFromPayment
(
$payment
->
account_id
,
$payment
->
payment_id
);
$res
=
(
new
WriteOff
())
->
writeOffFromPayment
(
$payment
->
payment_id
);
Log
::
record
(
date
(
'Y-m-d H:i:s'
)
.
' OA单号:'
.
$numb
.
$res
);
}
...
...
application/em/controller/WriteOff.php
浏览文件 @
e153a5f0
...
...
@@ -19,8 +19,9 @@ class WriteOff extends Controller
//获取缴费单对象
$payment
=
EmPayment
::
where
(
'payment_id'
,
'='
,
$payment_id
)
->
find
();
$invModel
=
new
EmInvoice
();
//获取关联的账单对象
$invs
=
(
new
EmInvoice
())
->
alias
(
'a'
)
->
field
(
'a.invoice_id'
)
$invs
=
$invModel
->
alias
(
'a'
)
->
field
(
'a.invoice_id'
)
->
join
([
'em_payment_invoice'
=>
'b'
],
'b.invoice_id = a.invoice_id'
)
->
where
(
'b.payment_id'
,
'='
,
$payment_id
)
->
where
(
'a.payment_balance'
,
'neq'
,
0
)
...
...
@@ -28,19 +29,19 @@ class WriteOff extends Controller
->
select
();
$invsArr
=
[];
$payments_balance
=
0
;
//如果存在账单关联对象
if
(
!
$invs
->
isEmpty
()){
foreach
(
$invs
as
$inv
){
$invsArr
[]
=
$inv
->
invoice_id
;
}
}
//查询可消的额度
$payments_balance
=
(
new
EmInvoice
)
->
where
(
'invoice_id'
,
'in'
,
$invsArr
)
->
sum
(
'payment_balance'
);
$payments_balance
=
$invModel
->
where
(
'invoice_id'
,
'in'
,
$invsArr
)
->
sum
(
'payment_balance'
);
}
//如果可以完全销账 则继续销账
if
(
$payment
->
balance
>
$payments_balance
){
$invs
=
(
new
EmInvoice
())
->
field
(
'invoice_id'
)
$invs
=
$invModel
->
field
(
'invoice_id'
)
->
where
(
'account_id'
,
'='
,
$payment
->
account_id
)
->
where
(
'payment_balance'
,
'neq'
,
0
)
->
whereNotIn
(
'invoice_id'
,
$invsArr
)
...
...
@@ -53,9 +54,7 @@ class WriteOff extends Controller
}
}
$paymentIds
[]
=
$payment
->
payment_id
;
//处理账户金额
return
$this
->
writeOff
(
$paymentIds
,
$invsArr
);
}
...
...
@@ -171,13 +170,17 @@ class WriteOff extends Controller
unset
(
$payments
[
$key
]);
$balanceMode
->
isUpdate
(
false
)
->
save
();
//更新账户余额
$account
=
EmAccount
::
get
([
'account_id'
=>
$inv
->
account_id
]);
$account
->
amount
-=
$balanceMode
->
balance
;
$account
->
save
();
$this
->
computerAmount
(
$inv
->
account_id
,
$balanceMode
->
balance
);
}
}
$msg
=
$result
==
0
?
'已审核,没有可销账的账单.'
:
'已审核,成功销账 '
.
$result
.
' 笔账单.'
;
return
$msg
;
}
protected
function
computerAmount
(
$account_id
,
$balance
){
//更新账户余额
$account
=
EmAccount
::
get
([
'account_id'
=>
$account_id
]);
$account
->
amount
-=
$balance
;
$account
->
save
();
}
}
\ No newline at end of file
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论