Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
J
Jz-Php
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
PHP
Jz-Php
Commits
a4621619
提交
a4621619
authored
2月 29, 2020
作者:
chengye
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
调整账单列表显示字段,添加本期表数,上期表数,并计算用电量
上级
39b092aa
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
20 行增加
和
5 行删除
+20
-5
EmInvoice.php
application/em/model/EmInvoice.php
+3
-1
index.html
application/em/view/invoice/index.html
+17
-4
没有找到文件。
application/em/model/EmInvoice.php
浏览文件 @
a4621619
...
...
@@ -33,13 +33,15 @@ class EmInvoice extends Base
$data
=
self
::
alias
(
'inv'
)
->
field
(
'inv.*'
)
->
field
(
'station.station_name,em.em_numb'
)
->
field
(
'eu.last_sum_numb,eu.current_sum_numb'
)
->
join
([
'em_invoice_useage'
=>
'eiu'
],
'eiu.invoice_id = inv.invoice_id'
)
->
join
([
'em_useage'
=>
'eu'
],
'eu.useage_id = eiu.useage_id'
)
->
join
([
'em_account'
=>
'ea'
],
'ea.account_id = inv.account_id'
)
->
join
([
'em'
],
'em.id=ea.em_id'
)
->
join
([
'station_info'
=>
'station'
],
'station.station_id=em.station_id'
)
->
where
(
$map
)
->
page
(
$Nowpage
,
$limits
)
->
order
(
'inv.id desc'
)
->
select
()
->
toarray
();
foreach
(
$data
as
&
$item
){
...
...
application/em/view/invoice/index.html
浏览文件 @
a4621619
...
...
@@ -47,10 +47,10 @@
<th
lay-data=
"{templet: '#invoice_id',sort: true} "
>
账单号
</th>
<th
lay-data=
"{field:'station_name',sort: true}"
>
所属基站名
</th>
<th
lay-data=
"{templet:'#em_numb',sort: true} "
>
所属电表号
</th>
<th
lay-data=
"{
field:'payment_amount'}"
>
应缴金额
</th>
<th
lay-data=
"{
field:'paid_amount'}"
>
已缴金额
</th>
<th
lay-data=
"{
field: 'settle_amount'}"
>
应结
金额
</th>
<th
lay-data=
"{
field:'sett_amount'}"
>
已结
金额
</th>
<th
lay-data=
"{
templet: '#useage'} "
>
抄表度数
</th>
<th
lay-data=
"{
templet: '#repo_numb'}"
>
用电量
</th>
<th
lay-data=
"{
templet:'#payment',sort: true}"
>
缴费
金额
</th>
<th
lay-data=
"{
templet:'#settle',sort: true}"
>
结算
金额
</th>
<th
lay-data=
"{field: 'status'}"
>
账单状态
</th>
<th
lay-data=
"{field: 'create_time',sort: true}"
>
创建时间
</th>
<!--<th lay-data="{fixed: 'right', align:'center', toolbar: '#barDemo'}">操作</th>-->
...
...
@@ -73,6 +73,19 @@
<script
type=
"text/html"
id=
"em_numb"
>
<
a
class
=
"layui-link"
title
=
"查看电表"
href
=
"/em_edit/{{d.em_id}}"
>
{{
d
.
em_numb
}}
<
/a
>
</script>
<script
type=
"text/html"
id=
"payment"
>
应缴
:
{{
d
.
payment_amount
}}
已缴
:{{
d
.
paid_amount
}}
</script>
<script
type=
"text/html"
id=
"settle"
>
应结
:
{{
d
.
settle_amount
}}
已结
:{{
d
.
sett_amount
}}
</script>
<script
type=
"text/html"
id=
"useage"
>
上期表数
:
{{
d
.
last_sum_numb
}}
本次表数
:{{
d
.
current_sum_numb
}}
</script>
<script
type=
"text/html"
id=
"repo_numb"
>
{{
d
.
current_sum_numb
-
d
.
last_sum_numb
}}
</script>
<script
type=
"text/javascript"
>
var
$list
=
new
Set
();
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论