apply-clients 3.2.41 → 3.2.50

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.
Files changed (43) hide show
  1. package/package.json +1 -1
  2. package/src/App.vue +20 -20
  3. package/src/apply.js +185 -175
  4. package/src/components/app_apply/Process/AppExplorationUser.vue +1 -1
  5. package/src/components/app_apply/ProgressReport/ProgressReportList.vue +209 -208
  6. package/src/components/app_apply/Supervisory/AppProcessSupervisory.vue +183 -183
  7. package/src/components/image/tubiao.png +0 -0
  8. package/src/components/product/Ledger/ContractManagement/OtherContract/OtherContractInformation.vue +429 -429
  9. package/src/components/product/Ledger/ContractManagement/OtherContract/OtherContractList.vue +267 -267
  10. package/src/components/product/Ledger/ContractManagement/PurchaseContract/PurchaseContractInformation.vue +715 -682
  11. package/src/components/product/Ledger/ContractManagement/PurchaseContract/PurchaseContractList.vue +304 -304
  12. package/src/components/product/Ledger/ContractManagement/RepairContract/RepairContractInformation.vue +286 -286
  13. package/src/components/product/Ledger/ContractManagement/RepairContract/RepairContractList.vue +258 -258
  14. package/src/components/product/Ledger/FacilityManagement/FacilityInventory/FacilityInventory.vue +31 -0
  15. package/src/components/product/Ledger/FacilityManagement/FacilityInventory/FacilityInventoryList.vue +5 -0
  16. package/src/components/product/Ledger/FacilityManagement/FacilityInventory/addoldFacilityInformation.vue +326 -0
  17. package/src/components/product/Ledger/FileDownload/FileDownload.vue +42 -0
  18. package/src/components/product/Ledger/Function/InstallInfoSelect.vue +4 -1
  19. package/src/components/product/Ledger/ImportApply/ImportApply.vue +68 -0
  20. package/src/components/product/Ledger/MaterialManagement/DeliveryRecord/DeliveryRecordList.vue +39 -3
  21. package/src/components/product/Ledger/MaterialManagement/InventoryInformation/InventoryInformationList.vue +32 -2
  22. package/src/components/product/Ledger/MaterialManagement/InventoryInformation/MaterialInformation.vue +1 -1
  23. package/src/components/product/Ledger/MaterialManagement/InventoryInformation/MaterialOutStock.vue +438 -430
  24. package/src/components/product/Ledger/MaterialManagement/InventoryInformation/MaterialOutboundOrder.vue +457 -449
  25. package/src/components/product/Ledger/MaterialManagement/InventoryInformation/PurchaseMaterial.vue +10 -2
  26. package/src/components/product/Ledger/MaterialManagement/InventoryInformation/PurchaseOrder.vue +10 -2
  27. package/src/components/product/Ledger/MaterialManagement/InventoryInformation/ReturnMaterial.vue +10 -2
  28. package/src/components/product/Ledger/MaterialManagement/OutboundOrder/OutboundOrderInformation.vue +3 -1
  29. package/src/components/product/Ledger/MaterialManagement/OutboundOrder/OutboundOrderList.vue +31 -2
  30. package/src/components/product/Ledger/MaterialManagement/OutboundOrder/PrintMaterialBill.vue +2 -2
  31. package/src/components/product/Ledger/MaterialManagement/PurchaseRecords/PrintPurchaseOrder.vue +5 -4
  32. package/src/components/product/Ledger/MaterialManagement/PurchaseRecords/PurchaseRecordsInformation.vue +5 -1
  33. package/src/components/product/Ledger/MaterialManagement/PurchaseRecords/PurchaseRecordsList.vue +33 -7
  34. package/src/components/product/Ledger/MaterialManagement/WarehousingRecord/WarehousingRecordList.vue +45 -3
  35. package/src/components/product/Ledger/Process/ProcessSelect.vue +3 -5
  36. package/src/components/product/Ledger/Process/Service/ServiceControl.vue +42 -5
  37. package/src/components/product/Ledger/QinhuaMaterial/PickingRecord/PickingInformation.vue +24 -3
  38. package/src/components/product/Ledger/QinhuaMaterial/SeasoningRecord/SeasoningRecordList.vue +14 -2
  39. package/src/components/product/Ledger/Supervisory/Service/RenWuDan.vue +78 -0
  40. package/src/components/product/Ledger/Supervisory/Service/SupervisoryServiceControl.vue +38 -2
  41. package/src/components/product/Ledger/Supervisory/SupervisoryList.vue +182 -7
  42. package/src/components/product/ServiceView.vue +761 -850
  43. package/static/images/lefticon//346/226/207/344/273/266/346/250/241/345/235/227.png +0 -0
@@ -0,0 +1,78 @@
1
+ <template>
2
+
3
+ <div style="margin-left: 50%"> <button class="btn btn-primary"@click.prevent="showPrintModal()">打印预览</button> </div>
4
+
5
+ <modal :show.sync="showQuery">
6
+ <header slot="modal-header" class="modal-header">
7
+ <h3 style="color:black" class="modal-title">通知单/流程表打印</h3>
8
+ </header>
9
+ <article slot="modal-body" class="modal-body">
10
+ <div id="print">
11
+ <img src="../../../../image/tubiao.png"style="width:150px; height:30px">
12
+ <h3 style="margin-left: 24%">{{selectdata.f_project_type}}工程任务单</h3>
13
+ <h4>西安市天然气工程有限公司</h4>
14
+ {{{ model.data }}}
15
+ </div>
16
+
17
+ </article>
18
+
19
+ <footer slot="modal-footer" class="modal-footer">
20
+ <print-element v-ref:print v-show="false" id='print' styleid='style'
21
+ top='10' left='60' width='100%' height='100%'>
22
+ </print-element>
23
+ <button type="button" class="btn btn-primary" @click="print()">打印</button>
24
+ </footer>
25
+
26
+ </modal>
27
+
28
+
29
+
30
+
31
+
32
+ </template>
33
+
34
+ <script>
35
+ import Vue from 'vue'
36
+ import {HttpResetClass} from 'vue-client'
37
+ export default {
38
+ title: '打印任务单',
39
+ props:{
40
+ selectdata: {
41
+ type :Object
42
+ }
43
+ },
44
+
45
+ data () {
46
+ return {
47
+ showQuery: false,
48
+ model: '',
49
+ showPrint: false,
50
+ }
51
+ },
52
+ methods: {
53
+
54
+ // 获取页面配置json文件
55
+ async loadName () {
56
+ let http = new HttpResetClass()
57
+ let response = await http.load('POST', 'rs/report/renwudan', {data: {id:this.selectdata.f_process_id}},{resolveMsg: null, rejectMsg: null})
58
+ this.model=response
59
+ console.log('-------------',this.model)
60
+ },
61
+ async showPrintModal () {
62
+ this.showQuery=! this.showQuery
63
+ console.log('-------------',this.selectdata)
64
+ await this.loadName()
65
+ }
66
+ , print () {
67
+ this.$refs.print.PrintTable()
68
+ },
69
+ closeModal () {
70
+ this.showPrint = false
71
+ }
72
+ }
73
+ }
74
+ </script>
75
+
76
+ <style scoped>
77
+
78
+ </style>
@@ -83,6 +83,9 @@
83
83
  if (this.selectdata[item.field]) {
84
84
  item.value = this.selectdata[item.field]
85
85
  }
86
+ if(this.selectdata[item.field]=== 0){
87
+ item.value = 0
88
+ }
86
89
  // 如果配置类型为select,获取options
87
90
  if(item.type==='select'){
88
91
  let temp = null
@@ -428,11 +431,44 @@
428
431
  },
429
432
  // 失去焦点出触发事件
430
433
  async 'onchange'(index) {
434
+ if (this.show_data.defname === '编制合同') {
435
+ if (this.show_data.fields[index].label==='室外安装费'|| this.show_data.fields[index].label==='室外甲供材'|| this.show_data.fields[index].label==='室外设备费'||this.show_data.fields[index].label==='室内安装费'|| this.show_data.fields[index].label==='室内甲供材'|| this.show_data.fields[index].label==='室内设备费') {
436
+ let a1 = this.getLableValue('室外安装费')
437
+ let b1 = this.getLableValue('室外甲供材')
438
+ let c1=this.getLableValue('室外设备费')
439
+ let a2 = this.getLableValue('室内安装费')
440
+ let b2 = this.getLableValue('室内甲供材')
441
+ let c2=this.getLableValue('室内设备费')
442
+ if(this.show_data.f_project_type!='支线'&&this.show_data.f_project_type!='主体'){
443
+ this.setLabelValue('合同总造价', parseFloat(parseFloat(a1) + parseFloat(b1) + parseFloat(c1)+ parseFloat(a2)+ parseFloat(b2)+ parseFloat(c2)).toFixed(2))
444
+ this.setLabelValue('安装费总和',parseFloat(parseFloat(a1)+ parseFloat(a2)).toFixed(2))
445
+ }
446
+ console.log('----------------------------------------')
447
+ }
448
+ if(this.show_data.fields[index].label==='室外安装费'|| this.show_data.fields[index].label==='室外甲供材'|| this.show_data.fields[index].label==='室外设备费'){
449
+ let a1 = this.getLableValue('室外安装费')
450
+ let b1 = this.getLableValue('室外甲供材')
451
+ let c1=this.getLableValue('室外设备费')
452
+ if(this.show_data.f_project_type==='支线'||this.show_data.f_project_type==='主体') {
453
+ this.setLabelValue('室外税金', parseFloat(parseFloat(a1) * 0.03).toFixed(2))
454
+ this.setLabelValue('室外造价', parseFloat(parseFloat(a1) + parseFloat(b1) + parseFloat(c1) + parseFloat(a1) * 0.03).toFixed(2))
455
+ }else{
456
+ this.setLabelValue('室外税金', parseFloat(parseFloat(parseFloat(a1) + parseFloat(b1) + parseFloat(c1)) * 0.03).toFixed(2))
457
+ this.setLabelValue('室外造价', parseFloat(parseFloat(a1) + parseFloat(b1) + parseFloat(c1)).toFixed(2))
458
+ }
459
+ }
460
+ if(this.show_data.fields[index].label==='室内安装费'|| this.show_data.fields[index].label==='室内甲供材'|| this.show_data.fields[index].label==='室内设备费'){
461
+ let a2 = this.getLableValue('室内安装费')
462
+ let b2 = this.getLableValue('室内甲供材')
463
+ let c2=this.getLableValue('室内设备费')
464
+ this.setLabelValue('室内税金', parseFloat(parseFloat(parseFloat(a2) + parseFloat(b2) + parseFloat(c2)) * 0.03).toFixed(2))
465
+ this.setLabelValue('室内造价',parseFloat(parseFloat(a2) + parseFloat(b2) + parseFloat(c2)).toFixed(2))
466
+ }
467
+ }
431
468
  console.log('失去焦点')
432
469
  if (
433
470
  this.show_data.fields[index].label === '合同编号' ||
434
- this.show_data.fields[index].label === '工程编号' ||
435
- this.show_data.fields[index].label === 'CEA号'
471
+ this.show_data.fields[index].label === '工程编号'
436
472
  ) {
437
473
  try {
438
474
  await this.checkDuplicate(index)
@@ -22,6 +22,12 @@
22
22
  condition="u.f_cea_number like '%{}%'">
23
23
  </div>
24
24
  <div class="form-group col-sm-3 button-range">
25
+ <export-excel :data="$parent.$parent.getCondition"
26
+ :field="$parent.$parent.getfield"
27
+ sqlurl="rs/logic/exportfile"
28
+ sql-name="supervisory"
29
+ template-name='流程监控导出'
30
+ :choose-col="true"></export-excel>
25
31
  <button class="button_search button_spacing" @click="$parent.$parent.search()" v-el:cx>查询</button>
26
32
  <button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
27
33
  <div
@@ -51,12 +57,10 @@
51
57
  <v-select
52
58
  v-model="model.f_project_type"
53
59
  placeholder='工程类型'
54
- condition="u.f_project_type like '%{}%'"
60
+ condition="u.f_project_type in {} "
55
61
  :value.sync="model.f_project_type"
56
62
  :options='$parent.$parent.projectTypes'
57
- class="select select_list"
58
- :value-single="true"
59
- close-on-select ></v-select>
63
+ ></v-select>
60
64
  </div>
61
65
  <div class="form-group col-sm-3">
62
66
  <label class="font_normal_body">办理环节:</label>
@@ -89,6 +93,51 @@
89
93
  style="width: 60%"
90
94
  condition="u.f_address like '%{}%'">
91
95
  </div>
96
+ <div class="form-group col-sm-3">
97
+ <label for="startDate" class="font_normal_body">开始时间:</label>
98
+ <datepicker id="startDate" placeholder="开始日期"
99
+ style="width: 60%!important;"
100
+ v-model="model.startDate"
101
+ :value.sync="model.startDate"
102
+ :format="'yyyy-MM-dd HH:mm:ss'"
103
+ :show-reset-button="true"
104
+ condition="sendtime >= '{}'">
105
+ </datepicker>
106
+ </div>
107
+ <div class="form-group col-sm-3">
108
+ <label for="endDate" class="font_normal_body">结束时间:</label>
109
+ <datepicker id="endDate" placeholder="结束日期"
110
+ style="width: 60%!important;"
111
+ v-model="model.endDate"
112
+ :value.sync="model.endDate"
113
+ :format="'yyyy-MM-dd HH:mm:ss'"
114
+ :show-reset-button="true"
115
+ condition="sendtime <= '{}'">
116
+ </datepicker>
117
+ </div>
118
+
119
+ <div class="form-group col-sm-3">
120
+ <label for="startDate1" class="font_normal_body">签订开始时间:</label>
121
+ <datepicker id="startDate1" placeholder="签订开始时间"
122
+ style="width: 60%!important;"
123
+ v-model="model.startDate1"
124
+ :value.sync="model.startDate1"
125
+ :format="'yyyy-MM-dd '"
126
+ :show-reset-button="true"
127
+ condition="f_contract_Signed_time >= '{}'">
128
+ </datepicker>
129
+ </div>
130
+ <div class="form-group col-sm-3">
131
+ <label for="endDate1" class="font_normal_body">签订结束时间</label>
132
+ <datepicker id="endDate1" placeholder="签订结束时间"
133
+ style="width: 60%!important;"
134
+ v-model="model.endDate1"
135
+ :value.sync="model.endDate1"
136
+ :format="'yyyy-MM-dd '"
137
+ :show-reset-button="true"
138
+ condition="f_contract_Signed_time <= '{}'">
139
+ </datepicker>
140
+ </div>
92
141
  </div>
93
142
  </div>
94
143
  </criteria>
@@ -106,6 +155,7 @@
106
155
  <th style="white-space: nowrap;">CEA号</th>
107
156
  <th style="white-space: nowrap;">办理环节</th>
108
157
  <th style="white-space: nowrap;">项目地址</th>
158
+ <th style="white-space: nowrap;">操作时间</th>
109
159
  </tr>
110
160
  </template>
111
161
  <template partial='body'>
@@ -143,6 +193,9 @@
143
193
  <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
144
194
  <nobr>{{row.f_address}}</nobr>
145
195
  </td>
196
+ <td @click="$parent.$parent.$parent.check(row)" style="text-align: center;">
197
+ <nobr>{{row.sendtime}}</nobr>
198
+ </td>
146
199
  </tr>
147
200
  </template>
148
201
  </data-grid>
@@ -159,15 +212,129 @@
159
212
  data () {
160
213
  return {
161
214
  applytype: [{label: '全部', value: ''}, ...this.$appdata.getParam('项目类型')],
162
- projectTypes: [{label: '全部', value: ''}],
215
+ projectTypes: [{label: '全部', value: ''}, ...this.$appdata.getParam('工程类型')],
163
216
  projectAreas: [{label: '全部', value: ''}, ...this.$appdata.getParam('项目区域')], // 所有报建类型
164
217
  model: new PagedList('rs/sql/supervisory', 20, {
165
218
  data: {
166
219
  orgid: this.$login.f.orgid
167
220
  }
168
221
  }),
169
- defnames: [{label: '全部', value: ''}], // 流程节点
170
- criteriaShow: false
222
+ defnames: [{label: '全部', value: ''}, ...this.$appdata.getParam('办理环节')], // 流程节点
223
+ criteriaShow: false,
224
+ getfield: {
225
+ 'f_entry_name': '项目名称',
226
+ 'f_project_number': '工程编号',
227
+ 'f_apply_type': '项目类型',
228
+ 'f_project_type': '工程类型',
229
+ 'f_project_area': '项目区域',
230
+ 'f_from_boss_drawing_time': '收图时间',
231
+ 'f_project_department': '项目部',
232
+ 'f_cea_number': 'CEA号',
233
+ 'f_air_source': '气源',
234
+ 'f_address': '地址',
235
+ 'f_entry_information_remarks': '备注',
236
+ 'f_contract_number': '合同编号',
237
+ 'f_contract_money': '合同总造价',
238
+ 'f_installation_fee_budget_number': '安装费总和',
239
+ 'f_outdoor_cost_budget': '室外造价',
240
+ 'f_outdoor_installation_fee_budget': '室外安装费',
241
+ 'f_outdoor_supply_budget': '室外甲供材',
242
+ 'f_outdoor_equipment_cost_budget': '室外设备费',
243
+ 'ys_shiwai_shuijin': '室外税金',
244
+ 'f_indoor_cost_budget': '室内造价',
245
+ 'f_indoor_installation_fee_budget': '室内安装费',
246
+ 'f_indoor_supply_budget': '室内甲供材',
247
+ 'f_indoor_equipment_cost_budget': '室内设备费',
248
+ 'ys_shinei_shuijin': '室内税金',
249
+ 'f_contract_report_time': '合同上报时间',
250
+ 'f_project_amount': '工程量',
251
+ 'f_contract_remarks': '合同备注',
252
+ 'f_from_produce_drawing_time': '领图时间',
253
+ 'f_confess_time': '交底时间',
254
+ 'f_manager': '管理员',
255
+ 'f_construction_team': '施工队',
256
+ 'f_supervision': '监理',
257
+ 'f_design_company': '设计',
258
+ 'f_branch_line_send_pictures_date': '发图时间',
259
+ 'f_date_of_treading': '踏线日期',
260
+ 'f_receive_excavate_date': '领开挖证时间',
261
+ 'f_excavate_date': '开挖开始时间',
262
+ 'f_excavate_end_date': '开挖结束时间',
263
+ 'f_hair_excavate_date': '发开挖证时间',
264
+ 'f_affairs_department_project_manager': '区域分公司项目经理',
265
+ 'f_site_person': '甲方现场负责人',
266
+ 'f_site_person_tel': '甲方现场负责人电话',
267
+ 'f_inspection_informs_time': '监检告知递送时间',
268
+ 'f_inspection_hospital_return_date': '特检院返单日期',
269
+ 'f_inform_delivery_date': '告知递送日期',
270
+ 'f_prophase_remarks': '工程前期备注',
271
+ 'f_project_start_time': '开工日期',
272
+ 'f_means_completion_completion_data': '竣工资料移交日期',
273
+ 'f_completion_time': '竣工日期',
274
+ 'f_meet_submit_date': '碰口图递交时间',
275
+ 'f_tread_line_date': '踏线日期',
276
+ 'f_affairs_department_acceptance_staff': '事务部组织验收人员',
277
+ 'f_meet_date': '碰口日期',
278
+ 'f_backfill_date': '回填日期',
279
+ 'f_road_surface_choi_board_date': '补路面撤彩板日期',
280
+ 'f_construction_remarks': '施工备注',
281
+ 'f_final_return_time': '决算返回时间',
282
+ 'f_outdoor_cost_final': '总造价',
283
+ 'f_outdoor_installation_fee_final': '安装费',
284
+ 'f_final_remarks': '决算备注',
285
+ 'f_completed_data_receive_date': '竣工资料接收时间',
286
+ 'f_notification_archive_time': '通知归档时间',
287
+ 'f_final_data_receive_date': '决算资料接收时间',
288
+ 'f_acceptance_sheet_receive_date': '验收单接收时间',
289
+ 'f_record_sheet_receive_date': '备案资料接收时间',
290
+ 'f_data_handover_time': '移交时间',
291
+ 'f_data_archive_remarks': '归档资料备注',
292
+ 'f_progress_payment_qinhua': '秦华进度款',
293
+ 'f_progress_payment_percentage_qinhua': '秦华进度款占比',
294
+ 'f_progress_payment_date_qinhua': '秦华进度款时间',
295
+ 'f_final_payment_qinhua_notice': '秦华通知决算时间',
296
+ 'f_final_payment_qinhua': '秦华决算款',
297
+ 'f_final_payment_date_qinhua': '秦华决算款时间',
298
+ 'f_settlement_remarks_qinhua': '秦华结算备注',
299
+ 'f_prepayments_service': '预付款',
300
+ 'f_prepayments_date_service': '预付款时间',
301
+ 'f_progress_payment_service': '进度款',
302
+ 'f_progress_payment_date_service': '进度款时间',
303
+ 'f_settlement_payment_service': '结算款',
304
+ 'f_settlement_payment_date_service': '结算款时间',
305
+ 'f_settlement_remarks_service': '劳务结算备注',
306
+ 'f_hair_project_department_drawing_time': '主体录入信息收图时间',
307
+ 'f_project_department_receive_drawing_time': '主体拟定方案收图时间',
308
+ 'f_plan_time': '出方案时间',
309
+ 'f_make_plan_remarks': '主体拟定方案备注',
310
+ 'f_budget_report_time': '主体预算上报时间',
311
+ 'f_budget_return_time': '主体预算返回时间',
312
+ 'f_budget_remarks': '主体预算备注',
313
+ 'f_project_manager': '项目经理',
314
+ 'f_countersigning_completion_time': '主体会签完毕时间',
315
+ 'f_construction_team_contact': '主体施工队联系人电话',
316
+ 'f_compilation_time_of_completion_data': '主体竣工资料编制时间',
317
+ 'f_completion_time_of_internal_visa': '主体内签完成时间',
318
+ 'f_completion_time_of_outside_visa': '主体外签完成时间',
319
+ 'f_completion_information_handover_production_time': '主体移交生产时间',
320
+ 'f_completion_information_remarks': '主体竣工资料备注',
321
+ 'f_outdoor_supply_final': '主体甲供材',
322
+ 'f_internal_audit_start_time': '主体送内审时间',
323
+ 'f_internal_audit_end_time': '主体内审结束时间',
324
+ 'f_end_of_external_audit': '主体外审结束时间',
325
+ 'f_finalCost_handover_production_time': '主体移交生产时间',
326
+ 'f_approval_cost': '主体总造价',
327
+ 'f_approval_supply': '主体决算甲供材',
328
+ 'f_approval_date': '审定时间',
329
+ 'f_approval_remarks': '审定备注',
330
+ 'f_prepayments_qinhua': '主体预付款',
331
+ 'f_prepayments_percentage_qinhua': '主体预付款占比',
332
+ 'f_prepayments_date_qinhua': '主体预付款时间',
333
+ 'f_notice_settlement_date_qinhua': '主体通知结算时间',
334
+ 'f_settlement_payment_qinhua': '主体结算款',
335
+ 'f_settlement_payment_date_qinhua': '主体结算款时间',
336
+ 'f_prepayments_percentage_service': '主体预付款占比'
337
+ }
171
338
  }
172
339
  },
173
340
  ready () {
@@ -205,6 +372,14 @@
205
372
  }
206
373
  },
207
374
  computed: {
375
+ getCondition() {
376
+ return {
377
+ condition: this.$refs.cp.$refs.cri.condition,
378
+ data: {
379
+ orgid: this.$login.f.orgid
380
+ }
381
+ }
382
+ }
208
383
  }
209
384
  }
210
385
  </script>