From 46773828b8c46e450a67eb1fc5e6124d87d97ab6 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期六, 23 九月 2023 19:51:11 +0800 Subject: [PATCH] 2023-09-23 --- src/menu/debug/index.jsx | 1997 ++++++++++++++++++++++++++++++++++++++++++++++++++++++---- 1 files changed, 1,843 insertions(+), 154 deletions(-) diff --git a/src/menu/debug/index.jsx b/src/menu/debug/index.jsx index 8e5849c..68dea66 100644 --- a/src/menu/debug/index.jsx +++ b/src/menu/debug/index.jsx @@ -1,11 +1,12 @@ import React, {Component} from 'react' import PropTypes from 'prop-types' -// import { fromJS } from 'immutable' -import { Modal, Button } from 'antd' -// import moment from 'moment' +import { fromJS } from 'immutable' +import { Modal, Button, Drawer, Tooltip } from 'antd' +import { ClockCircleOutlined, CheckCircleOutlined, CloseCircleOutlined, LoadingOutlined } from '@ant-design/icons' -// import Api from '@/api' -// import Utils from '@/utils/utils.js' +import Api from '@/api' +import Utils from '@/utils/utils.js' +import { formatSearch, joinMainSearchkey, getSearchRegs } from '@/utils/utils-custom.js' import './index.scss' class DebugSql extends Component { @@ -15,186 +16,1874 @@ state = { visible: false, - confirming: false, + sqlList: [], + status: '', + successIds: [], + errorIds: [], + errorMsg: {}, + execId: '' } + + sqlList = [] + verSqls = [] trigger = () => { - // const { config } = this.props + let config = fromJS(this.props.config).toJS() - // let list = [] - // let mainSearch = [] + let error = '' + + let check = (components) => { + components.forEach(item => { + if (error) return + + if (item.type === 'tabs') { + item.subtabs.forEach(tab => { + check(tab.components) + }) + return + } else if (item.type === 'group') { + check(item.components) + return + } else if (!item.errors || item.errors.length === 0) { + return + } + + item.errors.forEach(err => { + if (err.level !== 0 || error) return + error = `缁勪欢銆�${item.name}銆�${err.detail}` + }) + }) + } + + check(config.components) + + if (error) { + Modal.warning({ + title: error, + okText: '鐭ラ亾浜�' + }) + return + } + + this.sqlList = [] + + let regs = [ + { reg: /@userName@/ig, value: `'User_Name'` }, + { reg: /@fullName@/ig, value: `'Full_Name'` }, + { reg: /\$@/ig, value: '' }, + { reg: /@\$/ig, value: '' }, + { reg: /@datam@/ig, value: `''` }, + ] + + if (window.GLOB.externalDatabase !== null) { + regs.push({ + reg: /@db@/ig, + value: window.GLOB.externalDatabase + }) + } + if (config.urlFields) { + config.urlFields.forEach(field => { + regs.push({ + reg: new RegExp('@' + field + '@', 'ig'), + value: `'mk'` + }) + }) + } + + let process = config.process === 'true' + if (process) { + regs.push({ reg: /@works_flow_code@/ig, value: `'1949-10-01 15:00:00'` }) + } + + if (config.interfaces && config.interfaces.length > 0) { + config.interfaces.forEach(m => { + if (m.status !== 'true' || m.setting.interType !== 'system') return false + + let sql = this.formatDataSource(m, regs) + + this.sqlList.push({label: m.setting.name, children: [{label: '鏁版嵁婧�', sql: sql}]}) + }) + } + + this.filterComponent(config.components, [], regs, process) + + let sqls = [] + let foreachSql = (list, name, tabName = '', supName = '') => { + list.forEach(item => { + if (item.children) { + if (item.tabName) { + item.children.forEach(cell => { + if (cell.children) { + foreachSql(cell.children, cell.label, item.tabName, name) + } + }) + } else { + foreachSql(item.children, name, tabName, supName) + } + } else if (item.sql) { + sqls.push({uuid: Utils.getuuid() ,label: item.label, name: name, tabName: tabName, supName: supName, sql: item.sql}) + } + }) + } + + this.sqlList.forEach(item => { + if (item.children) { + foreachSql(item.children, item.label) + } + }) + + if (sqls.length === 0) { + Modal.warning({ + title: '褰撳墠鑿滃崟鏃犲彲楠岃瘉鑴氭湰銆�', + okText: '鐭ラ亾浜�' + }) + return + } + + this.verSqls = sqls + let that = this + + Modal.confirm({ + content: `褰撳墠鑿滃崟鍏�${this.sqlList.length}涓粍浠讹紝${sqls.length}椤硅剼鏈渶瑕佹楠�${sqls.length > 20 ? '锛屾椂闂村ぇ姒傞渶瑕�' + parseInt(sqls.length / 2) + '绉�' : ''}銆俙, + onOk() { + that.setState({visible: true, status: 'loading', sqlList: fromJS(sqls).toJS(), successIds: [], errorIds: [], errorMsg: {}, execId: ''}, () => { + that.roopSql() + }) + }, + onCancel() {} + }) + + this.sqlList = [] } - // formatSearch (config) { - // if (!config.search) return [] + filterComponent = (components, mainSearch, regs, process, ispop = false) => { + let appType = sessionStorage.getItem('appType') + let _mainSearch = mainSearch || [] - // let values = [] + if (appType === 'mob') { + let search = [] + let ms = null + components.forEach(item => { + if (item.type === 'topbar' && item.wrap.type !== 'navbar' && item.search) { + ms = item.search + } else if (item.type === 'search' && item.wrap.field) { + search.push({ + type: 'text', + label: item.wrap.label, + field: item.wrap.field, + match: item.wrap.match, + required: item.wrap.required, + value: item.wrap.initval || '' + }) + } + }) - // config.search.forEach(item => { - // item.hidden = item.Hide === 'true' - // item.required = !item.hidden && item.required === 'true' - // item.advanced = item.advanced === 'true' - // item.$forbid = item.query === 'false' - // item.precision = item.precision || 'day' + if (ms) { + if (ms.setting.type === 'search') { + search.push({ + type: 'text', + label: '鎼滅储鏍�', + field: ms.setting.field, + match: ms.setting.match, + required: ms.setting.required, + value: ms.setting.initval || '' + }) + } + search.push(...ms.fields) - // if (item.type === 'date') { // 鏃堕棿鎼滅储 - // let format = 'YYYY-MM-DD' - // if (item.precision === 'day') { + ms.groups.forEach(group => { + if (group.setting.type === 'search') { + search.push({ + type: 'text', + label: group.wrap.name, + field: group.setting.field, + match: group.setting.match, + required: group.setting.required, + value: group.setting.initval || '' + }) + } + search.push(...group.fields) + }) + } - // } else if (item.precision === 'hour') { - // format = 'YYYY-MM-DD HH' - // } else if (item.precision === 'minute') { - // format = 'YYYY-MM-DD HH:mm' - // } else if (item.precision === 'second') { - // format = 'YYYY-MM-DD HH:mm:ss' - // } + if (search.length > 0) { + _mainSearch = search + } + } else { + components.forEach(component => { + if (component.type !== 'search') return + + _mainSearch = component.search || [] + }) + } - // item.initval = item.initval ? moment().subtract(item.initval, 'days').format(format) : '' - // } else if (item.type === 'datemonth') { - // item.initval = item.initval ? moment().subtract(item.initval, 'month').format('YYYY-MM') : '' - // } else if (item.type === 'dateweek') { - // item.initval = item.initval ? moment().subtract(item.initval * 7, 'days').format('YYYY-MM-DD') : '' - // } else if (item.type === 'daterange') { - // let format = 'YYYY-MM-DD' - // if (item.precision === 'day') { + components.forEach(item => { + if (item.type === 'tabs') { + item.subtabs.forEach(tab => { + this.filterComponent(tab.components, _mainSearch, regs, process) + }) + } else if (item.type === 'group') { + this.filterComponent(item.components, _mainSearch, regs, process) + } else { + let children = [] + if (item.wrap && item.setting) { + if (item.wrap.datatype === 'public' || item.wrap.datatype === 'static') { + item.setting.interType = 'other' + } + } - // } else if (item.precision === 'hour') { - // format = 'YYYY-MM-DD HH' - // } else if (item.precision === 'minute') { - // format = 'YYYY-MM-DD HH:mm' - // } else if (item.precision === 'second') { - // format = 'YYYY-MM-DD HH:mm:ss' - // } - // if (item.initval === 'week') { - // item.initval = [moment().startOf('week').format(format), moment().endOf('week').format(format)].join(',') - // } else if (item.initval === 'month') { - // item.initval = [moment().startOf('month').format(format), moment().endOf('month').format(format)].join(',') - // } else if (item.initval === 'lastMonth') { - // item.initval = [moment().subtract(1, 'months').startOf('month').format(format), moment().subtract(1, 'months').endOf('month').format(format)].join(',') - // } else if (item.initval) { - // try { - // let _initval = JSON.parse(item.initval) - // let _vals = [moment().subtract(_initval[0], 'days').format(format), moment().subtract(_initval[1], 'days').format(format)] - // item.initval = _vals.join(',') - // } catch (e) { - // item.initval = '' - // } - // } - // } else if (item.type === 'group') { - // if (item.initval && item.initval[0]) { - // let _type = item.initval[0] - // let _val = item.initval[1] - // let _dateRange = '' + if (appType === 'mob' && item.type !== 'search' && item.type !== 'topbar' && item.search && item.search.length > 0) { + item.search = [] + } + + if (item.subtype === 'tablecard') { // 鍏煎 + item.type = 'card' + } + + if (item.setting && item.setting.interType === 'system') { + let sql = this.formatDataSource(item, regs, _mainSearch) + + children.push({label: '鏁版嵁婧�', sql: sql}) + } else if (item.setting && item.setting.useMSearch === 'true') { + let searches = item.search || [] + if (_mainSearch.length > 0) { + searches = [...searches, ..._mainSearch] + } + item.$searches = fromJS(searches).toJS() + } + + item.action && item.action.forEach(cell => { + if (cell.hidden === 'true') return false + let sql = this.resetButton(item, cell, process) + + if (sql) { + if (typeof(sql) === 'string') { + children.push({label: cell.label, sql: sql}) + } else { + children.push({label: cell.label, tabName: cell.label, sql: '', children: sql}) + } + } + }) + + if (item.type === 'table') { + let getCols = (cols) => { + cols.forEach(col => { + if (col.type === 'action') { + col.type = 'custom' + } + if (col.type === 'colspan') { + getCols(col.subcols || []) + } else if (col.type === 'custom') { + col.elements.forEach(cell => { + if (cell.eleType !== 'button' || cell.hidden === 'true') return + let sql = this.resetButton(item, cell, process) + + if (sql) { + if (typeof(sql) === 'string') { + children.push({label: cell.label, sql: sql}) + } else { + children.push({label: cell.label, tabName: cell.label, sql: '', children: sql}) + } + } + }) + } + }) + } + + getCols(item.cols) + + if (item.subtype === 'editable' && item.submit.intertype === 'system') { + let sql = this.getEditTableSql(item.submit, item.cols, item.columns) + children.push({label: '鎻愪氦', sql: sql}) + } + } else if (item.type === 'card' || item.type === 'carousel' || item.type === 'timeline') { + item.subcards && item.subcards.forEach(card => { + card.elements && card.elements.forEach(cell => { + if (cell.eleType !== 'button' || cell.hidden === 'true') return + let sql = this.resetButton(item, cell, process) + + if (sql) { + if (typeof(sql) === 'string') { + children.push({label: cell.label, sql: sql}) + } else { + children.push({label: cell.label, tabName: cell.label, sql: '', children: sql}) + } + } + }) + + if (!card.backElements || card.backElements.length === 0) return + + card.backElements.forEach(cell => { + if (cell.eleType !== 'button' || cell.hidden === 'true') return + let sql = this.resetButton(item, cell, process) + + if (sql) { + if (typeof(sql) === 'string') { + children.push({label: cell.label, sql: sql}) + } else { + children.push({label: cell.label, tabName: cell.label, sql: '', children: sql}) + } + } + }) + }) + } else if (item.type === 'balcony') { + item.elements.forEach(cell => { + if (cell.eleType !== 'button' || cell.hidden === 'true') return + let sql = this.resetButton(item, cell, process) + + if (sql) { + if (typeof(sql) === 'string') { + children.push({label: cell.label, sql: sql}) + } else { + children.push({label: cell.label, tabName: cell.label, sql: '', children: sql}) + } + } + }) + } else if (item.type === 'form') { + item.subcards.forEach(group => { + group.subButton.OpenType = 'formSubmit' + if (!group.subButton.Ot) { + group.subButton.Ot = item.wrap.datatype === 'static' ? 'notRequired' : 'requiredSgl' + } + let sql = this.resetButton(item, group.subButton, process, group) + + if (sql) { + children.push({label: group.subButton.label, sql: sql}) + } + }) + } + + if (children.length) { + if (ispop) { + this.sqlPopList.push({label: item.name, children: children}) + } else { + this.sqlList.push({label: item.name, children: children}) + } + } + } + }) + } + + resetButton = (item, cell, process, group) => { + let sql = '' + if (['exec', 'prompt', 'pop', 'form', 'formSubmit'].includes(cell.OpenType)) { + if (cell.intertype === 'system' || cell.procMode === 'system') { // 绯荤粺鎺ュ彛 + sql = this.getSysDefaultSql(cell, item, process, group) + } + } else if (cell.OpenType === 'excelIn') { + if (cell.intertype === 'system') { + sql = this.getExcelInSql(cell) + } + } else if (cell.OpenType === 'excelOut') { + if (cell.intertype === 'system' && cell.verify && cell.verify.dataType === 'custom') { + sql = this.getExcelOutSql(cell, item) + } + } else if (cell.OpenType === 'funcbutton') { + if (cell.funcType === 'print') { + + } + } else if (cell.OpenType === 'popview') { + if (cell.config && cell.config.components) { + this.sqlPopList = [] + let regs = [ + { reg: /@userName@/ig, value: `'User_Name'` }, + { reg: /@fullName@/ig, value: `'Full_Name'` }, + { reg: /\$@/ig, value: '' }, + { reg: /@\$/ig, value: '' }, + { reg: /@datam@/ig, value: `''` }, + ] + + if (window.GLOB.externalDatabase !== null) { + regs.push({ + reg: /@db@/ig, + value: window.GLOB.externalDatabase + }) + } - // if (_type === 'day') { - // _dateRange = [moment().subtract(_val, 'days').format('YYYY-MM-DD'), - // moment().subtract(_val, 'days').format('YYYY-MM-DD')] - // } else if (_type === 'week') { - // _dateRange = [moment().subtract(_val * 7, 'days').startOf('week').format('YYYY-MM-DD'), - // moment().subtract(_val * 7, 'days').endOf('week').format('YYYY-MM-DD')] - // } else if (_type === 'month') { - // _dateRange = [moment().subtract(_val, 'month').startOf('month').format('YYYY-MM-DD'), - // moment().subtract(_val, 'month').endOf('month').format('YYYY-MM-DD')] - // } else if (_type === 'quarter') { - // let _differ = parseInt(moment().format('MM')) % 3 - // let _pdiffer = 0 - // let _ndiffer = 0 - - // // 宸�艰绠� - // switch(_differ) { - // case 0: - // _pdiffer = 2 - // _ndiffer = 0 - // break - // case 1: - // _pdiffer = 0 - // _ndiffer = -2 - // break - // case 2: - // _pdiffer = 1 - // _ndiffer = -1 - // break - // default: - // } - // _dateRange = [moment().subtract(_pdiffer + _val * 3, 'month').startOf('month').format('YYYY-MM-DD'), - // moment().subtract(_ndiffer + _val * 3, 'month').endOf('month').format('YYYY-MM-DD')] - // } else if (_type === 'year') { - // let _year = parseInt(moment().format('YYYY')) - _val - // _dateRange = [_year + '-01-01', _year + '-12-31'] - // } else if (_type === 'customized') { - // try { - // _val = JSON.parse(_val) - // } catch (e) { - // _val = [0, 0] - // } - // _dateRange = [moment().subtract(_val[0], 'days').format('YYYY-MM-DD'), - // moment().subtract(_val[1], 'days').format('YYYY-MM-DD')] - // } + if (process) { + regs.push({ reg: /@works_flow_code@/ig, value: `'1949-10-01 15:00:00'` }) + } + this.filterComponent(cell.config.components, [], regs, process, true) - // item.initval = _dateRange.join(',') - // item.initType = _type - // } else { - // item.initval = '' - // item.initType = '' - // } - // } + if (this.sqlPopList.length) { + sql = fromJS(this.sqlPopList).toJS() + } + } + } + + return sql + } + + getSysDefaultSql = (btn, component, process, group) => { + let primaryId = 'id' + let BID = 'bid' + let verify = btn.verify || {} + let _actionType = null + let setting = component.setting + let columns = component.columns || [] + + if (verify.default !== 'false') { // 鍒ゆ柇鏄惁浣跨敤榛樿sql + _actionType = btn.sqlType + } + + let _initCustomScript = '' // 鍒濆鍖栬剼鏈� + let _prevCustomScript = '' // 榛樿sql鍓嶆墽琛岃剼鏈� + let _backCustomScript = '' // 榛樿sql鍚庢墽琛岃剼鏈� + + verify.scripts && verify.scripts.forEach(item => { + if (item.status === 'false') return + + if (item.position === 'init') { + _initCustomScript += ` + /* 鑷畾涔夎剼鏈� */ + ${item.sql} + ` + } else if (item.position === 'front') { + _prevCustomScript += ` + /* 鑷畾涔夎剼鏈� */ + ${item.sql} + ` + } else { + _backCustomScript += ` + /* 鑷畾涔夎剼鏈� */ + ${item.sql} + ` + } + }) + + // 闇�瑕佸0鏄庣殑鍙橀噺闆� + let _vars = ['tbid', 'errorcode', 'retmsg', 'billcode', 'bvoucher', 'fibvoucherdate', 'fiyear', 'username', 'fullname', 'modulardetailcode', 'roleid', 'mk_departmentcode', 'mk_organization', 'mk_user_type', 'mk_nation', 'mk_province', 'mk_city', 'mk_district', 'mk_address', 'mk_deleted', 'bid'] + + // 涓婚敭瀛楁 + let primaryKey = setting.primaryKey || 'id' + + // sql璇彞 + let _sql = '' + + let _initvars = [] // 宸茶祴鍊煎瓧娈甸泦 + let _initFormfields = [] + let _initColfields = [] + let _declarefields = [] + + let formdata = null + if (btn.OpenType === 'pop') { + formdata = [] + if (btn.modal && btn.modal.fields) { + btn.modal.fields.forEach(item => { + if (!item.field) return + + let _item = { + key: item.field, + fieldlen: item.fieldlength || 50, + writein: item.writein !== 'false', + type: item.type + } + + if (_item.type === 'datemonth') { + _item.type = 'text' + } else if (_item.type === 'number' || _item.type === 'rate') { + _item.fieldlen = item.decimal || 0 + } else if (_item.type === 'date') { + _item.type = item.declareType === 'nvarchar(50)' ? 'text' : 'date' + } + + formdata.push(_item) + }) + } + } else if (btn.OpenType === 'form') { + formdata = [] + + let item = { + type: 'text', + readin: true, + writein: true, + fieldlen: 50, + key: btn.field + } + if (btn.formType === 'counter') { + item.type = 'number' + item.fieldlen = 0 + } else if (btn.formType === 'switch' || btn.formType === 'radio') { + if (typeof(btn.openVal) === 'number') { + item.type = 'number' + item.fieldlen = 0 + } + } + formdata.push(item) + } else if (btn.OpenType === 'formSubmit') { + formdata = [] + if (group.fields) { + group.fields.forEach(item => { + if (!item.field) return + + let _item = { + key: item.field, + fieldlen: item.fieldlength || 50, + writein: item.writein !== 'false', + type: item.type + } + + if (_item.type === 'datemonth') { + _item.type = 'text' + } else if (_item.type === 'number' || _item.type === 'rate') { + _item.fieldlen = item.decimal || 0 + } else if (_item.type === 'date') { + _item.type = item.declareType === 'nvarchar(50)' ? 'text' : 'date' + } + + formdata.push(_item) + }) + } + } + // 鑾峰彇瀛楁閿�煎 + formdata && formdata.forEach(form => { + let _key = form.key.toLowerCase() + if (!_initvars.includes(_key)) { + _initvars.push(_key) + if (form.type === 'number' || form.type === 'rate') { + _initFormfields.push(`@${_key}=1`) + } else if (form.type === 'date') { + _initFormfields.push(`@${_key}='1949-10-01'`) + } else if (form.type === 'select' || form.type === 'link' || form.type === 'radio') { + _initFormfields.push(`@${_key}='1'`) + } else { + _initFormfields.push(`@${_key}='mk'`) + } + } - // item.oriInitval = item.initval + if (!_vars.includes(_key)) { + _vars.push(_key) + + if (form.fieldlen && form.fieldlen > 4000) { + form.fieldlen = 'max' + } + + let _type = `nvarchar(${form.fieldlen})` + + if (form.type.match(/date/ig)) { + _type = 'datetime' + } else if (form.type === 'number') { + _type = `decimal(18,${form.fieldlen})` + } else if (form.type === 'rate') { + _type = `decimal(18,2)` + } + + _declarefields.push(`@${_key} ${_type}`) + } + }) + + // 娣诲姞鏁版嵁涓瓧娈碉紝琛ㄥ崟鍊间紭鍏�(鎸夐挳涓嶉�夎鎴栧琛屾嫾鎺ユ椂璺宠繃) + if (btn.Ot !== 'notRequired' && columns && columns.length > 0) { + const setField = (col) => { + if (!col.field) return + let _key = col.field.toLowerCase() + + if (!_initvars.includes(_key)) { + _initvars.push(_key) + + if (col.datatype && /^date/ig.test(col.datatype)) { + _initColfields.push(`@${_key}='1949-10-01'`) + } else if (col.type === 'number') { + _initColfields.push(`@${_key}=1`) + } else { + _initColfields.push(`@${_key}='mk'`) + } + } + + if (!_vars.includes(_key)) { + _vars.push(_key) + + if (col.datatype) { + _declarefields.push(`@${_key} ${col.datatype}`) + } else { + if (col.fieldlength && col.fieldlength > 4000) { + col.fieldlength = 'max' + } + + let _type = `nvarchar(${col.fieldlength || 50})` + + if (col.type === 'number') { + let _length = col.decimal ? col.decimal : 0 + _type = `decimal(18,${_length})` + } else if (col.type === 'picture' || col.type === 'textarea') { + _type = `nvarchar(${col.fieldlength || 512})` + } + + _declarefields.push(`@${_key} ${_type}`) + } + } + } + + columns.forEach(col => { + if (col.field === 'works_flow_param') return + + if (col.type === 'colspan' || col.type === 'old_colspan') { + col.subcols.forEach(cell => { + setField(cell) + }) + } else { + setField(col) + } + }) + } + + // 鍙橀噺澹版槑 + _declarefields = _declarefields.join(',') + if (_declarefields) { + _declarefields = ',' + _declarefields + } + _sql = `Declare @tbid nvarchar(50),@ErrorCode nvarchar(50),@retmsg nvarchar(4000),@BillCode nvarchar(50),@BVoucher nvarchar(50),@FIBVoucherDate nvarchar(50), @FiYear nvarchar(50),@ModularDetailCode nvarchar(50), @UserName nvarchar(50),@FullName nvarchar(50),@RoleID nvarchar(512),@mk_departmentcode nvarchar(512),@mk_organization nvarchar(512),@mk_user_type nvarchar(20),@mk_nation nvarchar(50),@mk_province nvarchar(50),@mk_city nvarchar(50),@mk_district nvarchar(50),@mk_address nvarchar(100),@mk_deleted int,@bid nvarchar(50)${_declarefields} + ` + + let userName = 'User_Name' + let fullName = 'Full_Name' + let RoleID = 'role_id' + let departmentcode = 'departmentcode' + let organization = 'organization' + let mk_user_type = 'mk_user_type' + let nation = 'nation' + let province = 'province' + let city = 'city' + let district = 'district' + let address = 'address' + + // 鍒濆鍖栧嚟璇佸強鐢ㄦ埛淇℃伅瀛楁 + _sql += ` + /* 鍑瘉鍙婄敤鎴蜂俊鎭垵濮嬪寲璧嬪�� */ + select @BVoucher='',@FIBVoucherDate='',@FiYear='',@ErrorCode='',@retmsg='',@UserName='${userName}', @FullName='${fullName}', @RoleID='${RoleID}', @mk_departmentcode='${departmentcode}', @mk_organization='${organization}', @mk_user_type='${mk_user_type}', @mk_nation='${nation}', @mk_province='${province}', @mk_city='${city}', @mk_district='${district}', @mk_address='${address}', @mk_deleted=1, @bid='${BID}', @BillCode='', @ModularDetailCode='' + ` + + // 琛ㄥ崟鍙橀噺璧嬪�� + if (_initFormfields.length > 0) { + _sql += ` + /* 琛ㄥ崟鍙橀噺璧嬪�� */ + select ${_initFormfields.join(',')} + ` + } + // 鏄剧ず鍒楀彉閲忚祴鍊� + if (_initColfields.length > 0) { + _sql += ` + /* 鏄剧ず鍒楀彉閲忚祴鍊� */ + select ${_initColfields.join(',')} + ` + } + + // 鍘婚櫎绂佺敤鐨勯獙璇� + if (verify.contrasts) { + verify.contrasts = verify.contrasts.filter(item => item.status !== 'false') + } + if (verify.uniques) { + verify.uniques = verify.uniques.filter(item => item.status !== 'false') + } + if (verify.customverifys) { + verify.customverifys = verify.customverifys.filter(item => item.status !== 'false') + } + if (verify.billcodes) { + verify.billcodes = verify.billcodes.filter(item => item.status !== 'false') + } + + if (_initCustomScript) { + _sql += _initCustomScript + } + + // 鍚敤璐︽湡楠岃瘉 + if (verify.accountdate === 'true') { + let orgcode = `''` + let date = `''` + if (verify.accountfield && _initvars.includes(verify.accountfield.toLowerCase())) { + orgcode = '@' + verify.accountfield + } + if (verify.voucherdate && _initvars.includes(verify.voucherdate.toLowerCase())) { + date = '@' + verify.voucherdate + } + + _sql += ` + /* 璐︽湡楠岃瘉 */ + exec s_FIBVoucherDateCheck @OrgCode=${orgcode},@FIBVoucherDate=${date},@ErrorCode=@ErrorCode OUTPUT,@retmsg=@retmsg OUTPUT + if @ErrorCode!='' + GOTO aaa + ` + } + + // 澶辨晥楠岃瘉锛屾坊鍔犳暟鎹椂涓嶇敤 + if (btn.sqlType !== 'insert' && btn.Ot !== 'notRequired' && verify.invalid === 'true' && setting.dataresource) { + let datasource = setting.dataresource + let customScript = setting.customScript || '' + let orderBy = setting.order - // if (values) { - // item.initval = values[item.field] || '' - // } + if (setting.queryType === 'statistics' || customScript) { + let searches = formatSearch(component.$searches || []) + let regoptions = getSearchRegs(searches) + + regoptions.push({ + reg: new RegExp('@userName@', 'ig'), + value: `'${userName}'` + }, { + reg: new RegExp('@fullName@', 'ig'), + value: `'${fullName}'` + }, { + reg: new RegExp('@orderBy@', 'ig'), + value: orderBy + }, { + reg: new RegExp('@pageSize@', 'ig'), + value: 999999 + }, { + reg: new RegExp('@pageIndex@', 'ig'), + value: 1 + }) + + regoptions.forEach(item => { + datasource = datasource.replace(item.reg, item.value) + customScript = customScript.replace(item.reg, item.value) + }) + } + + if (customScript) { + _sql += ` + /* 鏁版嵁婧愯嚜瀹氫箟鑴氭湰锛岃娉ㄦ剰鍙橀噺瀹氫箟鏄惁閲嶅 */ + ${customScript} + ` + } + + if (btn.Ot === 'requiredOnce') { + _sql += ` + /* 澶辨晥楠岃瘉 */ + select @tbid='', @ErrorCode='',@retmsg='' + select @tbid='X' from ${datasource} right join (select ID from dbo.SplitComma(@ID@)) sp + on tb.${primaryKey} =sp.id where tb.${primaryKey} is null + + If @tbid!='' + Begin + select @ErrorCode='E',@retmsg='鏁版嵁宸插け鏁�' + goto aaa + end + ` + } else { + _sql += ` + /* 澶辨晥楠岃瘉 */ + select @tbid='', @ErrorCode='',@retmsg='' + select @tbid=${primaryKey} from ${datasource} where ${primaryKey}=@ID@ + If @tbid='' + Begin + select @ErrorCode='E',@retmsg='鏁版嵁宸插け鏁�' + goto aaa + end + ` + } + } + + // 姣旇緝楠岃瘉 + if (verify.contrasts && verify.contrasts.length > 0) { + verify.contrasts.forEach(item => { + _sql += ` + /* 姣旇緝楠岃瘉 */ + If ${item.frontfield} ${item.operator} ${item.backfield} + Begin + select @ErrorCode='${item.errorCode}',@retmsg='${item.errmsg}' + goto aaa + end + ` + }) + } + + // 鑷畾涔夐獙璇� + verify.customverifys && verify.customverifys.forEach(item => { + _sql += ` + /* 鑷畾涔夐獙璇� */ + select @tbid='', @ErrorCode='',@retmsg='' + select top 1 @tbid='X' from (${item.sql}) a + If @tbid ${item.result === 'true' ? '!=' : '='}'' + Begin + select @ErrorCode='${item.errorCode}',@retmsg='${item.errmsg}' + goto aaa + end + ` + }) + + // 鍗曞彿鐢熸垚锛屼娇鐢ㄤ笂绾d锛圔ID锛夋垨鍒楄〃鏁版嵁锛屽0鏄庡彉閲忥紙妫�楠岋級 + let _billcodesSql = '' + if (formdata && verify.billcodes && verify.billcodes.length > 0) { + let keys = formdata.map(item => item.key.toLowerCase()) // 琛ㄥ崟瀛楁 + + verify.billcodes.forEach(item => { + let _key = item.field.toLowerCase() + let _linkKey = item.linkField ? item.linkField.toLowerCase() : '' + + if (!keys.includes(_key)) return // 琛ㄥ崟涓笉鍚崟鍙风敓鎴愬瓧娈� + + let _ModularDetailCode = '' + let _lpline = '' + if (item.TypeCharOne === 'Lp') { + if (_linkKey === 'bid' && BID) { // 鏇挎崲bid + _lpline = `set @ModularDetailCode= 'Lp'+ right('${item.mark || btn.uuid}'+@BID@,48)` + } else { + _lpline = `set @ModularDetailCode= 'Lp'+ right('${item.mark || btn.uuid}'+@${_linkKey},48)` + } + _ModularDetailCode = '@ModularDetailCode' + } else if (item.TypeCharOne === 'BN') { + let _val = '' + if (_linkKey === 'bid' && BID) { // 鏇挎崲bid + _val = BID + } else { + _val = 0 + } + _ModularDetailCode = `'${item.TypeCharOne + _val}'` + } else { + _ModularDetailCode = `'${item.ModularDetailCode}'` + } + + let _declare = '' + + if (!_vars.includes(_key)) { + _declare = `Declare @${_key} nvarchar(50)` + _vars.push(_key) + } + + _billcodesSql += ` + /* 鍗曞彿鐢熸垚 */ + ${_declare} + select @BillCode='', @${_key}='', @ModularDetailCode='' + ${_lpline} + exec s_get_BillCode + @ModularDetailCode=${_ModularDetailCode}, + @Type=${item.Type}, + @TypeCharOne='${item.TypeCharOne}', + @TypeCharTwo ='${item.TypeCharTwo}', + @BillCode =@BillCode output, + @ErrorCode =@ErrorCode output, + @retmsg=@retmsg output + if @ErrorCode!='' + goto aaa + set @${_key}=@BillCode + ` + }) + + if (_actionType !== 'insertOrUpdate') { + _sql += _billcodesSql + } + } + + // 鍞竴鎬ч獙璇侊紝蹇呴』瀛樺湪琛ㄥ崟锛堣〃鍗曞瓨鍦ㄦ椂锛屼富閿潎涓哄崟鍊硷級,蹇呴』濉啓鏁版嵁婧愶紝澶氳鎷兼帴鏃朵笉鍙敤 + if (formdata && verify.uniques && verify.uniques.length > 0 && btn.Ot !== 'requiredOnce') { + verify.uniques.forEach(item => { + let _fieldValue = [] // 琛ㄥ崟閿�煎field=value + let _value = [] // 琛ㄥ崟鍊硷紝鐢ㄤ簬閿欒鎻愮ず + let _labels = item.fieldlabel.split(',') // 琛ㄥ崟鎻愮ず鏂囧瓧 + let arr = [] // 楠岃瘉涓婚敭 + + item.field.split(',').forEach((_field, index) => { + let _key = _field.toLowerCase() + let _val = '' + let _fval = `'${_val}'` + + if (_key === 'bid') { // 琛ㄥ崟涓病鏈塨id鍒欎娇鐢ㄧ郴缁焍id鍙橀噺 + _fval = '@BID@' + } - // if (item.blacklist && item.blacklist.length > 0 && !item.hidden) { - // if (item.blacklist.filter(v => roleId.indexOf(v) > -1).length > 0) { - // item.hidden = true - // item.required = false - // } - // } + arr.push(_key) + _fieldValue.push(`${_key}=${_fval}`) + + _value.push(`${_labels[index] || ''}锛�${_val || ''}`) + }) + + let _verifyType = '' + if (item.verifyType === 'logic') { + _verifyType = ' and deleted=0' + } + + if (!arr.includes(primaryKey.toLowerCase())) { + _fieldValue.push(`${primaryKey} !='${primaryId}'`) + } + + _sql += ` + /* 鍞竴鎬ч獙璇� */ + select @tbid='', @ErrorCode='',@retmsg='' + select @tbid='X' from ${btn.sql} where ${_fieldValue.join(' and ')}${_verifyType} + If @tbid!='' + Begin + select @ErrorCode='${item.errorCode}',@retmsg='${_value.join(', ')} 宸插瓨鍦�' + goto aaa + end + ` + }) + } else if (verify.uniques && verify.uniques.length > 0 && btn.Ot === 'requiredOnce' && setting.dataresource) { + let datasource = setting.dataresource + if (/\s/.test(datasource)) { // 鎷兼帴鍒悕 + if (!/tb$/.test(datasource)) { + datasource = '(' + datasource + ') tb' + } + } else { + datasource = datasource + ' tb' + } + + if (setting.customScript) { + _sql += ` + /* 鏁版嵁婧愯嚜瀹氫箟鑴氭湰锛岃娉ㄦ剰鍙橀噺瀹氫箟鏄惁閲嶅 */ + ${setting.customScript} + ` + } + + verify.uniques.forEach(item => { + _sql += ` + /* 鍚岀被鏁版嵁楠岃瘉 */ + Set @tbid='' + + Select top 1 @tbid='X' from (select distinct ${item.field},1 as n from ${datasource} inner join (select ID from dbo.SplitComma(@ID@)) sp on tb.${primaryKey}=sp.ID ) a having sum(n)>1 + + If @tbid!='' + Begin + Set @ErrorCode='E' Set @retmsg='${item.fieldlabel} 鍊间笉鍞竴' + goto aaa + end + ` + }) + } + + let hasvoucher = false + + // 鍑瘉-鏄剧ず鍒椾腑閫夊彇,蹇呴』閫夎 + if (verify.voucher && verify.voucher.enabled && btn.Ot !== 'requiredOnce') { + let _voucher = verify.voucher + + hasvoucher = true + + _sql += ` + /* 鍒涘缓鍑瘉 */ + exec s_BVoucher_Create + @Bill ='0', + @BVoucherType ='${_voucher.BVoucherType}', + @VoucherTypeOne ='${_voucher.VoucherTypeOne}', + @VoucherTypeTwo ='${_voucher.VoucherTypeTwo}', + @Type =${_voucher.Type}, + @UserID=@UserID@, + @Username=@Username, + @FullName=@FullName, + @BVoucher =@BVoucher OUTPUT , + @FIBVoucherDate =@FIBVoucherDate OUTPUT , + @FiYear =@FiYear OUTPUT , + @ErrorCode =@ErrorCode OUTPUT, + @retmsg=@retmsg OUTPUT + if @ErrorCode!='' + GOTO aaa + ` + } + + let _insertsql = '' + if (_actionType === 'insert' || _actionType === 'insertOrUpdate') { // 娣诲姞璇彞 + let keys = [] + let values = [] + + formdata.forEach(item => { + if (item.writein === false) return + let _key = item.key.toLowerCase() + + keys.push(_key) + values.push('@' + _key) + }) + + if (!keys.includes(primaryKey.toLowerCase())) { + keys.push(primaryKey.toLowerCase()) + values.push('\'' + primaryId + '\'') + } + if (!keys.includes('createuserid')) { + keys.push('createuserid') + values.push('@userid@') + } + if (!keys.includes('createuser')) { + keys.push('createuser') + values.push('@username') + } + if (!keys.includes('createstaff')) { + keys.push('createstaff') + values.push('@fullname') + } + if (!keys.includes('bid')) { + keys.push('bid') + values.push('@BID@') + } + + if (!keys.includes('typename')) { + keys.push('typename') + values.push('@typename@') + } + + keys = keys.join(',') + values = values.join(',') + _insertsql = `insert into ${btn.sql} (${keys}) select ${values};` + } + + let _updatesql = '' + if (_actionType === 'update' || _actionType === 'audit' || _actionType === 'insertOrUpdate') { // 淇敼璇彞 + let _form = [] + let _arr = [] + + formdata.forEach(item => { + if (item.writein === false) return + let _key = item.key.toLowerCase() + + _arr.push(_key) + _form.push(_key + '=@' + _key) + }) + + if (_actionType === 'audit') { + if (!_arr.includes('submitdate')) { + _form.push('submitdate=getdate()') + } + if (!_arr.includes('submituser')) { + _form.push('submituser=@username') + } + if (!_arr.includes('submitstaff')) { + _form.push('submitstaff=@fullname') + } + if (!_arr.includes('submituserid')) { + _form.push('submituserid=@userid@') + } + } else { + if (!_arr.includes('modifydate')) { + _form.push('modifydate=getdate()') + } + if (!_arr.includes('modifyuser')) { + _form.push('modifyuser=@username') + } + if (!_arr.includes('modifystaff')) { + _form.push('modifystaff=@fullname') + } + if (!_arr.includes('modifyuserid')) { + _form.push('modifyuserid=@userid@') + } + } + + if (hasvoucher) { + if (!_arr.includes('bvoucher')) { + _form.push('BVoucher=@BVoucher') + } + if (!_arr.includes('fibvoucherdate')) { + _form.push('FIBVoucherDate=@FIBVoucherDate') + } + if (!_arr.includes('fiyear')) { + _form.push('FiYear=@FiYear') + } + } + if (!_arr.includes('typename')) { + _form.push('typename=@typename@') + } + _form = _form.join(',') + + let _ID = '=@ID@' + if (btn.Ot === 'requiredOnce') { + _ID = ' in (select ID from dbo.SplitComma(@ID@))' + } + + _updatesql = `update ${btn.sql} set ${_form} where ${primaryKey}${_ID};` + } + + if (_prevCustomScript) { + _sql += _prevCustomScript + } + + // 娣诲姞銆佷慨鏀广�侀�昏緫鍒犻櫎銆佺墿鐞嗗垹闄� + if (_actionType === 'insert') { + _sql += ` + /* 榛樿sql */ + ${_insertsql}` + } else if (_actionType === 'update' || _actionType === 'audit') { + _sql += ` + /* 榛樿sql */ + ${_updatesql}` + } else if (_actionType === 'LogicDelete') { // 閫昏緫鍒犻櫎 + let _ID = '=@ID@' + if (btn.Ot === 'requiredOnce') { + _ID = ' in (select ID from dbo.SplitComma(@ID@))' + } + + _sql += ` + /* 榛樿sql */ + update ${btn.sql} set deleted=@mk_deleted,modifydate=getdate(),modifyuser=@username,modifystaff=@fullname,modifyuserid=@userid@ where ${primaryKey}${_ID};` + + } else if (_actionType === 'delete') { // 鐗╃悊鍒犻櫎 + let _msg = '' + if (columns && columns.length > 0 && btn.Ot !== 'notRequired') { + let _index = 0 + columns.forEach(col => { + if (!col.field || col.Hide === 'true' || _index >= 4) return + _msg += col.label + '=0,' + _index++ + }) + } + + let _ID = '=@ID@' + if (btn.Ot === 'requiredOnce') { + _ID = ' in (select ID from dbo.SplitComma(@ID@))' + } + + _sql += ` + /* 榛樿sql */ + insert into snote (remark,createuserid,CreateUser,CreateStaff,typename) select left('鍒犻櫎琛�:${btn.sql} 鏁版嵁: ${_msg}${primaryKey}='+@ID@,200),@userid@,@username,@fullname,@typename@ + delete ${btn.sql} where ${primaryKey}${_ID};` + } else if (_actionType === 'insertOrUpdate') { + _sql += ` + /* 榛樿sql */ + select @tbid='' + select @tbid='X' from ${btn.sql} where ${primaryKey}=@ID@ + if @tbid='' + begin + ${_billcodesSql} + ${_insertsql} + end + else + begin + ${_updatesql} + end + ` + } + + if (verify.workFlow === 'true' && process) { + let status = 888 + let statusName = '缁撴潫' + let detailId = '0' + + if (verify.flowSql === 'true') { + _sql += ` + /* 宸ヤ綔娴侀粯璁ql */ + insert into s_my_works_flow (works_flow_id,works_flow_code,works_flow_name,works_flow_param,status,statusname,work_group,works_flow_detail_id,work_grade,bid,createuserid,CreateUser,CreateStaff,upid) + select @ID@,@works_flow_code@,@works_flow_name@,@works_flow_param@,@status@,@statusname@,@work_group@,@works_flow_detail_id@,@work_grade@,@bid@,@UserID@,@UserName,@FullName,@time_id@ + insert into s_my_works_flow_log (works_flow_id,works_flow_code,works_flow_name,works_flow_param,status,statusname,works_flow_detail_id,work_group,work_grade,upid) + select @ID@,@works_flow_code@,@works_flow_name@ ,@works_flow_param@,@status@,@statusname@,@works_flow_detail_id@,@work_group@,@work_grade@,@time_id@ + insert into s_my_works_flow_notice (works_flow_id,works_flow_code,works_flow_detail_id,userid,notice_type,createuserid,CreateUser,CreateStaff,upid) + select @ID@,@works_flow_code@,@works_flow_detail_id@,@userid@,@start_type@,@userid@,@UserName,@FullName,@time_id@ + ` + } + + _sql = _sql.replace(/@start_type@/ig, `'寮�濮�'`) + _sql = _sql.replace(/@check_type@/ig, `'瀹℃牳'`) + _sql = _sql.replace(/@notice_type@/ig, `'鎶勯��'`) + _sql = _sql.replace(/@check_userids@/ig, `''`) + _sql = _sql.replace(/@notice_userids@/ig, `''`) + _sql = _sql.replace(/@works_flow_code@/ig, `'mk'`) + _sql = _sql.replace(/@works_flow_name@/ig, `'mk'`) + _sql = _sql.replace(/@works_flow_param@/ig, `''`) + _sql = _sql.replace(/@works_flow_detail_id@/ig, `'${detailId}'`) + _sql = _sql.replace(/@status@/ig, `'${status}'`) + _sql = _sql.replace(/@statusname@/ig, `'${statusName}'`) + _sql = _sql.replace(/@work_group@/ig, `'mk'`) + _sql = _sql.replace(/@work_grade@/ig, `'0'`) + } + + if (_backCustomScript) { + _sql += _backCustomScript + } + + if (btn.procMode === 'system') { + _sql += ` + aaa: if @ErrorCode!='' + insert into tmp_err_retmsg (ID, ErrorCode, retmsg, CreateUserID) select @time_id@,@ErrorCode, @retmsg,@UserID@` + } else if (btn.output) { + _sql += ` + aaa: select @ErrorCode as ErrorCode,@retmsg as retmsg,${btn.output} as mk_b_id` + } else { + _sql += ` + aaa: select @ErrorCode as ErrorCode,@retmsg as retmsg` + } + + _sql = _sql.replace(/@ID@/ig, `'${primaryId || ''}'`) + _sql = _sql.replace(/@BID@/ig, `'${BID}'`) + _sql = _sql.replace(/@LoginUID@/ig, `'LoginUID'`) + _sql = _sql.replace(/@SessionUid@/ig, `'SessionUid'`) + _sql = _sql.replace(/@UserID@/ig, `'UserID'`) + _sql = _sql.replace(/@Appkey@/ig, `'appkey'`) + _sql = _sql.replace(/@typename@/ig, `'typename'`) + _sql = _sql.replace(/@\$|\$@/ig, '').replace(/@datam@/ig, `''`) + + return _sql + } - // if (item.required) { - // required = true - // } + getExcelInSql = (item) => { + let btn = item.verify + let userName = 'User_Name' + let fullName = 'Full_Name' + let RoleID = 'role_id' + let departmentcode = 'departmentcode' + let organization = 'organization' + let mk_user_type = 'mk_user_type' + let nation = 'nation' + let province = 'province' + let city = 'city' + let district = 'district' + let address = 'address' + let _sheet = item.sheet + + if (window.GLOB.externalDatabase !== null) { + _sheet = _sheet.replace(/@db@/ig, window.GLOB.externalDatabase) + } + + let database = _sheet.match(/(.*)\.(.*)\./ig) + let sheet = _sheet.replace(/(.*)\.(.*)\./ig, '') + + database = database ? (database[0] || '') : '' + + let getuuid = () => { + let uuid = [] + let timestamp = new Date().getTime() + let _options = '0123456789abcdefghigklmnopqrstuv' + for (let i = 0; i < 19; i++) { + uuid.push(_options.substr(Math.floor(Math.random() * 0x20), 1)) + } + uuid = timestamp + uuid.join('') + return uuid + } - // if (item.type === 'text' || item.type === 'select') { - // if (/,/.test(item.field)) { - // item.field.split(',').forEach(field => { - // keys.push(field.toLowerCase()) - // }) - // } else { - // keys.push(item.field.toLowerCase()) - // } - // } else if (item.type === 'group') { - // keys.push(item.field.toLowerCase()) - // keys.push(item.datefield.toLowerCase()) - // } + let upId = getuuid() + + let vals = [] + btn.columns.forEach(col => { + if (col.import === 'false') return - // return item - // }) + let val = '' + if (col.import === 'init') { + if (/^Nvarchar/ig.test(col.type)) { + val = '' + } else if (/^Decimal/ig.test(col.type) || /^int/ig.test(col.type)) { + val = 0 + } else if (col.type === 'date') { + val = '1949-10-01' + } else if (col.type === 'datetime') { + val = '1949-10-01 00:00:00' + } + } else if (/^Nvarchar/ig.test(col.type)) { + val = 'mk' + } else if (/^Decimal/ig.test(col.type) || /^int/ig.test(col.type)) { + val = 1 + } else if (col.type === 'date') { + val = '1949-10-01' + } else if (col.type === 'datetime') { + val = '1949-10-01 00:00:00' + } - // config.$s_keys = keys - // config.$s_req = required - // } + vals.push(`'${val}'`) + }) + vals.push(`'${upId}000010'`) + vals.push(`'bid'`) + + vals = `Select ${vals.join(',')}` + + let sql = '' + + let _initCustomScript = '' // 鍒濆鍖栬剼鏈� + let _prevCustomScript = '' // 榛樿sql鍓嶆墽琛岃剼鏈� + let _backCustomScript = '' // 榛樿sql鍚庢墽琛岃剼鏈� + let regs = [ + {reg: new RegExp('(^|\\s)@' + sheet + '(\\s|$)', 'ig'), value: ` #${sheet} `}, + {reg: new RegExp('(^|\\s)@' + sheet + '\\(', 'ig'), value: ` #${sheet}(`}, + {reg: new RegExp('(^|\\s)@' + sheet + '\\)', 'ig'), value: ` #${sheet})`}, + {reg: /@ID@/ig, value: `'id'`}, + {reg: /@BID@/ig, value: `'bid'`}, + {reg: /@LoginUID@/ig, value: `'LoginUID'`}, + {reg: /@SessionUid@/ig, value: `'SessionUid'`}, + {reg: /@UserID@/ig, value: `'UserID'`}, + {reg: /@Appkey@/ig, value: `'appkey'`}, + {reg: /@typename@/ig, value: `'admin'`}, + {reg: /\$@/ig, value: ''}, + {reg: /@\$/ig, value: ''}, + {reg: /@datam@/ig, value: `''`}, + ] + + if (window.GLOB.externalDatabase !== null) { + regs.push({reg: /@db@/ig, value: window.GLOB.externalDatabase}) + } + + btn.scripts && btn.scripts.forEach(script => { + if (script.status === 'false') return + + let _sql = script.sql + + regs.forEach(item => { + _sql = _sql.replace(item.reg, item.value) + }) + + if (script.position === 'init') { + _initCustomScript += ` + /* 鑷畾涔夎剼鏈� */ + ${_sql} + ` + } else if (script.position === 'front') { + _prevCustomScript += ` + /* 鑷畾涔夎剼鏈� */ + ${_sql} + ` + } else { + _backCustomScript += ` + /* 鑷畾涔夎剼鏈� */ + ${_sql} + ` + } + }) + + let _uniquesql = '' + if (btn.uniques && btn.uniques.length > 0) { + btn.uniques.forEach(unique => { + if (unique.status === 'false' || !unique.verifyType) return + + let _fields = unique.field.split(',') + let _fields_ = _fields.map(_field => `a.${_field}=b.${_field}`) + let _afields = _fields.map(_field => `a.${_field}`) + _fields_ = _fields_.join(' and ') + + if (unique.verifyType === 'logic' || unique.verifyType === 'logic_temp') { + _fields_ += ' and b.deleted=0' + } + + _uniquesql += ` + /* 閲嶅鎬ч獙璇� */ + Set @tbid='' + Select top 1 @tbid=${_fields.join('+\' \'+')} from (select 1 as n,${unique.field} from #${sheet} ) a group by ${unique.field} having sum(n)>1 + + If @tbid!='' + Begin + select @ErrorCode='${unique.errorCode}',@retmsg=@tbid+' 閲嶅' + goto aaa + end + + ${unique.verifyType.indexOf('temp') === -1 ? `Set @tbid='' + Select top 1 @tbid=${_afields.join('+\' \'+')} from #${sheet} a Inner join ${sheet} b on ${_fields_} + + If @tbid!='' + Begin + select @ErrorCode='${unique.errorCode}',@retmsg=@tbid+' 涓庡凡鏈夋暟鎹噸澶�' + goto aaa + end` : ''} + ` + }) + } + + let declarefields = [] + let fields = [] + + btn.columns.forEach(col => { + if (col.import === 'false') return + + if (col.type === 'date') { + declarefields.push(`${col.Column} Nvarchar(50)`) + } else { + declarefields.push(`${col.Column} ${col.type}`) + } + fields.push(col.Column) + }) + + fields = fields.join(',') + + let _insert = '' + if (btn.default !== 'false') { + _insert = ` + /* 榛樿sql */ + Insert into ${database}${sheet} (${fields},createuserid,createuser,createstaff,bid) + Select ${fields},'${sessionStorage.getItem('UserID') || ''}',@username,@fullname,'bid' From #${sheet} + ` + } + + sql = `create table #${sheet} (${declarefields.join(',')},jskey nvarchar(50),BID nvarchar(50) ) + Declare @UserName nvarchar(50),@FullName nvarchar(50),@RoleID nvarchar(512),@mk_departmentcode nvarchar(512),@mk_organization nvarchar(512),@mk_user_type nvarchar(20),@mk_nation nvarchar(50),@mk_province nvarchar(50),@mk_city nvarchar(50),@mk_district nvarchar(50),@mk_address nvarchar(100),@ErrorCode nvarchar(50),@retmsg nvarchar(4000),@tbid Nvarchar(512) + + Select @ErrorCode='', @retmsg='', @UserName='${userName}', @FullName='${fullName}', @RoleID='${RoleID}', @mk_departmentcode='${departmentcode}', @mk_organization='${organization}', @mk_user_type='${mk_user_type}', @mk_nation='${nation}', @mk_province='${province}', @mk_city='${city}', @mk_district='${district}', @mk_address='${address}' + ${_initCustomScript} + + Insert into #${sheet} (${fields},jskey,BID) + + /* excel鏁版嵁*/ + ${vals} + + ${_uniquesql} + ${_prevCustomScript} + ${_insert} + ${_backCustomScript} + + drop table #${sheet} + + aaa: select @ErrorCode as ErrorCode,@retmsg as retmsg` + + return sql + } + + getEditTableSql = (verify, cols, columns) => { + let btn = verify + let userName = sessionStorage.getItem('User_Name') || '' + let fullName = sessionStorage.getItem('Full_Name') || '' + let RoleID = sessionStorage.getItem('role_id') || '' + let departmentcode = sessionStorage.getItem('departmentcode') || '' + let organization = sessionStorage.getItem('organization') || '' + let mk_user_type = sessionStorage.getItem('mk_user_type') || '' + let nation = sessionStorage.getItem('nation') || '' + let province = sessionStorage.getItem('province') || '' + let city = sessionStorage.getItem('city') || '' + let district = sessionStorage.getItem('district') || '' + let address = sessionStorage.getItem('address') || '' + + let _sheet = btn.sheet + let BID = 'bid' + + if (window.GLOB.externalDatabase !== null) { + _sheet = _sheet.replace(/@db@/ig, window.GLOB.externalDatabase) + } + + let database = _sheet.match(/(.*)\.(.*)\./ig) + let sheet = _sheet.replace(/(.*)\.(.*)\./ig, '') + + database = database ? (database[0] || '') : '' + + let vals = [] + let forms = [] + let _fields = {} + + columns.forEach(col => { + _fields[col.field] = col.datatype + }) + + let getColumns = (cols) => { + cols.forEach(item => { + if (item.type === 'colspan') { + getColumns(item.subcols) + } else if (item.editable === 'true') { + forms.push({ + field: item.field, + type: item.type, + datatype: _fields[item.field] || 'nvarchar(50)' + }) + } + }) + } + + getColumns(cols) + + forms.forEach(col => { + if (col.type === 'number') { + vals.push(`1`) + } else { + vals.push(`'mk'`) + } + }) + + vals.push(`'uuid'`) + vals.push(`'upt'`) + vals.push(`'${BID}'`) + + vals = `Select ${vals.join(',')}` + + let sql = '' + + let _initCustomScript = '' // 鍒濆鍖栬剼鏈� + let _prevCustomScript = '' // 榛樿sql鍓嶆墽琛岃剼鏈� + let _backCustomScript = '' // 榛樿sql鍚庢墽琛岃剼鏈� + let isDM = sessionStorage.getItem('dataM') === 'true' + let regs = [ + {reg: new RegExp('(^|\\s)@' + sheet + '(\\s|$)', 'ig'), value: ` #${sheet} `}, + {reg: new RegExp('(^|\\s)@' + sheet + '\\(', 'ig'), value: ` #${sheet}(`}, + {reg: new RegExp('(^|\\s)@' + sheet + '\\)', 'ig'), value: ` #${sheet})`}, + {reg: /@BID@/ig, value: `'${BID}'`}, + {reg: /@LoginUID@/ig, value: `'${sessionStorage.getItem('LoginUID') || ''}'`}, + {reg: /@SessionUid@/ig, value: `'${localStorage.getItem('SessionUid') || ''}'`}, + {reg: /@UserID@/ig, value: `'${sessionStorage.getItem('UserID') || ''}'`}, + {reg: /@Appkey@/ig, value: `'${window.GLOB.appkey || ''}'`}, + {reg: /@typename@/ig, value: `'admin'`}, + {reg: /\$@/ig, value: isDM ? '/*' : ''}, + {reg: /@\$/ig, value: isDM ? '*/' : ''}, + {reg: /@datam@/ig, value: isDM ? `'Y'` : `''`}, + ] + + if (window.GLOB.externalDatabase !== null) { + regs.push({reg: /@db@/ig, value: window.GLOB.externalDatabase}) + } + + btn.scripts && btn.scripts.forEach(script => { + if (script.status === 'false') return + + let _sql = script.sql + + regs.forEach(item => { + _sql = _sql.replace(item.reg, item.value) + }) + + if (script.position === 'init') { + _initCustomScript += ` + /* 鑷畾涔夎剼鏈� */ + ${_sql} + ` + } else if (script.position === 'front') { + _prevCustomScript += ` + /* 鑷畾涔夎剼鏈� */ + ${_sql} + ` + } else { + _backCustomScript += ` + /* 鑷畾涔夎剼鏈� */ + ${_sql} + ` + } + }) + + let _uniquesql = '' + if (btn.uniques && btn.uniques.length > 0) { + btn.uniques.forEach(unique => { + if (unique.status === 'false' || !unique.verifyType) return + + let _fields = unique.field.split(',') + let _fields_ = _fields.map(_field => `a.${_field}=b.${_field}`) + let _afields = _fields.map(_field => `a.${_field}`) + _fields_ = _fields_.join(' and ') + + if (unique.verifyType === 'logic' || unique.verifyType === 'logic_temp') { + _fields_ += ' and b.deleted=0' + } + + _uniquesql += ` + /* 閲嶅鎬ч獙璇� */ + Set @tbid='' + Select top 1 @tbid=${_fields.join('+\' \'+')} from (select 1 as n,${unique.field} from #${sheet} ) a group by ${unique.field} having sum(n)>1 + + If @tbid!='' + Begin + select @ErrorCode='${unique.errorCode}',@retmsg=@tbid+' 閲嶅' + goto aaa + end + + ${unique.verifyType.indexOf('temp') === -1 ? `Set @tbid='' + Select top 1 @tbid=${_afields.join('+\' \'+')} from #${sheet} a Inner join ${sheet} b on ${_fields_} + + If @tbid!='' + Begin + select @ErrorCode='${unique.errorCode}',@retmsg=@tbid+' 涓庡凡鏈夋暟鎹噸澶�' + goto aaa + end` : ''} + ` + }) + } + + let declarefields = [] + let fields = [] + + forms.forEach(col => { + let key = col.field.toLowerCase() + if (key === 'jskey' || key === 'bid' || key === 'data_type') return + + declarefields.push(`${col.field} ${col.datatype}`) + fields.push(col.field) + }) + + fields = fields.join(',') + + let _insert = '' + if (btn.default !== 'false') { + _insert = ` + /* 榛樿sql */ + Insert into ${database}${sheet} (${fields},createuserid,createuser,createstaff,bid) + Select ${fields},'${sessionStorage.getItem('UserID') || ''}',@username,@fullname,'${BID}' From #${sheet} + ` + } + + sql = `create table #${sheet} (${declarefields.join(',')},jskey nvarchar(50),data_type nvarchar(50),BID nvarchar(50) ) + Declare @UserName nvarchar(50),@FullName nvarchar(50),@RoleID nvarchar(512),@mk_departmentcode nvarchar(512),@mk_organization nvarchar(512),@mk_user_type nvarchar(20),@mk_nation nvarchar(50),@mk_province nvarchar(50),@mk_city nvarchar(50),@mk_district nvarchar(50),@mk_address nvarchar(100),@ErrorCode nvarchar(50),@retmsg nvarchar(4000),@tbid Nvarchar(512) + + Select @ErrorCode='', @retmsg='', @UserName='${userName}', @FullName='${fullName}', @RoleID='${RoleID}', @mk_departmentcode='${departmentcode}', @mk_organization='${organization}', @mk_user_type='${mk_user_type}', @mk_nation='${nation}', @mk_province='${province}', @mk_city='${city}', @mk_district='${district}', @mk_address='${address}' + ${_initCustomScript} + Insert into #${sheet} (${fields},jskey,data_type,BID) + + /* excel鏁版嵁*/ + ${vals} + + ${_uniquesql} + ${_prevCustomScript} + ${_insert} + ${_backCustomScript} + + drop table #${sheet} + + aaa: select @ErrorCode as ErrorCode,@retmsg as retmsg` + + return sql + } + + getExcelOutSql = (btn, component) => { + let item = {setting: {}, columns: [], search: []} + + btn.verify.columns.forEach(col => { + if (col.Column && col.Column !== '$Index') { + item.columns.push({ + field: col.Column + }) + } + }) + + if (btn.verify.useSearch !== 'false') { + item.search = component.$searches + } + + item.setting.interType = 'system' + item.setting.execute = btn.verify.defaultSql || 'true' + item.setting.dataresource = btn.verify.dataresource || '' + item.setting.primaryKey = btn.verify.primaryKey || component.setting.primaryKey || 'ID' + item.setting.queryType = btn.verify.queryType + item.setting.laypage = btn.pagination + item.setting.order = btn.verify.order || '' + + item.scripts = btn.verify.scripts || [] + + let regs = [ + { reg: /\$@/ig, value: '' }, + { reg: /@\$/ig, value: '' }, + { reg: /@datam@/ig, value: `''` }, + ] + + if (window.GLOB.externalDatabase !== null) { + regs.push({ + reg: /@db@/ig, + value: window.GLOB.externalDatabase + }) + } + + let sql = this.formatDataSource(item, regs) + + return sql + } + + formatDataSource = (item, regs, mainSearch = []) => { + if (!item.setting || item.setting.interType !== 'system') return false + + let searches = item.search || [] + if (item.setting.useMSearch === 'true' && mainSearch.length > 0) { + searches = [...searches, ...mainSearch] + } + item.$searches = fromJS(searches).toJS() + searches = formatSearch(searches) + + let _columns = item.columns || [] + if (item.subtype === 'dualdatacard') { + _columns = [...item.columns, ...item.subColumns] + } + + let arr_field = _columns.map(col => col.field).join(',') + + let _customScript = '' + let _tailScript = '' + let _dataresource = '' + item.scripts && item.scripts.forEach(script => { + if (script.status === 'false') return + if (script.position !== 'back') { + _customScript += ` + ${script.sql} + ` + } else { + _tailScript += ` + ${script.sql} + ` + } + }) + + if (item.setting.execute !== 'false') { + _dataresource = item.setting.dataresource || '' + } + + let _search = joinMainSearchkey(searches) + if (item.setting.queryType === 'statistics') { + _search = '' + } + + if (/\s/.test(_dataresource)) { + _dataresource = '(' + _dataresource + ') tb' + } + + item.setting.dataresource = _dataresource + item.setting.customScript = _customScript + + let custompage = /@pageSize@|@orderBy@/i.test(_dataresource + _customScript) + + if (_dataresource) { + if (custompage) { + _dataresource = `/*system_query*/select ${arr_field} from ${_dataresource} ${_search} ` + } else if (item.setting.laypage === 'true' && item.setting.order) { + _dataresource = `/*system_query*/select top 10 ${arr_field} from (select ${arr_field} ,ROW_NUMBER() over(order by ${item.setting.order}) as rows from ${_dataresource} ${_search}) tmptable where rows > 0 order by tmptable.rows ` + } else if (item.setting.order) { + _dataresource = `/*system_query*/select ${arr_field} from (select ${arr_field} ,ROW_NUMBER() over(order by ${item.setting.order}) as rows from ${_dataresource} ${_search}) tmptable order by tmptable.rows ` + } else { + _dataresource = `/*system_query*/select ${arr_field} from ${_dataresource} ${_search} ` + } + } + + let sql = '' + if (_customScript) { + sql = `declare @ErrorCode nvarchar(50),@retmsg nvarchar(4000),@UserName nvarchar(50),@FullName nvarchar(50),@RoleID nvarchar(512),@mk_departmentcode nvarchar(512),@mk_organization nvarchar(512),@mk_user_type nvarchar(20),@mk_nation nvarchar(50),@mk_province nvarchar(50),@mk_city nvarchar(50),@mk_district nvarchar(50),@mk_address nvarchar(100) select @ErrorCode='',@retmsg ='' + ${_customScript} + ${_dataresource} + ${_tailScript} + aaa: + if @ErrorCode!='' + insert into tmp_err_retmsg (ID, ErrorCode, retmsg, CreateUserID) select '1949-10-01 15:00:00',@ErrorCode, @retmsg,'1949-10-01 15:00:00' + ` + } else if (_tailScript) { + sql = `declare @ErrorCode nvarchar(50),@retmsg nvarchar(4000),@UserName nvarchar(50),@FullName nvarchar(50),@RoleID nvarchar(512),@mk_departmentcode nvarchar(512),@mk_organization nvarchar(512),@mk_user_type nvarchar(20),@mk_nation nvarchar(50),@mk_province nvarchar(50),@mk_city nvarchar(50),@mk_district nvarchar(50),@mk_address nvarchar(100) select @ErrorCode='',@retmsg ='' + ${_dataresource} + ${_tailScript} + aaa: + if @ErrorCode!='' + insert into tmp_err_retmsg (ID, ErrorCode, retmsg, CreateUserID) select '1949-10-01 15:00:00',@ErrorCode, @retmsg,'1949-10-01 15:00:00' + ` + } else { + sql = `declare @ErrorCode nvarchar(50),@retmsg nvarchar(4000),@UserName nvarchar(50),@FullName nvarchar(50),@RoleID nvarchar(512),@mk_departmentcode nvarchar(512),@mk_organization nvarchar(512),@mk_user_type nvarchar(20),@mk_nation nvarchar(50),@mk_province nvarchar(50),@mk_city nvarchar(50),@mk_district nvarchar(50),@mk_address nvarchar(100) select @ErrorCode='',@retmsg ='' + ${_dataresource}` + } + + regs.forEach(cell => { + sql = sql.replace(cell.reg, cell.value) + }) + + let regoptions = getSearchRegs(searches) + regoptions.push( + { reg: /@orderBy@/ig, value: item.setting.order || '' }, + { reg: /@pageSize@/ig, value: 9999 }, + { reg: /@pageIndex@/ig, value: 1}, + { reg: /@ID@/ig, value: `''`}, + { reg: /@BID@/ig, value: `''`}, + { reg: /@LoginUID@/ig, value: `'${sessionStorage.getItem('LoginUID') || ''}'`}, + { reg: /@SessionUid@/ig, value: `'${localStorage.getItem('SessionUid') || ''}'`}, + { reg: /@UserID@/ig, value: `'${sessionStorage.getItem('UserID') || ''}'`}, + { reg: /@Appkey@/ig, value: `'${window.GLOB.appkey || ''}'`}, + { reg: /@typename@/ig, value: `'admin'`}, + ) + + if (item.type === 'calendar') { + regoptions.push({ reg: /@mk_year@/ig, value: '2023' }) + } + + regoptions.forEach(cell => { + sql = sql.replace(cell.reg, cell.value) + }) + + return sql + } + + continue = () => { + this.setState({status: 'continue'}, () => { + this.roopSql() + }) + } + + roopSql = () => { + if (this.verSqls.length === 0) { + this.setState({status: 'over'}) + return + } + + if (this.state.status === 'stop') return + + let item = this.verSqls.shift() + + this.setState({status: this.verSqls.length > 0 ? 'loading' : 'over', execId: item.uuid}) + + console.info(`/* 缁勪欢锛�${item.name} 妫�楠岄」锛�${item.label} */`) + + Api.sDebug(item.sql).then(result => { + if (result.status || result.ErrCode === '-2') { + this.setState({successIds: [...this.state.successIds, item.uuid], execId: ''}) + if (this.verSqls.length > 0) { + setTimeout(() => { + this.roopSql() + }, 100) + } + } else { + let errorMsg = fromJS(this.state.errorMsg).toJS() + errorMsg[item.uuid] = result.message + + this.setState({ + execId: '', + status: this.verSqls.length > 0 ? 'error' : 'over', + errorIds: [...this.state.errorIds, item.uuid], + errorMsg: errorMsg + }) + + Modal.error({ + title: result.message + }) + } + }) + } + + stop = () => { + this.setState({status: 'stop'}) + } + + over = () => { + this.verSqls = [] + this.setState({status: 'over', visible: false}) + } render() { - const { visible, confirming } = this.state + const { visible, sqlList, status, successIds, errorIds, execId, errorMsg } = this.state return ( <> <Button className="mk-border-yellow" icon="bug" onClick={this.trigger}>璋冭瘯</Button> - <Modal - title="SQL楠岃瘉" - wrapClassName="debug-modal" - visible={visible} + <Drawer + className="debug-modal" width={600} - maskClosable={false} - onOk={this.submit} - onCancel={() => { this.setState({ visible: false })}} - confirmLoading={confirming} + visible={visible} + closable={false} + placement="left" destroyOnClose > - </Modal> + <div className="mk-sql-wrap"> + {/* <div className="header"> + <div className="sql-item"> + <div className="sql-1">缁勪欢</div> + <div className="sql-2">妫�楠岄」</div> + <div className="sql-3">鍏朵粬</div> + <div className="sql-4">鐘舵��</div> + </div> + </div> */} + <div className="body"> + {sqlList.map(item => { + let other = '' + if (item.supName) { + other = `涓婄骇锛�${item.supName}-${item.tabName}` + } + + let status = <ClockCircleOutlined /> + + if (successIds.includes(item.uuid)) { + status = <CheckCircleOutlined /> + } else if (errorIds.includes(item.uuid)) { + if (errorMsg[item.uuid]) { + status = <Tooltip placement="topLeft" title={errorMsg[item.uuid]}> + <CloseCircleOutlined /> + </Tooltip> + } else { + status = <CloseCircleOutlined /> + } + } else if (item.uuid === execId) { + status = <LoadingOutlined /> + } + + return <div className="sql-item" key={item.uuid}> + <div className="sql-1" title={item.name}><div>{item.name}</div></div> + <div className="sql-2" title={item.label}><div>{item.label}</div></div> + <div className="sql-3" title={other}><div>{other}</div></div> + <div className="sql-4">{status}</div> + </div> + })} + </div> + </div> + <div className="mk-footer"> + {status === 'error' ? <Button key="skip" className="mk-border-green" onClick={this.roopSql}> + 璺宠繃 + </Button> : null} + {status === 'loading' ? <Button key="stop" className="mk-border-orange" onClick={this.stop}> + 鏆傚仠 + </Button> : null} + {status === 'stop' ? <Button key="continue" className="mk-border-orange" onClick={this.continue}> + 缁х画 + </Button> : null} + <Button key="colse" className="mk-border-danger" onClick={this.over}> + 鍏抽棴 + </Button> + </div> + </Drawer> </> ) } -- Gitblit v1.8.0