manage-client 4.0.11 → 4.0.13

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "manage-client",
3
- "version": "4.0.11",
3
+ "version": "4.0.13",
4
4
  "description": "经营管控模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "directories": {
@@ -648,6 +648,8 @@ export default {
648
648
  'f_total_usegas_amount': '累计用气金额',
649
649
  'f_total_gas': '表累购气量',
650
650
  'f_total_fee': '表累购金额',
651
+ 'f_user_total_gas': '用户总购气量',
652
+ 'f_user_total_fee': '用户总购金额',
651
653
  'f_inputtor': '档案抄表员',
652
654
  'f_book_inputtor': '表册抄表员',
653
655
  'f_userfiles_address': '安装地址',
@@ -663,6 +663,9 @@
663
663
  <th><nobr>表累购气量</nobr></th>
664
664
  <th><nobr>表累购金额</nobr></th>
665
665
 
666
+ <th><nobr>用户总购气量</nobr></th>
667
+ <th><nobr>用户总购金额</nobr></th>
668
+
666
669
  <th><nobr>抄表员(表册)</nobr></th>
667
670
  <th><nobr>抄表员(档案)</nobr></th>
668
671
  <th><nobr>用气点</nobr></th>
@@ -802,6 +805,8 @@
802
805
  <td style="text-align: center;"><nobr>{{row.f_total_usegas_amount}}</nobr></td>
803
806
  <td style="text-align: center;"><nobr>{{row.f_total_gas}}</nobr></td>
804
807
  <td style="text-align: center;"><nobr>{{row.f_total_fee}}</nobr></td>
808
+ <td style="text-align: center;"><nobr>{{row.f_user_total_gas}}</nobr></td>
809
+ <td style="text-align: center;"><nobr>{{row.f_user_total_fee}}</nobr></td>
805
810
  <td style="text-align: center;"><nobr>{{row.f_book_inputtor}}</nobr></td>
806
811
  <td style="text-align: center;"><nobr>{{row.f_inputtor}}</nobr></td>
807
812
 
@@ -894,29 +899,6 @@
894
899
  import {HttpResetClass, PagedList} from 'vue-client'
895
900
  import defaultPrint from '../config/DefaultPrint'
896
901
  import exportConfig from '../config/exportConfig'
897
- // let cardBtnGen = async function (self, val) {
898
- // self.cardInfo = val.data
899
- //
900
- // // 判断读卡是否需要卡密码
901
- // console.log('读卡上的信息', self.cardInfo)
902
- //
903
- // if (self.cardInfo.NewParam) {
904
- // if (self.cardInfo.NewParam.error) {
905
- // if (self.cardInfo.NewParam.error === '0001') {
906
- // // 需要重新读卡并传卡密码
907
- // if (self.model.rows.length == 1 && self.model.rows[0].f_alias === self.cardInfo.Factory) {
908
- // self.readCardParam = self.model.rows[0].f_card_password
909
- // self.cardInfo = await self.$refs.paged.$refs.cri.$refs.readcard.readCard2(self.model.rows[0].f_card_password)
910
- // } else {
911
- // self.$showAlert('此卡需要先获取客户信息。请通过条件查询该客户信息之后进行读卡!!', 'warning', 2000)
912
- // return
913
- // }
914
- // }
915
- // }
916
- // }
917
- // self.card=self.cardInfo.CardID
918
- // self.search()
919
- // }
920
902
  let readySomething = async function (self) {
921
903
  await self.$MagLoadParams.loadParam()
922
904
  // await self.$LoadParams.loadParam(self.f_filialeid)
@@ -1072,13 +1054,6 @@
1072
1054
  let exportdata = this.getCondition;
1073
1055
  let otherInData = [];
1074
1056
  otherInData.push(`导出时间: ${this.$login.toStandardTimeString()}`);
1075
- // let footerData = [], exportfield = this.getExportField;
1076
- // footerData.push("合计");
1077
- // let self = this;
1078
- // for (var field in self.sumsmodel) {
1079
- // footerData.push(`${exportfield[field]}合计:${self.sumsmodel[field]}`);
1080
- // }
1081
- // this.footer.push(footerData);
1082
1057
  this.other.push(otherInData);
1083
1058
  },
1084
1059
  initParams() {
@@ -107,7 +107,7 @@
107
107
  </div>
108
108
  <div class="col-sm-2 form-group">
109
109
  <label class="font_normal_body">时间区间</label>
110
- <datepicker :disabled-days-of-Week="[]" :format="'yyyy-MM-dd'"
110
+ <datepicker :disabled-days-of-Week="[]" :format="'yyyy-MM-dd HH:mm:ss'"
111
111
  :show-reset-button="reset"
112
112
  :value.sync="$parent.$parent.startDate"
113
113
  id="startDate"
@@ -118,7 +118,7 @@
118
118
  </div>
119
119
  <div class="col-sm-2 form-group">
120
120
  <label class="font_normal_body" style="word-break:keep-all;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;至&nbsp;&nbsp;&nbsp;</label>
121
- <datepicker :disabled-days-of-Week="[]" :format="'yyyy-MM-dd'"
121
+ <datepicker :disabled-days-of-Week="[]" :format="'yyyy-MM-dd HH:mm:ss'"
122
122
  :show-reset-button="reset"
123
123
  :value.sync="$parent.$parent.endDate"
124
124
  style="width:60%"
@@ -302,11 +302,14 @@ export default {
302
302
  }, chargeexportConfig: {
303
303
  'f_userinfo_code': '客户编号',
304
304
  'f_user_name': '客户名称',
305
+ 'f_address': '客户地址',
305
306
  'f_pregas': '气量',
306
307
  'f_collection': '收款',
307
- 'f_stairamount1': '一阶气量',
308
- 'f_stair2amount': '二阶气量',
309
- 'f_stair3amount': '三阶气量'
308
+ 'f_payment': '付款方式',
309
+ 'f_operate_date': '收费日期',
310
+ 'f_operator': '操作员',
311
+ 'f_depname': '部门',
312
+ 'f_stair1price': '一阶单价'
310
313
  }, loginQueryexportConfig: {
311
314
  'f_userinfo_id': '登录人编号',
312
315
  'f_user_name': '登录人名称',
@@ -112,8 +112,8 @@
112
112
  <div class="col-sm-2 form-group">
113
113
  <label for="startDate" class="font_normal_body">建档日期</label>
114
114
  <datepicker placeholder="建档日期小于等于" style="width:60%"
115
- v-model="model.f_createfile_date"
116
- :value.sync="model.f_createfile_date"
115
+ v-model="model.f_createfile_date_end"
116
+ :value.sync="model.f_createfile_date_end"
117
117
  :format="'yyyy-MM-dd'"
118
118
  :show-reset-button="true"
119
119
  condition="f_createfile_date <= '{} 23:59:59'">
package/src/saleManage.js CHANGED
@@ -142,7 +142,7 @@ export default function () {
142
142
  Vue.component('handplan-query', (resolve) => {
143
143
  require(['./components/sale/businessquery/HandplanQuery'], resolve)
144
144
  })
145
- // 机表抄表查询
145
+ // 物联网抄表查询
146
146
  Vue.component('web-handplan-query', (resolve) => {
147
147
  require(['./components/sale/businessquery/WebHandplanQuery'], resolve)
148
148
  })