sale-client 4.3.21 → 4.3.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.gradle/5.2.1/fileHashes/fileHashes.lock +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +1 -1
- package/CHANGELOG.md +3 -0
- package/build/dev-server.js +1 -1
- package/package.json +1 -1
- package/src/components/common/searchuploadfile/uploadFilesHistory.vue +277 -150
- package/src/filiale/fugou/GasPriceUser.vue +533 -0
- package/src/filiale/fugou/sale.js +2 -0
- package/src/filiale/hongYa/components/charge/ChargeList.vue +6 -6
- package/src/filiale/hongYa/revenue/base/leftview/meterinfodetail.vue +491 -0
- package/src/filiale/hongYa/sale.js +2 -0
- package/src/filiale/meihekou/common/userinfo_detail/UserInfoDetailManageNew.vue +4 -7
- package/src/filiale/meihekou/common/userinfo_detail/ic_detail/CardHandRecord.vue +308 -0
- package/src/filiale/meihekou/common/userinfo_detail/ic_detail/ChargeQueryUser.vue +592 -0
- package/src/filiale/meihekou/common/userinfo_detail/ic_detail/RecordQueryUser.vue +69 -22
- package/.gradle/6.7/fileHashes/fileHashes.lock +0 -0
- package/.gradle/checksums/checksums.lock +0 -0
- package/.gradle/configuration-cache/gc.properties +0 -0
- /package/.gradle/{6.7 → 5.2.1}/fileChanges/last-build.bin +0 -0
- /package/.gradle/{6.7 → 5.2.1}/gc.properties +0 -0
|
@@ -60,37 +60,66 @@
|
|
|
60
60
|
<template partial='head'>
|
|
61
61
|
<tr>
|
|
62
62
|
<th><nobr>用户编号</nobr></th>
|
|
63
|
-
<th><nobr
|
|
64
|
-
<th><nobr
|
|
63
|
+
<th><nobr>用户姓名</nobr></th>
|
|
64
|
+
<th><nobr>用户电话</nobr></th>
|
|
65
|
+
<th><nobr>用户表号</nobr></th>
|
|
66
|
+
<th><nobr>用户地址</nobr></th>
|
|
67
|
+
|
|
65
68
|
<th><nobr>卡号</nobr></th>
|
|
66
69
|
<th><nobr>气量</nobr></th>
|
|
67
70
|
<th><nobr>应交</nobr></th>
|
|
68
|
-
<th><nobr>上期结余</nobr></th>
|
|
69
71
|
<th><nobr>收款</nobr></th>
|
|
70
|
-
<th><nobr>本期结余</nobr></th>
|
|
71
72
|
<th><nobr>操作类型</nobr></th>
|
|
72
|
-
|
|
73
|
-
<th><nobr
|
|
74
|
-
<th><nobr
|
|
73
|
+
|
|
74
|
+
<th><nobr>操作时间</nobr></th>
|
|
75
|
+
<th><nobr>操作员</nobr></th>
|
|
76
|
+
<th><nobr>状态</nobr></th>
|
|
75
77
|
<th><nobr>备注</nobr></th>
|
|
78
|
+
<th><nobr>上期底数</nobr></th>
|
|
79
|
+
|
|
80
|
+
<th><nobr>本期底数</nobr></th>
|
|
81
|
+
<th><nobr>上期结余</nobr></th>
|
|
82
|
+
<th><nobr>本期结余</nobr></th>
|
|
83
|
+
<th><nobr>阶梯一金额</nobr></th>
|
|
84
|
+
<th><nobr>阶梯二金额</nobr></th>
|
|
85
|
+
|
|
86
|
+
<th><nobr>阶梯三金额</nobr></th>
|
|
87
|
+
<th><nobr>阶梯一气量</nobr></th>
|
|
88
|
+
<th><nobr>阶梯二气量</nobr></th>
|
|
89
|
+
<th><nobr>阶梯三气量</nobr></th>
|
|
90
|
+
|
|
76
91
|
</tr>
|
|
77
92
|
</template>
|
|
78
93
|
<template partial='body' partial='list' v-ref:grid>
|
|
79
94
|
<tr >
|
|
80
|
-
<td style="text-align:center">{{row.f_userinfo_code}}</td>
|
|
81
|
-
<td style="text-align:center">{{row.f_user_name}}</td>
|
|
82
|
-
<td style="text-align:center">{{row.
|
|
83
|
-
<td style="text-align:center">{{row.
|
|
84
|
-
<td style="text-align:center">{{row.
|
|
85
|
-
|
|
86
|
-
<td style="text-align:center;
|
|
87
|
-
<td style="text-align:center">{{row.
|
|
88
|
-
<td style="text-align:center;
|
|
89
|
-
<td style="text-align:center">{{row.
|
|
90
|
-
<td style="text-align:center">{{row.
|
|
91
|
-
|
|
92
|
-
<td style="text-align:center">{{row.
|
|
93
|
-
<td style="text-align:center">{{row.
|
|
95
|
+
<td style="text-align: center;"><nobr>{{row.f_userinfo_code}}</nobr></td>
|
|
96
|
+
<td style="text-align: center;"><nobr>{{row.f_user_name}}</nobr></td>
|
|
97
|
+
<td style="text-align: center;"><nobr>{{row.f_user_phone}}</nobr></td>
|
|
98
|
+
<td style="text-align: center;"><nobr>{{row.f_meternumber}}</nobr></td>
|
|
99
|
+
<td style="text-align: center;"><nobr>{{row.f_address}}</nobr></td>
|
|
100
|
+
|
|
101
|
+
<td style="text-align: center;"><nobr>{{row.f_card_id}}</nobr></td>
|
|
102
|
+
<td style="text-align: center;"><nobr>{{row.gas}}</nobr></td>
|
|
103
|
+
<td style="text-align: center;"><nobr>{{row.fee}}</nobr></td>
|
|
104
|
+
<td style="text-align: center;"><nobr>{{row.f_collection}}</nobr></td>
|
|
105
|
+
<td style="text-align: center;"><nobr>{{row.type}}</nobr></td>
|
|
106
|
+
|
|
107
|
+
<td style="text-align: center;"><nobr>{{row.operate_date}}</nobr></td>
|
|
108
|
+
<td style="text-align: center;"><nobr>{{row.f_operator}}</nobr></td>
|
|
109
|
+
<td style="text-align: center;"><nobr>{{row.f_state}}</nobr></td>
|
|
110
|
+
<td style="text-align: center;"><nobr>{{row.note}}</nobr></td>
|
|
111
|
+
<td style="text-align: center;"><nobr>{{row.f_last_tablebase}}</nobr></td>
|
|
112
|
+
|
|
113
|
+
<td style="text-align: center;"><nobr>{{row.f_tablebase}}</nobr></td>
|
|
114
|
+
<td style="text-align: center;"><nobr>{{row.f_balance}}</nobr></td>
|
|
115
|
+
<td style="text-align: center;"><nobr>{{row.f_curbalance}}</nobr></td>
|
|
116
|
+
<td style="text-align: center;"><nobr>{{row.f_stair_money1}}</nobr></td>
|
|
117
|
+
<td style="text-align: center;"><nobr>{{row.f_stair_money2}}</nobr></td>
|
|
118
|
+
|
|
119
|
+
<td style="text-align: center;"><nobr>{{row.f_stair_money3}}</nobr></td>
|
|
120
|
+
<td style="text-align: center;"><nobr>{{row.f_stair_gas1}}</nobr></td>
|
|
121
|
+
<td style="text-align: center;"><nobr>{{row.f_stair_gas2}}</nobr></td>
|
|
122
|
+
<td style="text-align: center;"><nobr>{{row.f_stair_gas3}}</nobr></td>
|
|
94
123
|
</tr>
|
|
95
124
|
</template>
|
|
96
125
|
<template partial='foot'></template>
|
|
@@ -107,7 +136,25 @@
|
|
|
107
136
|
气量合计: {{model.sums.gas}}
|
|
108
137
|
</td>
|
|
109
138
|
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px">
|
|
110
|
-
|
|
139
|
+
收款合计: {{model.sums.f_collection}}
|
|
140
|
+
</td>
|
|
141
|
+
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px">
|
|
142
|
+
阶梯一金额合计: {{model.sums.f_stair_money1}}
|
|
143
|
+
</td>
|
|
144
|
+
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px">
|
|
145
|
+
阶梯二金额合计: {{model.sums.f_stair_money2}}
|
|
146
|
+
</td>
|
|
147
|
+
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px">
|
|
148
|
+
阶梯三金额合计: {{model.sums.f_stair_money3}}
|
|
149
|
+
</td>
|
|
150
|
+
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px">
|
|
151
|
+
阶梯一气量合计: {{model.sums.f_stair_gas1}}
|
|
152
|
+
</td>
|
|
153
|
+
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px">
|
|
154
|
+
阶梯二气量合计: {{model.sums.f_stair_gas2}}
|
|
155
|
+
</td>
|
|
156
|
+
<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px">
|
|
157
|
+
阶梯三气量合计: {{model.sums.f_stair_gas3}}
|
|
111
158
|
</td>
|
|
112
159
|
</tr>
|
|
113
160
|
</table>
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|