Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
J
Jz-Php
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
PHP
Jz-Php
Commits
1916dbba
提交
1916dbba
authored
7月 21, 2020
作者:
chengye
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
test
上级
41009558
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
17 行增加
和
17 行删除
+17
-17
WriteOff.php
application/em/controller/WriteOff.php
+17
-17
没有找到文件。
application/em/controller/WriteOff.php
浏览文件 @
1916dbba
...
@@ -38,23 +38,25 @@ class WriteOff extends Controller
...
@@ -38,23 +38,25 @@ class WriteOff extends Controller
//查询可消的额度
//查询可消的额度
$payments_balance
=
$invModel
->
where
(
'invoice_id'
,
'in'
,
$invsArr
)
->
sum
(
'payment_balance'
);
$payments_balance
=
$invModel
->
where
(
'invoice_id'
,
'in'
,
$invsArr
)
->
sum
(
'payment_balance'
);
}
}
if
(
$payment
->
balance
>
$payments_balance
)
{
//如果可以完全销账 则继续销账
//如果可以完全销账 则继续销账
if
(
$payment
->
balance
>
$payments_balance
){
$invss
=
$invModel
->
field
(
'invoice_id'
)
$invs
=
$invModel
->
field
(
'invoice_id'
)
->
where
(
'account_id'
,
'='
,
$payment
->
account_id
)
->
where
(
'account_id'
,
'='
,
$payment
->
account_id
)
->
where
(
'payment_balance'
,
'neq'
,
0
)
->
where
(
'payment_balance'
,
'neq'
,
0
)
->
whereNotIn
(
'invoice_id'
,
$invsArr
)
->
whereNotIn
(
'invoice_id'
,
$invsArr
)
->
order
(
'invoice_id asc'
)
->
order
(
'invoice_id asc'
)
->
select
();
->
select
();
if
(
!
$inv
s
->
isEmpty
())
{
if
(
!
$invs
s
->
isEmpty
())
{
foreach
(
$invs
as
$inv
)
{
foreach
(
$invs
s
as
$inv
)
{
$invsArr
[]
=
$inv
->
invoice_id
;
$invsArr
[]
=
$inv
->
invoice_id
;
}
}
}
}
}
}
$paymentIds
[]
=
$payment
->
payment_id
;
$paymentIds
[]
=
$payment
->
payment_id
;
//销账日志
$logMsg
=
date
(
'Y-m-d H-i-s'
)
.
'paymentIds :'
.
implode
(
'-'
,
$paymentIds
)
.
'invoiceIds :'
.
implode
(
'-'
,
$invsArr
);
Log
::
info
(
$logMsg
);
//处理账户金额
//处理账户金额
return
$this
->
writeOff
(
$paymentIds
,
$invsArr
);
return
$this
->
writeOff
(
$paymentIds
,
$invsArr
);
}
}
...
@@ -122,10 +124,10 @@ class WriteOff extends Controller
...
@@ -122,10 +124,10 @@ class WriteOff extends Controller
Log
::
info
(
'执行销账:'
);
Log
::
info
(
'执行销账:'
);
//获取可销账缴费单
//获取可销账缴费单
$payments
=
EmPayment
::
where
(
'payment_id'
,
'in'
,
$paymentIds
)
->
select
();
$payments
=
EmPayment
::
where
(
'payment_id'
,
'in'
,
$paymentIds
)
->
order
(
'payment_id asc'
)
->
select
();
//获取可销账账单
//获取可销账账单
$invs
=
EmInvoice
::
where
(
'invoice_id'
,
'in'
,
$invoiceIds
)
->
select
();
$invs
=
EmInvoice
::
where
(
'invoice_id'
,
'in'
,
$invoiceIds
)
->
order
(
'invoice_id asc'
)
->
select
();
$result
=
0
;
$result
=
0
;
foreach
(
$payments
as
$key
=>
$payment
){
foreach
(
$payments
as
$key
=>
$payment
){
...
@@ -157,6 +159,11 @@ class WriteOff extends Controller
...
@@ -157,6 +159,11 @@ class WriteOff extends Controller
$payment
->
balance
=
0
;
$payment
->
balance
=
0
;
}
}
//更新账单状态
$inv
->
save
();
//更新缴费状态
$payment
->
save
();
//查找是否已经存在相关联的账单关系
//查找是否已经存在相关联的账单关系
$model
=
(
new
EmPaymentInvoice
())
->
where
([
'payment_id'
=>
$payment
->
payment_id
,
'invoice_id'
=>
$inv
->
invoice_id
])
->
find
();
$model
=
(
new
EmPaymentInvoice
())
->
where
([
'payment_id'
=>
$payment
->
payment_id
,
'invoice_id'
=>
$inv
->
invoice_id
])
->
find
();
if
(
!
$model
){
if
(
!
$model
){
...
@@ -167,14 +174,7 @@ class WriteOff extends Controller
...
@@ -167,14 +174,7 @@ class WriteOff extends Controller
}
}
$result
++
;
$result
++
;
//更新账单状态
$inv
->
save
();
//更新缴费状态
$payment
->
save
();
unset
(
$payments
[
$key
]);
$balanceMode
->
isUpdate
(
false
)
->
save
();
$balanceMode
->
isUpdate
(
false
)
->
save
();
$this
->
computerAmount
(
$inv
->
account_id
,
$balanceMode
->
balance
);
$this
->
computerAmount
(
$inv
->
account_id
,
$balanceMode
->
balance
);
}
}
}
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论