manage-client 3.3.77 → 3.3.78
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/build/dev-server.js +2 -2
- package/package.json +2 -2
- package/src/components/SellReport/shexian/SxSellSummary.vue +1 -1
- package/src/filiale/daliyihua/RecordInfoQuery.vue +1449 -0
- package/src/filiale/daliyihua/config/DefaultPrint.js +6 -0
- package/src/filiale/daliyihua/config/exportConfig.js +2276 -0
- package/src/filiale/daliyihua/config/tableConfig.js +45 -0
- package/src/filiale/daliyihua/sale.js +9 -0
- package/src/filiale/wenxi/config/exportConfig.js +1 -1
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
// 查询页面的字段名和中文对应
|
|
3
|
+
ReportDataQuery: {
|
|
4
|
+
'用户编号': 'f_userinfo_code',
|
|
5
|
+
'用户名称': 'f_user_name',
|
|
6
|
+
'表号': 'f_meternumber',
|
|
7
|
+
'本次抄表底数': 'f_tablebase',
|
|
8
|
+
'上次抄表底数': 'f_last_tablebase',
|
|
9
|
+
'表上余额': 'f_jval',
|
|
10
|
+
'抄表日期': 'f_hand_date',
|
|
11
|
+
'上次抄表日期': 'f_last_hand_date',
|
|
12
|
+
'开户日期': 'f_gas_date',
|
|
13
|
+
'软件版本号': 'f_software_version',
|
|
14
|
+
'表状态信息': 'f_table_msg',
|
|
15
|
+
'上次表状态信息': 'f_last_meter_state_msg',
|
|
16
|
+
'插入日期': 'f_insert_date',
|
|
17
|
+
'上次插入日期': 'f_last_insertdate',
|
|
18
|
+
'是否结算': 'f_whether_clear',
|
|
19
|
+
'超用气量': 'f_super_gas',
|
|
20
|
+
'电量等级': 'f_electricity',
|
|
21
|
+
'购气次数': 'f_times',
|
|
22
|
+
'单价': 'f_price',
|
|
23
|
+
'信号强度': 'f_signal',
|
|
24
|
+
'信噪比': 'f_snr',
|
|
25
|
+
'电压': 'f_batterylevel',
|
|
26
|
+
'阀门强制状态': 'f_networkshutvalve',
|
|
27
|
+
'阀门状态': 'f_valvestate',
|
|
28
|
+
'计量类型': 'f_wmprepaytype',
|
|
29
|
+
'上报类型': 'f_upload_type',
|
|
30
|
+
'金额状态': 'f_moneystate',
|
|
31
|
+
'增加工况瞬时': 'operatingModeFlow',
|
|
32
|
+
'标况瞬时': 'standardConditionFlow',
|
|
33
|
+
'开盖状态': 'f_SplitAlarm',
|
|
34
|
+
'液晶状态': 'f_XTIpllStopFlag',
|
|
35
|
+
'声速': 'soundVelocity',
|
|
36
|
+
'外电低电': 'f_lowlithiumbattery',
|
|
37
|
+
'磁干扰异常': 'f_magneticinterference',
|
|
38
|
+
'表内剩余金额': 'f_meterbalanceamt',
|
|
39
|
+
'表内累计充值金额': 'f_meterdebitamt',
|
|
40
|
+
'补偿状态': 'f_compensatestate',
|
|
41
|
+
'气表品牌': 'f_meter_brand',
|
|
42
|
+
'气表型号': 'f_meter_style',
|
|
43
|
+
'分公司': 'f_orgname'
|
|
44
|
+
}
|
|
45
|
+
}
|
|
@@ -261,7 +261,7 @@ export default{
|
|
|
261
261
|
},
|
|
262
262
|
cardhandplanConfig: {
|
|
263
263
|
'f_userinfo_code': '客户编号', 'f_user_name': '客户名称', 'f_address': '客户地址', 'f_meternumber': '表号',
|
|
264
|
-
'f_last_tablebase': '上期底数', 'f_tablebase': '本期底数', 'f_real_amount': '用气量', '
|
|
264
|
+
'f_last_tablebase': '上期底数', 'f_tablebase': '本期底数', 'f_real_amount': '用气量', 'totalgas': '总购气量',
|
|
265
265
|
'f_yuliang': '余量', 'f_inputtor': '抄表员', 'f_hand_date': '下发日期', 'f_input_date': '录入日期',
|
|
266
266
|
'f_meter_state': '抄表状态', 'f_operator': '操作员', 'f_depname': '部门'
|
|
267
267
|
},
|