Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
J
Jz-Php
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
PHP
Jz-Php
Commits
7abe5752
提交
7abe5752
authored
2月 16, 2020
作者:
chengye
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
缴费单审核不触发销账
上级
ad2df8e1
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
5 行增加
和
3 行删除
+5
-3
Invoice.php
application/em/controller/Invoice.php
+2
-0
Useage.php
application/em/controller/Useage.php
+3
-3
Invoice.php
application/em/model/Invoice.php
+0
-0
没有找到文件。
application/em/controller/Invoice.php
浏览文件 @
7abe5752
...
@@ -259,6 +259,8 @@ class Invoice extends Base
...
@@ -259,6 +259,8 @@ class Invoice extends Base
->
where
(
'epi.invoice_id'
,
'='
,
$invoice_id
)
->
select
();
->
where
(
'epi.invoice_id'
,
'='
,
$invoice_id
)
->
select
();
//如果没有找到记录 证明并没有形成对应关系
//如果没有找到记录 证明并没有形成对应关系
if
(
$payments
->
isEmpty
())
{
if
(
$payments
->
isEmpty
())
{
//查询是否有未缴费的缴费单存在
$payments
=
EmPayment
::
field
(
'payment_id'
)
->
where
(
'account_id'
,
'='
,
$account_id
)
$payments
=
EmPayment
::
field
(
'payment_id'
)
->
where
(
'account_id'
,
'='
,
$account_id
)
->
where
(
'balance'
,
'neq'
,
0
)
->
where
(
'balance'
,
'neq'
,
0
)
->
order
(
'payment_id asc'
)
->
order
(
'payment_id asc'
)
...
...
application/em/controller/Useage.php
浏览文件 @
7abe5752
...
@@ -197,9 +197,9 @@ class Useage extends Base
...
@@ -197,9 +197,9 @@ class Useage extends Base
$useage
->
save
();
$useage
->
save
();
//触发销账逻辑
//触发销账逻辑
$result
=
(
new
Invoice
())
->
writeOffFromInvoice
(
$inv
->
invoice_id
,
$inv
->
account_id
);
//
$result = (new Invoice())->writeOffFromInvoice($inv->invoice_id,$inv->account_id);
return
json
([
'status'
=>
1
,
'message'
=>
"已审核,并生成账单,
$result
"
]);
//
return json(['status'=>1,'message'=>"已审核,并生成账单,$result"]);
return
json
([
'status'
=>
1
,
'message'
=>
"已审核,并生成账单"
]);
}
}
//获取单号
//获取单号
...
...
application/em/model/Invoice.php
deleted
100644 → 0
浏览文件 @
ad2df8e1
差异被折叠。
点击展开。
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论