king
2020-01-13 a8736e84e62cae98c05b1cc6ac6992e4b31e7cf2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
import React, {Component} from 'react'
import PropTypes from 'prop-types'
import {connect} from 'react-redux'
import { Button, Affix, Modal, notification } from 'antd'
import MutilForm from '@/components/mutilform'
import {modifyTabview} from '@/store/action'
import Api from '@/api'
import './index.scss'
 
const { confirm } = Modal
 
class MainAction extends Component {
  static propTpyes = {
    MenuNo: PropTypes.string, // 菜单参数
    columns: PropTypes.array, // 显示列用于表单列
    actions: PropTypes.array, // 搜索条件列表
    dict: PropTypes.object, // 字典项
    mainKey: PropTypes.array
  }
 
  state = {
    visible: false, // 弹窗是否显示
    formdata: null, // 表单显示列数据
    tabledata: null, // 列表选择数据
    confirmLoading: false, // 确认中
    execAction: null, // 执行按钮属性
    primarykey: null, // 主键
    bidkey: null, // BID
    defaultproc: { // 默认添加、修改、删除存储过程
      Add: 'sDataManageAdd',
      Update: 'sDataManageUpt',
      Delete: 'sDataManageDel'
    }
  }
  
  submitaction = (action, datalist, primarykey, bidkey) => {
    if (action.Ot === 'requiredSgl' || action.Ot === 'requiredOnce') { // 选择单行或多行id拼接执行
      let ids = datalist.map(data => {
        return data[primarykey]
      })
      let bids = null
      if (bidkey) {
        bids = datalist.map(data => {
          return data[bidkey] || ''
        })
      }
      return Api.submitInterface({
        func: action.AuditProc || this.state.defaultproc[action.Action],
        ID: ids.join(','), // 主键字段
        BID: bids ? bids.join(',') : '' // BID字段
      })
    } else if (action.Ot === 'required') { // 可选多行,循环执行
      let deffers = datalist.map(data => {
        return new Promise((resolve, reject) => {
          Api.submitInterface({
            func: action.AuditProc || this.state.defaultproc[action.Action],
            ID: data[primarykey], // 主键字段
            BID: data[bidkey] || '' // BID字段
          }).then(res => {
            resolve(res)
          })
        })
      })
      return Promise.all(deffers)
    } else { // 不选行
      return Api.submitInterface({
        func: action.AuditProc || this.state.defaultproc[action.Action],
        ID: '', // 主键字段
        BID: '' // BID字段
      })
    }
  }
  actionTrigger = (item) => {
    let _this = this
    let datalist = this.props.gettableselected() || []
 
    if (item.Action === 'ExportExcel') {
      return
      // this.submitaction(item, datalist, ID[0], (BID.length === 1 ? BID[0] : ''))
      //   .then(res => {
      //     if (Array.isArray(res)) {
      //       let iserror = false
      //       res.forEach(result => {
      //         if (!result.status && !iserror) {
      //           notification.error({
      //             top: 92,
      //             message: result.message,
      //             duration: 15
      //           })
      //           iserror = true
      //         }
      //       })
      //       if (!iserror) {
      //         notification.success({
      //           top: 92,
      //           message: _this.props.dict['main.action.confirm.success']
      //         })
 
      //         _this.props.refreshdata(item.ReloadForm) // 刷新页面
      //       }
      //     } else {
      //       if (res.status) {
      //         notification.success({
      //           top: 92,
      //           message: _this.props.dict['main.action.confirm.success']
      //         })
              
      //         _this.props.refreshdata(item.ReloadForm) // 刷新页面
      //       } else {
      //         notification.error({
      //           top: 92,
      //           message: res.message,
      //           duration: 15
      //         })
      //       }
      //     }
      //   })
    }
 
    /************* 校验列表数据选择是否正确 **************/
 
    if ((item.Ot === 'requiredSgl' || item.Ot === 'required' || item.Ot === 'requiredOnce') && datalist.length === 0) {
      // 需要选择行时,校验数据
      notification.warning({
        top: 92,
        message: this.props.dict['main.action.confirm.selectline'],
        duration: 10
      })
      return
    } else if (item.Ot === 'requiredSgl' && datalist.length > 1) {
      // 需要选择单行时,校验数据
      notification.warning({
        top: 92,
        message: this.props.dict['main.action.confirm.selectSingleLine'],
        duration: 10
      })
      return
    }
 
    /************* 校验主键与BID **************/
    let ID = []
    let BID = []
    if (item.Ot === 'requiredSgl' || item.Ot === 'required' || item.Ot === 'requiredOnce') {
      this.props.mainKey.forEach(key => {
        if (key.IDField === '1') {
          ID.push(key.FieldName)
        } else {
          BID.push(key.FieldName)
        }
      })
  
      if (ID.length === 0) { // 主键校验
        notification.warning({
          top: 92,
          message: this.props.dict['main.action.primarykey.required'],
          duration: 10
        })
        return
      } else if (ID.length > 1) {
        notification.warning({
          top: 92,
          message: this.props.dict['main.action.primarykey.repetition'],
          duration: 10
        })
        return
      }
  
      if (BID.length > 1) { // BID校验
        notification.warning({
          top: 92,
          message: this.props.dict['main.action.primarykey.repetitionbid'],
          duration: 10
        })
        return
      }
    }
 
    /********************* 操作处理 **********************/
 
    if (item.OpenType === 'prompt') { // 确认框
      confirm({
        title: this.props.dict['main.action.confirm.tip'],
        onOk() {
          return _this.submitaction(item, datalist, ID[0], (BID.length === 1 ? BID[0] : ''))
            .then(res => {
              if (Array.isArray(res)) {
                let iserror = false
                res.forEach(result => {
                  if (!result.status && !iserror) {
                    notification.error({
                      top: 92,
                      message: result.message,
                      duration: 15
                    })
                    iserror = true
                  }
                })
                if (!iserror) {
                  notification.success({
                    top: 92,
                    message: _this.props.dict['main.action.confirm.success'],
                    duration: 2
                  })
 
                  _this.props.refreshdata(item.ReloadForm) // 刷新页面
                }
              } else {
                if (res.status) {
                  notification.success({
                    top: 92,
                    message: _this.props.dict['main.action.confirm.success'],
                    duration: 2
                  })
                  
                  _this.props.refreshdata(item.ReloadForm) // 刷新页面
                } else {
                  notification.error({
                    top: 92,
                    message: res.message,
                    duration: 15
                  })
                }
              }
            })
        },
        onCancel() {}
      })
    } else if (item.OpenType === 'execproc') { // 直接执行
      this.submitaction(item, datalist, ID[0], (BID.length === 1 ? BID[0] : ''))
        .then(res => {
          if (Array.isArray(res)) {
            let iserror = false
            res.forEach(result => {
              if (!result.status && !iserror) {
                notification.error({
                  top: 92,
                  message: result.message,
                  duration: 15
                })
                iserror = true
              }
            })
            if (!iserror) {
              notification.success({
                top: 92,
                message: this.props.dict['main.action.confirm.success'],
                duration: 2
              })
 
              this.props.refreshdata(item.ReloadForm) // 刷新页面
            }
          } else {
            if (res.status) {
              notification.success({
                top: 92,
                message: this.props.dict['main.action.confirm.success'],
                duration: 2
              })
              
              this.props.refreshdata(item.ReloadForm) // 刷新页面
            } else {
              notification.error({
                top: 92,
                message: res.message,
                duration: 15
              })
            }
          }
        })
    } else if (item.OpenType === 'newpage') { // 打开新页面
      let src = '#/' + item.LinkUrl + '?param=' + window.btoa(JSON.stringify({UserId: sessionStorage.getItem('UserID'), ID: datalist[0][ID[0]], BID: BID.length === 1 ? datalist[0][BID[0]] : ''}))
      window.open(src)
    } else if (item.OpenType === 'pop') { // 模态框
      this.setState({
        formdata: this.props.columns.map(column => {
          column.readonly = false
          if (column.ReadOnly.includes(item.MenuID)) {
            column.readonly = true
          }
          return column
        }),
        visible: true,
        execAction: item,
        primarykey: ID[0],
        bidkey: BID.length === 1 ? BID[0] : '',
        tabledata: datalist[0] || ''
      })
    } else if (item.OpenType === 'tab') { // 打开新标签页
      let menu = {
        MenuNo: this.props.MenuNo,
        MenuID: item.MenuID,
        MenuName: item.MenuName,
        type: 'TabForm',
        param: {
          formdata: this.props.columns.map(column => {
            column.readonly = false
            if (column.ReadOnly.includes(item.MenuID)) {
              column.readonly = true
            }
            return column
          }),
          execAction: item,
          primarykey: ID[0],
          bidkey: BID.length === 1 ? BID[0] : '',
          tabledata: datalist[0] || '',
          defaultproc: this.state.defaultproc,
          dict: this.props.dict
        }
      }
      let tabs = JSON.parse(JSON.stringify(this.props.tabviews))
      let _index = null
      let isexit = false
      tabs = tabs.map((tab, index) => {
        tab.selected = false
        if (tab.MenuNo === this.props.MenuNo && tab.MenuID === item.MenuID) {
          isexit = true
          tab.selected = true
          tab.param = menu.param
        } else if (tab.MenuNo === this.props.MenuNo && tab.type !== 'TabForm') {
          _index = index
          menu.MenuName = tab.MenuName + '-' + menu.MenuName
          menu.selected = true
        }
        return tab
      })
      if (!isexit) {
        tabs.splice(_index + 1, 0, menu)
      }
      this.props.modifyTabview(tabs)
    } else if (item.OpenType === 'blank') { // 当前页面跳转
      this.props.switchformview({
        formdata: this.props.columns.map(column => {
          column.readonly = false
          if (column.ReadOnly.includes(item.MenuID)) {
            column.readonly = true
          }
          return column
        }),
        execAction: item,
        primarykey: ID[0],
        bidkey: BID.length === 1 ? BID[0] : '',
        tabledata: datalist[0] || '',
        defaultproc: this.state.defaultproc
      })
    } else {
      notification.warning({
        top: 92,
        message: this.props.dict['main.action.settingerror'],
        duration: 10
      })
    }
  }
 
  getModels = () => {
    // 获取弹窗表单信息
    if (!this.state.execAction) return
    let cols = +this.state.execAction.FormLineQty
    if (![1, 2, 3].includes(cols)) {
      cols = 2
    }
    return (
      <Modal
        wrapClassName='datamanage-action-modal'
        title={this.state.execAction.MenuName || ''}
        visible={this.state.visible}
        width={document.body.clientWidth * this.state.execAction.PopWidth}
        onOk={this.handleOk}
        confirmLoading={this.state.confirmLoading}
        onCancel={this.handleCancel}
      >
        {this.state.formdata &&
          <MutilForm
            dict={this.props.dict}
            formlist={this.state.formdata}
            data={this.state.tabledata}
            cols={cols}
            wrappedComponentRef={(inst) => this.formRef = inst}
          />}
      </Modal>
    )
  }
 
  handleOk = () => {
    this.formRef.handleConfirm().then(res => {
      this.setState({
        confirmLoading: true
      })
      let values = []
      // 从表单中获取填写数据
      this.props.columns.forEach(column => {
        let value = ''
        if (res.hasOwnProperty(column.FieldName)) { // 依次选取表单值、初始值
          value = res[column.FieldName]
        } else if (column.InitVal) {
          value = column.InitVal
        }
        values.push(value)
      })
 
      let queryparam = { // 请求参数
        func: this.state.execAction.AuditProc || this.state.defaultproc[this.state.execAction.Action],
        ID: (this.state.tabledata && this.state.primarykey) ? this.state.tabledata[this.state.primarykey] : '', // 主键字段
        BID: (this.state.tabledata && this.state.bidkey) ? this.state.tabledata[this.state.bidkey] : '' // BID字段
      }
      // 添加和修改请求参数字段不同
      if (this.state.execAction.Action === 'Add') {
        queryparam.AddLongText = values.join(',')
      } else if (this.state.execAction.Action === 'Update') {
        queryparam.UptLongText = values.join(',')
      }
 
      // 提交请求
      Api.submitInterface(queryparam).then(result => {
        if (result.status) {
          notification.success({
            top: 92,
            message: this.props.dict['main.action.confirm.success'],
            duration: 2
          })
          this.setState({
            confirmLoading: false,
            visible: false
          })
 
          this.props.refreshdata(this.state.execAction.ReloadForm) // 刷新页面
        } else {
          this.setState({
            confirmLoading: false
          })
          notification.error({
            top: 92,
            message: result.message,
            duration: 15
          })
        }
      })
    }, () => {})
  }
 
  handleCancel = () => {
    // 取消
    this.setState({
      confirmLoading: false,
      visible: false
    })
    this.formRef.handleReset()
  }
 
  render() {
    return (
      <Affix offsetTop={48}>
        <div className="datamanage-button-list" id={this.props.MenuNo + 'mainaction'}>
          {this.props.actions.map((item, index) => {
            return (
              <Button
                className={'mk-btn ' + item.CssClass + ' mk-' + item.CssClass}
                icon={item.Icon}
                key={'action' + index}
                onClick={() => {this.actionTrigger(item)}}
              >{item.MenuName}</Button>
            )
          })}
          {this.getModels()}
        </div>
      </Affix>
    )
  }
}
 
const mapStateToProps = (state) => {
  return {
    tabviews: state.tabviews
  }
}
 
const mapDispatchToProps = (dispatch) => {
  return {
    modifyTabview: (tabviews) => dispatch(modifyTabview(tabviews))
  }
}
 
export default connect(mapStateToProps, mapDispatchToProps)(MainAction)