diff --git a/src/arap/gatheringbill/gatheringbill/card/constants.js b/src/arap/gatheringbill/gatheringbill/card/constants.js index 73d62409..9cdaaf60 100644 --- a/src/arap/gatheringbill/gatheringbill/card/constants.js +++ b/src/arap/gatheringbill/gatheringbill/card/constants.js @@ -1,4 +1,4 @@ -/*kHr1VQMdEU42oXEu346enLE2PHnzHrFdr/OxPw9YGIc=*/ +/*kHr1VQMdEU42oXEu346enGx+6rXJ4OFHE2VimKRgjU4=*/ /** * 表头区域 @@ -48,4 +48,4 @@ export const pkname = 'pk_gatherbill'; * 列表联查页面pageId */ export const linkPageId = '20060GBM_LIST_LINK'; -/*kHr1VQMdEU42oXEu346enLE2PHnzHrFdr/OxPw9YGIc=*/ \ No newline at end of file +/*kHr1VQMdEU42oXEu346enGx+6rXJ4OFHE2VimKRgjU4=*/ \ No newline at end of file diff --git a/src/arap/gatheringbill/gatheringbill/transfer/btnClick/index.js b/src/arap/gatheringbill/gatheringbill/transfer/btnClick/index.js new file mode 100644 index 00000000..e150d81f --- /dev/null +++ b/src/arap/gatheringbill/gatheringbill/transfer/btnClick/index.js @@ -0,0 +1,6 @@ +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ +import searchBtnClick from './searchBtnClick'; + +export {searchBtnClick} + +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ \ No newline at end of file diff --git a/src/arap/gatheringbill/gatheringbill/transfer/btnClick/searchBtnClick.js b/src/arap/gatheringbill/gatheringbill/transfer/btnClick/searchBtnClick.js new file mode 100644 index 00000000..26b201df --- /dev/null +++ b/src/arap/gatheringbill/gatheringbill/transfer/btnClick/searchBtnClick.js @@ -0,0 +1,54 @@ +/*YuO8szH0cVixePu/Bt+mG6B82aSbGhMosB18vg69kDk=*/ +import { ajax, base, spaCache, toast} from 'nc-lightapp-front'; +let { setDefData, getDefData } = spaCache; +import { pagecode, searchId, headId, bodyId, billType, dataSource, body_pkname } from '../constants'; +import {sortFunction} from '../../../../public/components/pubUtils/billPubUtil' +import { onCheckedChange,getCheckedRowPK,updateCheckedRowsCurrentDealMny,updatePullMoney } from '../../../../public/components/transferTableSelectArea'; + +//点击查询,获取查询区数据 +export default function () { + let searchVal = this.props.search.getAllSearchData(searchId); + if (searchVal && this.props.getUrlParam('dest_tradetype')) { + let data = { + queryInfo: this.props.search.getQueryInfo(searchId), + appcode: this.props.getUrlParam('src_appcode'), + pageId: pagecode, + src_billtype: billType, + dest_tradetype: this.props.getUrlParam('dest_tradetype'), + busitype: getDefData(billType + this.props.getUrlParam('src_tradetype'), "transfer.dataSource") + } + let checkedSum=0; + ajax({ + url: '/nccloud/arap/arappub/transferquery.do', + data: data, + success: (res) => { + + // this.props.transferTable.clearAllSelectedData(); + if (res.data) { + let checkedRowPK=getCheckedRowPK.call(this,{headId, bodyId,body_pkname})||[]; + let newdata = res.data.sort(sortFunction('billdate','billno',headId)); + if(checkedRowPK&&checkedRowPK.length>0){ + let {resultData,pullMoney}=updateCheckedRowsCurrentDealMny.call(this,{checkedRowPK,data:newdata,headId, bodyId,body_pkname}); + newdata=resultData; + checkedSum=pullMoney; + } + this.props.transferTable.setTransferTableValue(headId, bodyId, newdata, 'pk_gatherbill', 'pk_gatheritem'); + /* + * key:存储数据的key + * dataSource: 缓存数据命名空间 + * data: 存储数据 + */ + setDefData('searchData', dataSource, res.data); + toast({ color: 'success', content: this.state.json['gatheringbill-000013']+res.data.length+this.state.json['gatheringbill-000014'] });/* 国际化处理: 查询成功,共,条*/ + } else { + this.props.transferTable.setTransferTableValue(headId, bodyId, [], 'pk_gatherbill', 'pk_gatheritem'); + toast({ content: this.state.json['gatheringbill-000055'], color: 'warning'});/* 国际化处理: 未查询到符合条件的数据*/ + } + updatePullMoney.call(this,checkedSum); + // onCheckedChange.call(this, null, null, null, null, {headId, bodyId, body_pkname}); + } + }) + } +} + +/*YuO8szH0cVixePu/Bt+mG6B82aSbGhMosB18vg69kDk=*/ \ No newline at end of file diff --git a/src/arap/gatheringbill/gatheringbill/transfer/constants.js b/src/arap/gatheringbill/gatheringbill/transfer/constants.js new file mode 100644 index 00000000..4c979892 --- /dev/null +++ b/src/arap/gatheringbill/gatheringbill/transfer/constants.js @@ -0,0 +1,39 @@ +/*kHr1VQMdEU42oXEu346enGx+6rXJ4OFHE2VimKRgjU4=*/ + +/** + * 查询区域 + */ +export const searchId = '20060GBM_query'; + +/** + * 表头区域 + */ +export const headId = '20060GBM_head'; + +/** + * 表体区域 + */ +export const bodyId = '20060GBM_bodys'; + +export const appcode = '20060GBM'; + +export const pagecode = '20060GBM_TRANSFER'; + +//主子拉平展示页面编码 +export const mainPageCode = '20060GBM_TRANSFERMAIN'; + +// 主子拉平显示区域编码 +export const mainCode = 'transfermain' + +/** + * 单据类型 + */ +export const billType = 'F2'; + +/** + * 转单单页应用缓存,命名规范为:"领域名.模块名.节点名.自定义名"。 + */ +export const dataSource = 'fi.arap.gatherbill.transfer'; +export const body_pkname='pk_gatheritem'; + +/*kHr1VQMdEU42oXEu346enGx+6rXJ4OFHE2VimKRgjU4=*/ \ No newline at end of file diff --git a/src/arap/gatheringbill/gatheringbill/transfer/index.js b/src/arap/gatheringbill/gatheringbill/transfer/index.js new file mode 100644 index 00000000..253e5228 --- /dev/null +++ b/src/arap/gatheringbill/gatheringbill/transfer/index.js @@ -0,0 +1,172 @@ +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ +import React, { Component } from 'react'; +import { base, createPage, ajax, spaCache, getMultiLang } from 'nc-lightapp-front'; +import { initTemplate, initTemplateFull } from './init'; +import { searchBtnClick } from './btnClick'; +import { pagecode, searchId, headId, bodyId, billType, dataSource, mainCode, mainPageCode ,body_pkname} from './constants'; +let { setDefData, getDefData } = spaCache; +let { NCBackBtn, NCToggleViewBtn, NCDiv } = base; +import afterEvent from '../../../public/components/searchAreaAfterEvent'//查询区编辑后事件 +import { selectArea,onCheckedChange,onClearAll } from '../../../public/components/transferTableSelectArea'; +class TransferTable extends Component { + constructor(props) { + super(props); + this.searchId = searchId; + this.headId = headId; + this.bodyId = bodyId; + this.pagecode = pagecode; + this.appcode = props.getSearchParam('c'); + this.state = { + pullMoney:{value:'',scale:'8'},//本次拉取金额 + expand: false, + fullOrNest :'nest', + json: {} + }; + this.generationType = null; + } + componentDidMount() { + let callback = (json) => { + this.setState({ json: json }, () => { + let { hasCache } = this.props.transferTable; + if (!hasCache(dataSource)) { + this.props.transferTable.setTransferTableValue(headId, bodyId, [], 'pk_gatherbill', 'pk_gatheritem'); + } + initTemplate.call(this, this.props, this.initShow); + initTemplateFull(this.props); //加载主子拉平模板 + }); + } + getMultiLang({ moduleId: ['gatheringbill', 'public'], domainName: 'arap', currentLocale: 'simpchn', callback }); + } + + + //转单跳转目的小应用 + transfer = () => { + setDefData('src_appcode', dataSource, this.props.getUrlParam("src_appcode")); + setDefData('src_pagecode', dataSource, pagecode); + if(this.state.fullOrNest&&this.state.fullOrNest=='full'){ + this.props.transferTable.changeViewType(headId); + } + this.props.pushTo('/card', { + status: 'add', + type: 'transfer', + srcBilltype: billType, + dataSource: dataSource, + pagecode: this.props.getUrlParam('dest_tradetype') + }); + } + + //返回列表 + backList = () => { + let dest_billtype = this.props.getUrlParam("dest_billtype") + let pagecode = null + if (dest_billtype) { + if (dest_billtype == 'F0') { + pagecode = '20060RBM_LIST'//应收单列表 + } else if (dest_billtype == 'F1') { + pagecode = '20080PBM_LIST'//应付单列表 + } else if (dest_billtype == 'F2') { + pagecode = '20060GBM_LIST'//收款单列表 + } else if (dest_billtype == 'F3') { + pagecode = '20080EBM_LIST'//付款单列表 + } + } + if(this.state.fullOrNest&&this.state.fullOrNest=='full'){ + this.props.transferTable.changeViewType(headId); + } + this.props.pushTo('/list', { + pagecode: pagecode + }); + } + onCheckedChange=(flag, record, index, bodys) => { //勾选的回调函数 + onCheckedChange.call(this,flag, record, index, bodys,{headId, bodyId,body_pkname}); + } + clearPullMoney=()=>{ + onClearAll.call(this); + } + onChangeViewClick=()=>{ + this.props.transferTable.changeViewType(headId); + } + // react:界面渲染函数 + render() { + const { transferTable, button, search } = this.props; + const { NCCreateSearch } = search; + const { createTransferTable } = transferTable; + const { createBillHeadInfo } = this.props.BillHeadInfo; + let {fullOrNest } = this.state; + let selectedShow = transferTable.getSelectedListDisplay(headId); + let fullOrFlag=fullOrNest&&fullOrNest=='nest'?true:false; + return ( +
+ {!selectedShow ? +
+ +
+ {createBillHeadInfo({ + title: this.state.json['gatheringbill-000057'],//国际化处理: 选择收款单 + backBtnClick: () => { + this.backList(); + } + })} +
+
+ { + if(flag){ + // if (!this.props.meta.getMeta()[mainCode]) { + // initTemplateFull(this.props); //加载主子拉平模板 + fullOrNest = 'full'; + } else { + // initTemplate.call(this, this.props); //加载主子拉平模板 + fullOrNest = 'nest'; + } + this.props.transferTable.changeViewType(headId); + let expandtemp = !this.state.expand; + this.setState({ expand: expandtemp, fullOrNest:fullOrNest}); + }} + /> +
+
+ {fullOrFlag&&
+ {NCCreateSearch( + searchId, + { + clickSearchBtn: searchBtnClick.bind(this), + onAfterEvent: afterEvent.bind(this),//编辑后事件 + } + //模块id + )} +
} +
+ : ''} + +
+ {createTransferTable({ + fieldid:'gatheringbill', + dataSource: dataSource, + headTableId: headId, //表格组件id + bodyTableId: bodyId, //子表模板id + fullTableId: mainCode, //主子拉平模板id + //点击加号展开,设置表格数据 + transferBtnText: this.state.json['gatheringbill-000056'], //转单按钮显示文字/* 国际化处理: 生成下游单据*/ + containerSelector: '#transferList', + onTransferBtnClick: this.transfer, + onChangeViewClick: this.onChangeViewClick.bind(this), + fullDataRule:'body', + onCheckedChange: this.onCheckedChange.bind(this), + onClearAll:this.clearPullMoney.bind(this), + selectArea: selectArea.bind(this,{headId, bodyId, selectedShow, body_pkname}), + })} +
+
+ ); + } +} + +TransferTable = createPage({ + //initTemplate: initTemplate +})(TransferTable); + +export default TransferTable; + +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ \ No newline at end of file diff --git a/src/arap/gatheringbill/gatheringbill/transfer/init/index.js b/src/arap/gatheringbill/gatheringbill/transfer/init/index.js new file mode 100644 index 00000000..7c92aa53 --- /dev/null +++ b/src/arap/gatheringbill/gatheringbill/transfer/init/index.js @@ -0,0 +1,7 @@ +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ +import initTemplate from './initTemplate'; +import initTemplateFull from './initTemplateFull'; + +export {initTemplate, initTemplateFull} + +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ \ No newline at end of file diff --git a/src/arap/gatheringbill/gatheringbill/transfer/init/initTemplate.js b/src/arap/gatheringbill/gatheringbill/transfer/init/initTemplate.js new file mode 100644 index 00000000..265414d3 --- /dev/null +++ b/src/arap/gatheringbill/gatheringbill/transfer/init/initTemplate.js @@ -0,0 +1,47 @@ +/*pmFWCFu5nhKkBzYmrkBakYqb4t+QDKrWy/miWT3MDKY=*/ +import { toast } from 'nc-lightapp-front'; +import { modifierSearchMetas } from '../../../../public/components/pubUtils/arapListSearchRefFilter'; +import { pagecode, appcode, searchId, billType } from '../constants'; +import setDefOrgBilldateSrchArea from '../../../../public/components/defOrgBilldateSrchArea.js'; + +export default function (props) { + let that = this; + if(!props.getUrlParam('src_appcode')){ + props.setUrlParam({ src_appcode: appcode}); + toast({ color: 'warning', content: this.state.json['public-000250'] }); + } + props.createUIDom( + { + pagecode: pagecode, + appcode: props.getUrlParam('src_appcode') ? props.getUrlParam('src_appcode') : appcode, + reqDataQueryappcontext:{ + rqUrl: '/platform/appregister/queryappcontext.do', + rqJson: JSON.stringify({ pagecode: pagecode, appcode: appcode }), + rqCode: 'context', + } + }, + function (data) { + if (data) { + if (data.template) { + if (!data.template[searchId]) { + return; + } + //高级查询设置财务组织默认值 + // data.context.paramMap.pk_transtype=null; + // data.context.paramMap.transtype_name=null; + setDefOrgBilldateSrchArea(props, searchId, data); + let meta = data.template; + modifierSearchMetas(searchId, props, meta, billType, null, that); + // props.meta.setMeta(meta); + props.meta.addMeta(meta); + } + if (data.button) { + let button = data.button; + props.button.setButtons(button); + } + } + } + ) +} + +/*pmFWCFu5nhKkBzYmrkBakYqb4t+QDKrWy/miWT3MDKY=*/ \ No newline at end of file diff --git a/src/arap/gatheringbill/gatheringbill/transfer/init/initTemplateFull.js b/src/arap/gatheringbill/gatheringbill/transfer/init/initTemplateFull.js new file mode 100644 index 00000000..eb58b62d --- /dev/null +++ b/src/arap/gatheringbill/gatheringbill/transfer/init/initTemplateFull.js @@ -0,0 +1,26 @@ +/*HDV8KmD/YpIkan/Ri5ozX0m+BTC+ANYPkpoTPN33+U0=*/ +import { mainPageCode, appcode, searchId } from '../constants'; + +export default function (props) { + props.createUIDom( + { + pagecode: mainPageCode, + appcode: props.getUrlParam('src_appcode') ? props.getUrlParam('src_appcode') : appcode, + }, + function (data) { + if (data) { + if (data.template) { + // if (!data.template[searchId]) { + // return; + // } + let meta = data.template; + // props.meta.setMeta(meta); + props.meta.addMeta(meta); + } + } + } + ); +} + + +/*HDV8KmD/YpIkan/Ri5ozX0m+BTC+ANYPkpoTPN33+U0=*/ \ No newline at end of file diff --git a/src/arap/payablebill/payablebill/transfer/btnClick/index.js b/src/arap/payablebill/payablebill/transfer/btnClick/index.js new file mode 100644 index 00000000..e150d81f --- /dev/null +++ b/src/arap/payablebill/payablebill/transfer/btnClick/index.js @@ -0,0 +1,6 @@ +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ +import searchBtnClick from './searchBtnClick'; + +export {searchBtnClick} + +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ \ No newline at end of file diff --git a/src/arap/payablebill/payablebill/transfer/btnClick/searchBtnClick.js b/src/arap/payablebill/payablebill/transfer/btnClick/searchBtnClick.js new file mode 100644 index 00000000..75978ba1 --- /dev/null +++ b/src/arap/payablebill/payablebill/transfer/btnClick/searchBtnClick.js @@ -0,0 +1,60 @@ +/*YuO8szH0cVixePu/Bt+mG6B82aSbGhMosB18vg69kDk=*/ +import { ajax, base, spaCache, toast } from 'nc-lightapp-front'; +let { setDefData, getDefData } = spaCache; +import { pagecode, searchId, headId, bodyId, billType, dataSource, body_pkname } from '../constants'; +import {sortFunction} from '../../../../public/components/pubUtils/billPubUtil' +import { onCheckedChange,getCheckedRowPK,updateCheckedRowsCurrentDealMny,updatePullMoney } from '../../../../public/components/transferTableSelectArea'; + +//点击查询,获取查询区数据 +export default function () { + let searchVal = this.props.search.getAllSearchData(searchId); + if(searchVal&& this.props.getUrlParam('dest_tradetype')){ + let data = { + queryInfo: this.props.search.getQueryInfo(searchId), + appcode: this.props.getUrlParam('src_appcode'), + pageId: pagecode, + src_billtype: billType, + dest_tradetype: this.props.getUrlParam('dest_tradetype'), + busitype: getDefData(billType + this.props.getUrlParam('src_tradetype'), "transfer.dataSource") + }; + let generType = this.props.search.getSearchValByField(searchId, 'generationType'); + //得到数据渲染到页面 + let checkedSum=0; + ajax({ + url: '/nccloud/arap/arappub/transferquery.do', + data: data, + success: (res) => { + if( generType.value.firstvalue!=this.generationType){ + this.generationType = generType.value.firstvalue; + this.props.transferTable.clearAllSelectedData(); + } + + if (res.data) { + let checkedRowPK=getCheckedRowPK.call(this,{headId, bodyId,body_pkname})||[]; + let newdata = res.data.sort(sortFunction('billdate','billno',headId)); + if(checkedRowPK&&checkedRowPK.length>0){ + let {resultData,pullMoney}=updateCheckedRowsCurrentDealMny.call(this,{checkedRowPK,data:newdata,headId, bodyId,body_pkname}); + newdata=resultData; + checkedSum=pullMoney; + } + this.props.transferTable.setTransferTableValue(headId, bodyId, newdata, 'pk_payablebill', 'pk_payableitem'); + /* + * key:存储数据的key + * dataSource: 缓存数据命名空间 + * data: 存储数据 + */ + setDefData('searchData', dataSource, res.data); + toast({ color: 'success', content: this.state.json['payablebill-000019']+res.data.length+this.state.json['payablebill-000020'] });/* 国际化处理: 查询成功,共,条*/ + } else { + this.props.transferTable.setTransferTableValue(headId, bodyId, [], 'pk_payablebill', 'pk_payableitem'); + toast({ content: this.state.json['payablebill-000059'], color: 'warning'});/* 国际化处理: 未查询到符合条件的数据*/ + } + updatePullMoney.call(this,checkedSum); + // onCheckedChange.call(this, null, null, null, null, {headId, bodyId, body_pkname}); + } + }) + } + +} + +/*YuO8szH0cVixePu/Bt+mG6B82aSbGhMosB18vg69kDk=*/ \ No newline at end of file diff --git a/src/arap/payablebill/payablebill/transfer/constants.js b/src/arap/payablebill/payablebill/transfer/constants.js new file mode 100644 index 00000000..34926d40 --- /dev/null +++ b/src/arap/payablebill/payablebill/transfer/constants.js @@ -0,0 +1,39 @@ +/*kHr1VQMdEU42oXEu346enGx+6rXJ4OFHE2VimKRgjU4=*/ + +/** + * 查询区域 + */ +export const searchId = '20080PBM_query'; + +/** + * 表头区域 + */ +export const headId = '20080PBM_head'; + +/** + * 表体区域 + */ +export const bodyId = '20080PBM_bodys'; + +export const appcode = '20080PBM'; + +export const pagecode = '20080PBM_TRANSFER'; + +//主子拉平展示页面编码 +export const mainPageCode = '20080PBM_TRANSFERMAIN'; + +// 主子拉平显示区域编码 +export const mainCode = 'transfermain' + +/** + * 单据类型 + */ +export const billType = 'F1'; + +/** + * 转单单页应用缓存,命名规范为:"领域名.模块名.节点名.自定义名"。 + */ +export const dataSource = 'fi.arap.payablebill.transfer'; +export const body_pkname='pk_payableitem'; + +/*kHr1VQMdEU42oXEu346enGx+6rXJ4OFHE2VimKRgjU4=*/ \ No newline at end of file diff --git a/src/arap/payablebill/payablebill/transfer/index.js b/src/arap/payablebill/payablebill/transfer/index.js new file mode 100644 index 00000000..15637079 --- /dev/null +++ b/src/arap/payablebill/payablebill/transfer/index.js @@ -0,0 +1,174 @@ +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ +import React, { Component } from 'react'; +import ReactDOM from 'react-dom'; +import { base, createPage, ajax, spaCache,getMultiLang } from 'nc-lightapp-front'; +import { initTemplate, initTemplateFull } from './init'; +import { searchBtnClick } from './btnClick'; +import { pagecode, searchId, headId, bodyId, billType, dataSource, mainCode, mainPageCode,body_pkname } from './constants'; +let { setDefData, getDefData } = spaCache; +let { NCBackBtn, NCToggleViewBtn, NCDiv } = base; +import afterEvent from '../../../public/components/searchAreaAfterEvent'//查询区编辑后事件 +import { selectArea,onCheckedChange,onClearAll } from '../../../public/components/transferTableSelectArea'; +class TransferTable extends Component { + constructor(props) { + super(props); + this.searchId = searchId; + this.headId = headId; + this.bodyId = bodyId; + this.pagecode = pagecode; + this.appcode = props.getSearchParam('c'); + this.state = { + pullMoney:{value:'',scale:'8'},//本次拉取金额 + expand: false, + fullOrNest :'nest', + json: {} + }; + this.generationType = null; + } + componentDidMount() { + let callback = (json) => { + this.setState({json:json},() => { + let { hasCache } = this.props.transferTable; + if (!hasCache(dataSource)) { + this.props.transferTable.setTransferTableValue(headId, bodyId, [], 'pk_payablebill', 'pk_payableitem'); + } + initTemplate.call(this, this.props, this.initShow); + initTemplateFull(this.props); //加载主子拉平模板 + }); + } + getMultiLang({moduleId:['payablebill','public'],domainName :'arap',currentLocale:'simpchn',callback}); + } + + //转单跳转目的小应用 + transfer = () => { + setDefData('src_appcode', dataSource, this.props.getUrlParam('src_appcode')); + setDefData('src_pagecode', dataSource, pagecode); + if(this.state.fullOrNest&&this.state.fullOrNest=='full'){ + this.props.transferTable.changeViewType(headId); + } + this.props.pushTo('/card', { + status: 'add', + type: 'transfer', + srcBilltype: billType, + dataSource: dataSource, + generationType: this.generationType, + pagecode: this.props.getUrlParam('dest_tradetype') + }); + }; + + //返回列表 + backList = () => { + let dest_billtype = this.props.getUrlParam('dest_billtype'); + let pagecode = null; + if (dest_billtype) { + if (dest_billtype == 'F0') { + pagecode = '20060RBM_LIST'; //应收单列表 + } else if (dest_billtype == 'F1') { + pagecode = '20080PBM_LIST'; //应付单列表 + } else if (dest_billtype == 'F2') { + pagecode = '20060GBM_LIST'; //收款单列表 + } else if (dest_billtype == 'F3') { + pagecode = '20080EBM_LIST'; //付款单列表 + } + } + if(this.state.fullOrNest&&this.state.fullOrNest=='full'){ + this.props.transferTable.changeViewType(headId); + } + this.props.pushTo('/list', { + pagecode: pagecode + }); + }; + onCheckedChange=(flag, record, index, bodys) => { //勾选的回调函数 + onCheckedChange.call(this,flag, record, index, bodys,{headId, bodyId,body_pkname}); + } + clearPullMoney=()=>{ + onClearAll.call(this); + } + onChangeViewClick=()=>{ + this.props.transferTable.changeViewType(headId); + } + // react:界面渲染函数 + render() { + const { transferTable, button, search } = this.props; + const { NCCreateSearch } = search; + const { createButton } = button; + const { createTransferTable, createTransferList, getTransformFormDisplay } = transferTable; + const { createBillHeadInfo } = this.props.BillHeadInfo; + let {fullOrNest } = this.state; + let selectedShow = transferTable.getSelectedListDisplay(headId); + let fullOrFlag=fullOrNest&&fullOrNest=='nest'?true:false; + return ( +
+ {!selectedShow ? +
+ +
+ {createBillHeadInfo({ + title: this.state.json['payablebill-000061'],//国际化处理: 选择应付单 + backBtnClick: () => { + this.backList(); + } + })} +
+
+ { + if(flag){ + // if (!this.props.meta.getMeta()[mainCode]) { + // initTemplateFull(this.props); //加载主子拉平模板 + fullOrNest = 'full'; + } else { + // initTemplate.call(this, this.props); //加载主子拉平模板 + fullOrNest = 'nest'; + } + this.props.transferTable.changeViewType(headId); + let expandtemp = !this.state.expand; + this.setState({ expand: expandtemp,fullOrNest:fullOrNest}); + }} + /> +
+
+ {fullOrFlag&&
+ {NCCreateSearch( + searchId, + { + clickSearchBtn: searchBtnClick.bind(this), + onAfterEvent: afterEvent.bind(this),//编辑后事件 + } + //模块id + )} +
} +
+ : ''} + +
+ {createTransferTable({ + fieldid:'payablebill', + dataSource: dataSource, + headTableId: headId, //表格组件id + bodyTableId: bodyId, //子表模板id + fullTableId: mainCode, //主子拉平模板id + //点击加号展开,设置表格数据 + transferBtnText: this.state.json['payablebill-000060'], //转单按钮显示文字/* 国际化处理: 生成下游单据*/ + containerSelector: '#transferList', + onTransferBtnClick: this.transfer, + onChangeViewClick: this.onChangeViewClick.bind(this), + fullDataRule:'body', + onCheckedChange: this.onCheckedChange.bind(this), + onClearAll:this.clearPullMoney.bind(this), + selectArea: selectArea.bind(this,{headId, bodyId, selectedShow, body_pkname}), + })} +
+
+ ); + } +} + +TransferTable = createPage({ + //initTemplate: initTemplate +})(TransferTable); + +export default TransferTable; + +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ \ No newline at end of file diff --git a/src/arap/payablebill/payablebill/transfer/init/index.js b/src/arap/payablebill/payablebill/transfer/init/index.js new file mode 100644 index 00000000..7c92aa53 --- /dev/null +++ b/src/arap/payablebill/payablebill/transfer/init/index.js @@ -0,0 +1,7 @@ +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ +import initTemplate from './initTemplate'; +import initTemplateFull from './initTemplateFull'; + +export {initTemplate, initTemplateFull} + +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ \ No newline at end of file diff --git a/src/arap/payablebill/payablebill/transfer/init/initTemplate.js b/src/arap/payablebill/payablebill/transfer/init/initTemplate.js new file mode 100644 index 00000000..a72c31a6 --- /dev/null +++ b/src/arap/payablebill/payablebill/transfer/init/initTemplate.js @@ -0,0 +1,52 @@ +/*pmFWCFu5nhKkBzYmrkBakYqb4t+QDKrWy/miWT3MDKY=*/ +import { toast } from 'nc-lightapp-front'; +import {modifierSearchMetas} from '../../../../public/components/pubUtils/arapListSearchRefFilter'; +import { pagecode, appcode, searchId,billType } from '../constants'; +import setDefOrgBilldateSrchArea from '../../../../public/components/defOrgBilldateSrchArea.js'; + +export default function (props) { + let that = this; + if(!props.getUrlParam('src_appcode')){ + props.setUrlParam({ src_appcode: appcode}); + toast({ color: 'warning', content: this.state.json['public-000250'] }); + } + props.createUIDom( + { + pagecode: pagecode, + appcode: props.getUrlParam('src_appcode'), + reqDataQueryappcontext:{ + rqUrl: '/platform/appregister/queryappcontext.do', + rqJson: JSON.stringify({ pagecode: pagecode, appcode: appcode }), + rqCode: 'context', + } + }, + function (data) { + if (data) { + if (data.template) { + if (!data.template[searchId]) { + return; + } + //高级查询设置财务组织默认值 + // data.context.paramMap.pk_transtype=null; + // data.context.paramMap.transtype_name=null; + setDefOrgBilldateSrchArea(props, searchId, data); + let meta = data.template; + modifierSearchMetas(searchId,props,meta,billType,null,that); + // props.meta.setMeta(meta); + props.meta.addMeta(meta); + } + if (data.button) { + let button = data.button; + props.button.setButtons(button); + } + + let generType = that.props.search.getSearchValByField(searchId, 'generationType'); + if (generType && generType.value.firstvalue != that.generationType) { + that.generationType = generType.value.firstvalue; + } + } + } + ); +} + +/*pmFWCFu5nhKkBzYmrkBakYqb4t+QDKrWy/miWT3MDKY=*/ \ No newline at end of file diff --git a/src/arap/payablebill/payablebill/transfer/init/initTemplateFull.js b/src/arap/payablebill/payablebill/transfer/init/initTemplateFull.js new file mode 100644 index 00000000..2fccf20e --- /dev/null +++ b/src/arap/payablebill/payablebill/transfer/init/initTemplateFull.js @@ -0,0 +1,25 @@ +/*HDV8KmD/YpIkan/Ri5ozX0m+BTC+ANYPkpoTPN33+U0=*/ +import { mainPageCode, appcode, searchId } from '../constants'; + +export default function (props) { + props.createUIDom( + { + pagecode: mainPageCode, + appcode: props.getUrlParam('src_appcode') ? props.getUrlParam('src_appcode') : appcode, + }, + function (data) { + if (data) { + if (data.template) { + // if (!data.template[searchId]) { + // return; + // } + let meta = data.template; + // props.meta.setMeta(meta); + props.meta.addMeta(meta); + } + } + } + ); +} + +/*HDV8KmD/YpIkan/Ri5ozX0m+BTC+ANYPkpoTPN33+U0=*/ \ No newline at end of file diff --git a/src/arap/public/ReferLoader/index.js b/src/arap/public/ReferLoader/index.js index b9c82ac2..5218a027 100644 --- a/src/arap/public/ReferLoader/index.js +++ b/src/arap/public/ReferLoader/index.js @@ -1,4 +1,4 @@ -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ import { Component } from 'react'; import createScript from '../components/uapRefer'; import './index.less'; @@ -39,4 +39,4 @@ export default class ReferLoader extends Component { } } -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ \ No newline at end of file +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ \ No newline at end of file diff --git a/src/arap/public/components/FormatDateTimeh.js b/src/arap/public/components/FormatDateTimeh.js index b7b022a6..486733be 100644 --- a/src/arap/public/components/FormatDateTimeh.js +++ b/src/arap/public/components/FormatDateTimeh.js @@ -1,4 +1,4 @@ -/*t4KclvUsi11lY/kRQYmxeHllC7cdiTk8HZuz/exV8uQ=*/ +/*t4KclvUsi11lY/kRQYmxeEfe3my3F9pCkKIuTlM4Ozg=*/ export function getNowFormatDate() { var date = new Date(); var seperator1 = "-"; @@ -29,4 +29,4 @@ export function getNowFormatDate() { return currentdate; } -/*t4KclvUsi11lY/kRQYmxeHllC7cdiTk8HZuz/exV8uQ=*/ \ No newline at end of file +/*t4KclvUsi11lY/kRQYmxeEfe3my3F9pCkKIuTlM4Ozg=*/ \ No newline at end of file diff --git a/src/arap/public/components/afterEventPub/afterEventPubDeal.js b/src/arap/public/components/afterEventPub/afterEventPubDeal.js index 7db7886d..4766e920 100644 --- a/src/arap/public/components/afterEventPub/afterEventPubDeal.js +++ b/src/arap/public/components/afterEventPub/afterEventPubDeal.js @@ -1,4 +1,4 @@ -/*DbLBG0MQJ3dZ2XThB6nA/c4sYlawZ29jmoUHSKYFXu0=*/ +/*DbLBG0MQJ3dZ2XThB6nA/UVkGkGb3Me1hlrhx4c46Sc=*/ import { ajax, base ,toast} from 'nc-lightapp-front'; import { calculateHeadMoney, refreshChildVO2HeadVO } from '../../components/pubUtils/billPubUtil.js'; @@ -112,4 +112,4 @@ let errorDeal = function(that, res,changedrows, key) { export { formulamsgHint, renderData, errorDeal, headAfterEventRenderData, bodyAfterEventRenderData }; -/*DbLBG0MQJ3dZ2XThB6nA/c4sYlawZ29jmoUHSKYFXu0=*/ \ No newline at end of file +/*DbLBG0MQJ3dZ2XThB6nA/UVkGkGb3Me1hlrhx4c46Sc=*/ \ No newline at end of file diff --git a/src/arap/public/components/allocation.js b/src/arap/public/components/allocation.js index f422b911..f45dc651 100644 --- a/src/arap/public/components/allocation.js +++ b/src/arap/public/components/allocation.js @@ -1,4 +1,4 @@ -/*jl3PIwMb5MyMAa5yfSj+PNJDSv8ynxYVExBnsqNjywc=*/ +/*jl3PIwMb5MyMAa5yfSj+PKdw+P175fvVGMqZUuuBkvA=*/ import { ajax,toast } from 'nc-lightapp-front'; import { headButton,bodyButton,innerButton} from './pubUtils/buttonName'; import { refreshChildVO2HeadVO } from './pubUtils/billPubUtil.js'; @@ -333,4 +333,4 @@ function getAllocationInfo(pk_billtype){ } export {allocperiodruleLinkQuery,showAllocation,cancelAllocation,beSureAllocation,setAllocField,ctrAllocBtn,ListAllocperiodruleLinkQuery,dealBtnVisibleForApprovalCenter}; -/*jl3PIwMb5MyMAa5yfSj+PNJDSv8ynxYVExBnsqNjywc=*/ \ No newline at end of file +/*jl3PIwMb5MyMAa5yfSj+PKdw+P175fvVGMqZUuuBkvA=*/ \ No newline at end of file diff --git a/src/arap/public/components/arapBillLinkReport.js b/src/arap/public/components/arapBillLinkReport.js index 4e8a6e78..2c855b1f 100644 --- a/src/arap/public/components/arapBillLinkReport.js +++ b/src/arap/public/components/arapBillLinkReport.js @@ -1,4 +1,4 @@ -/*yv0bISensajrRpzlOGH0BpjK1aDg9pqny4Ggf9LjKhU=*/ +/*yv0bISensajrRpzlOGH0Bhj87M3kg/Qu4xQdkj1v5O8=*/ import { ajax,viewModel } from 'nc-lightapp-front'; let { setGlobalStorage } = viewModel; /** @@ -143,4 +143,4 @@ function transData(queryVO ,pk_org) { return finalData; } -/*yv0bISensajrRpzlOGH0BpjK1aDg9pqny4Ggf9LjKhU=*/ \ No newline at end of file +/*yv0bISensajrRpzlOGH0Bhj87M3kg/Qu4xQdkj1v5O8=*/ \ No newline at end of file diff --git a/src/arap/public/components/arapInitInfo/loginContext.js b/src/arap/public/components/arapInitInfo/loginContext.js index 6d05ffce..1a249805 100644 --- a/src/arap/public/components/arapInitInfo/loginContext.js +++ b/src/arap/public/components/arapInitInfo/loginContext.js @@ -1,4 +1,4 @@ -/*FCDPvguvKELon8NwUn9n+W0k/4NmtPJsZ1UbQ8TOX8M=*/ +/*FCDPvguvKELon8NwUn9n+W33EDFZngDe+sDEjAJ6bD8=*/ import { cardCache, getBusinessInfo } from 'nc-lightapp-front'; let { setDefData, getDefData } = cardCache; let businessInfo = getBusinessInfo(); @@ -65,4 +65,4 @@ export function setContext(key, value, dataSource = sourceKey) { setDefData(dataSource, dataSource, context); } -/*FCDPvguvKELon8NwUn9n+W0k/4NmtPJsZ1UbQ8TOX8M=*/ \ No newline at end of file +/*FCDPvguvKELon8NwUn9n+W33EDFZngDe+sDEjAJ6bD8=*/ \ No newline at end of file diff --git a/src/arap/public/components/arapSmartCard.js b/src/arap/public/components/arapSmartCard.js index fecb2f09..1bce008a 100644 --- a/src/arap/public/components/arapSmartCard.js +++ b/src/arap/public/components/arapSmartCard.js @@ -1,4 +1,4 @@ -/*TKFbizIz1sQtCe1KWOr3lD9J0kC1bJWvoD6XtKD1hGM=*/ +/*TKFbizIz1sQtCe1KWOr3lGZkRs2QW/J0RAy++fTgUXM=*/ import { ajax,base,viewModel } from 'nc-lightapp-front'; const { NCProgressBar } = base; let { setGlobalStorage, getGlobalStorage } = viewModel; @@ -275,4 +275,4 @@ function querySmartCardData(param){ }) }) } -/*TKFbizIz1sQtCe1KWOr3lD9J0kC1bJWvoD6XtKD1hGM=*/ \ No newline at end of file +/*TKFbizIz1sQtCe1KWOr3lGZkRs2QW/J0RAy++fTgUXM=*/ \ No newline at end of file diff --git a/src/arap/public/components/businessDate.js b/src/arap/public/components/businessDate.js index 7e9163ab..a9bf1974 100644 --- a/src/arap/public/components/businessDate.js +++ b/src/arap/public/components/businessDate.js @@ -1,4 +1,4 @@ -/*P6z5SYZp3TALXGCBuxWEpraqYbHuJ01m6LT9a/d8L2k=*/ +/*P6z5SYZp3TALXGCBuxWEprEo7Hmi0Zs8IMKaGr+m3zs=*/ import { getBusinessInfo } from 'nc-lightapp-front'; //获取当前业务日期 "2018-08-00 17:47:18" function businessDateH() { @@ -100,4 +100,4 @@ function getPreMonthOne(date) { export { businessDateH, businessDate, getHMS, getPreMonth, getDefaultBusinessDate,getPreMonthOne}; -/*P6z5SYZp3TALXGCBuxWEpraqYbHuJ01m6LT9a/d8L2k=*/ \ No newline at end of file +/*P6z5SYZp3TALXGCBuxWEprEo7Hmi0Zs8IMKaGr+m3zs=*/ \ No newline at end of file diff --git a/src/arap/public/components/combinedExaminationModel/index.js b/src/arap/public/components/combinedExaminationModel/index.js index d9eb1f37..20891599 100644 --- a/src/arap/public/components/combinedExaminationModel/index.js +++ b/src/arap/public/components/combinedExaminationModel/index.js @@ -1,4 +1,4 @@ -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ import React, { Component } from 'react'; import { ajax, base, toast, pageTo, getMultiLang, createPage, formatNumber, formatDatetime } from 'nc-lightapp-front'; const { NCModal, NCButton, NCTable, NCDiv } = base; @@ -488,4 +488,4 @@ class combinedExaminationModel extends Component { combinedExaminationModel = createPage({})(combinedExaminationModel); export default combinedExaminationModel; -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ \ No newline at end of file +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ \ No newline at end of file diff --git a/src/arap/public/components/defOrgBilldateSrchArea.js b/src/arap/public/components/defOrgBilldateSrchArea.js index e087ad97..bc459d05 100644 --- a/src/arap/public/components/defOrgBilldateSrchArea.js +++ b/src/arap/public/components/defOrgBilldateSrchArea.js @@ -1,4 +1,4 @@ -/*evsrXQuwFL1pgnEln2+WzCO2T0Yp2fdcCiJUQaDw8TBIwQvyPC71haFRAwdLNvJi*/ +/*evsrXQuwFL1pgnEln2+WzEJolFFKxOS8Ub5yxt/rL8bqe51CB/F+GHK9o2kvUaPf*/ /** * 查询区赋值 @@ -79,4 +79,4 @@ export default function setDefOrgBilldateSrchArea(props, areacode, data) { }); } -/*evsrXQuwFL1pgnEln2+WzCO2T0Yp2fdcCiJUQaDw8TBIwQvyPC71haFRAwdLNvJi*/ \ No newline at end of file +/*evsrXQuwFL1pgnEln2+WzEJolFFKxOS8Ub5yxt/rL8bqe51CB/F+GHK9o2kvUaPf*/ \ No newline at end of file diff --git a/src/arap/public/components/linkSourceCard.js b/src/arap/public/components/linkSourceCard.js index 676f8364..e0f9c277 100644 --- a/src/arap/public/components/linkSourceCard.js +++ b/src/arap/public/components/linkSourceCard.js @@ -1,4 +1,4 @@ -/*UUAd/2lqsTyHfF2lV8UdNHM1WoRaSnuObIIUBNmK8TM=*/ +/*UUAd/2lqsTyHfF2lV8UdNHmQ+pcBsNn3N+uF4x90mJk=*/ import { ajax, cacheTools, cardCache } from 'nc-lightapp-front'; import { headButton,bodyButton,innerButton} from './pubUtils/buttonName'; let { updateCache } = cardCache; @@ -54,4 +54,4 @@ export default function linkSourceCard(props, pageId, pk_bill, formId, tableId, }); } -/*UUAd/2lqsTyHfF2lV8UdNHM1WoRaSnuObIIUBNmK8TM=*/ \ No newline at end of file +/*UUAd/2lqsTyHfF2lV8UdNHmQ+pcBsNn3N+uF4x90mJk=*/ \ No newline at end of file diff --git a/src/arap/public/components/linkSourceList.js b/src/arap/public/components/linkSourceList.js index 21aa0e0f..d1cfa058 100644 --- a/src/arap/public/components/linkSourceList.js +++ b/src/arap/public/components/linkSourceList.js @@ -1,4 +1,4 @@ -/*1NTmpnbLRdjbxh5iaod8nbw6EkGNDaMJ//qNhG6XI+I=*/ +/*1NTmpnbLRdjbxh5iaod8nUyDGlnycLljltgpqtWxo6I=*/ import { ajax, cacheTools, cardCache } from 'nc-lightapp-front'; let { updateCache } = cardCache; @@ -40,4 +40,4 @@ export default function linkSourceList(props, tableId) { }); } -/*1NTmpnbLRdjbxh5iaod8nbw6EkGNDaMJ//qNhG6XI+I=*/ \ No newline at end of file +/*1NTmpnbLRdjbxh5iaod8nUyDGlnycLljltgpqtWxo6I=*/ \ No newline at end of file diff --git a/src/arap/public/components/linkvouchar.js b/src/arap/public/components/linkvouchar.js index ec5dca4b..5892d7b0 100644 --- a/src/arap/public/components/linkvouchar.js +++ b/src/arap/public/components/linkvouchar.js @@ -1,4 +1,4 @@ -/*5v44bfMkReia3hIfQmjEPoRVjbAJ909hE0TbetkbyI0=*/ +/*5v44bfMkReia3hIfQmjEPlh2LuiithWDt0aeyGEQV+g=*/ import { ajax, cacheTools, toast,pageTo } from 'nc-lightapp-front'; /** * 联查凭证 包含凭证预览 @@ -269,4 +269,4 @@ export default function linkvouchar(that, props, vo, pk_bill, appcode,isLowcode, }); } -/*5v44bfMkReia3hIfQmjEPoRVjbAJ909hE0TbetkbyI0=*/ \ No newline at end of file +/*5v44bfMkReia3hIfQmjEPlh2LuiithWDt0aeyGEQV+g=*/ \ No newline at end of file diff --git a/src/arap/public/components/madeBill.js b/src/arap/public/components/madeBill.js index f50c161e..e266abe3 100644 --- a/src/arap/public/components/madeBill.js +++ b/src/arap/public/components/madeBill.js @@ -1,4 +1,4 @@ -/*SO23XwQK9DYPpXpX/CiBCuB6WPhC5RIeIJiu1naRQ/Y=*/ +/*SO23XwQK9DYPpXpX/CiBCir3cH+D6UtDjKBaHrKcJZU=*/ import { ajax, cacheTools } from 'nc-lightapp-front'; /** @@ -41,4 +41,4 @@ export default function madeBill(that, props, madeData, pk_bill, appcode, list) }); } -/*SO23XwQK9DYPpXpX/CiBCuB6WPhC5RIeIJiu1naRQ/Y=*/ \ No newline at end of file +/*SO23XwQK9DYPpXpX/CiBCir3cH+D6UtDjKBaHrKcJZU=*/ \ No newline at end of file diff --git a/src/arap/public/components/method.js b/src/arap/public/components/method.js index 4f07a182..e05124cb 100644 --- a/src/arap/public/components/method.js +++ b/src/arap/public/components/method.js @@ -1,4 +1,4 @@ -/*l4JV8LFCNVFiR0/J4U5RmxV0GtbXRBiPMdRAxxENlJA=*/ +/*phFqyB1lHNkVimJ6Oj9dvgn1UumWgKzcJHtdRr6hgcU=*/ //加法 function accAdd(arg1,arg2){ @@ -39,4 +39,4 @@ function accDiv(arg1,arg2){ } export {accAdd,Subtr,accMul,accDiv} -/*l4JV8LFCNVFiR0/J4U5RmxV0GtbXRBiPMdRAxxENlJA=*/ \ No newline at end of file +/*phFqyB1lHNkVimJ6Oj9dvgn1UumWgKzcJHtdRr6hgcU=*/ \ No newline at end of file diff --git a/src/arap/public/components/moduleEnable.js b/src/arap/public/components/moduleEnable.js index 515965e3..37157784 100644 --- a/src/arap/public/components/moduleEnable.js +++ b/src/arap/public/components/moduleEnable.js @@ -1,4 +1,4 @@ -/*ZlD41dHOzlOSLjj4H7vAI0mJXvTiGhlagD2JdtTZcnY=*/ +/*ZlD41dHOzlOSLjj4H7vAI642ncfPND/k836Gl+cMxmQ=*/ import { ajax, toast, cacheTools } from 'nc-lightapp-front'; const MODULE_ENABLE_INFO = 'MODULE_ENABLE_INFO'; @@ -47,4 +47,4 @@ function getModuleName(that, moduleCode) { } export { moduleEnable, IMAG, SSCIVM } -/*ZlD41dHOzlOSLjj4H7vAI0mJXvTiGhlagD2JdtTZcnY=*/ \ No newline at end of file +/*ZlD41dHOzlOSLjj4H7vAI642ncfPND/k836Gl+cMxmQ=*/ \ No newline at end of file diff --git a/src/arap/public/components/pubUtils/CopyBill/arapCopyBill.js b/src/arap/public/components/pubUtils/CopyBill/arapCopyBill.js index 6ef1773e..a5e631d2 100644 --- a/src/arap/public/components/pubUtils/CopyBill/arapCopyBill.js +++ b/src/arap/public/components/pubUtils/CopyBill/arapCopyBill.js @@ -1,4 +1,4 @@ -/*35ylGH1JvsrglmZHq3o9gBTMx4P9SXuakSO9ho0CLoI=*/ +/*35ylGH1JvsrglmZHq3o9gKX4HTN6x4+rq77IozeKau4=*/ import { ajax ,getBusinessInfo ,toast,DongbaToLocalTime,formatDatetime } from "nc-lightapp-front"; import {ArapConstant,parentItemKey,childrenItemKey,IBillFieldGet,FromSystem,ArapBillVOConsts, billstatus,effectstatus,approvestatus,INDEX_PK,headkey,bodykey,crBodykey,deBodykey}from './arapCopyConstant' ; @@ -633,4 +633,4 @@ let setBillDef = (that,pageCode) => { export { listCopyBill, copyBill,setBillDef}; -/*35ylGH1JvsrglmZHq3o9gBTMx4P9SXuakSO9ho0CLoI=*/ \ No newline at end of file +/*35ylGH1JvsrglmZHq3o9gKX4HTN6x4+rq77IozeKau4=*/ \ No newline at end of file diff --git a/src/arap/public/components/pubUtils/CopyBill/arapCopyConstant.js b/src/arap/public/components/pubUtils/CopyBill/arapCopyConstant.js index 6c7cfee7..ab741889 100644 --- a/src/arap/public/components/pubUtils/CopyBill/arapCopyConstant.js +++ b/src/arap/public/components/pubUtils/CopyBill/arapCopyConstant.js @@ -1,4 +1,4 @@ -/*1JCJfO3tKWltd1ZCIm4JoN6gd/bMtcbcNW09IDf0AIw=*/ +/*1JCJfO3tKWltd1ZCIm4JoKoG9XvI+jKgobB2kK2RgPM=*/ /** * 记录复制中一些固定值 */ @@ -133,4 +133,4 @@ let deBodykey = ["globaldebit","globalnotax_de","globaltax_de","groupdebit","gro export {ArapConstant,parentItemKey,childrenItemKey,IBillFieldGet,FromSystem,ArapBillVOConsts, billstatus,effectstatus,approvestatus,INDEX_PK,headkey,bodykey,crBodykey,deBodykey} -/*1JCJfO3tKWltd1ZCIm4JoN6gd/bMtcbcNW09IDf0AIw=*/ \ No newline at end of file +/*1JCJfO3tKWltd1ZCIm4JoKoG9XvI+jKgobB2kK2RgPM=*/ \ No newline at end of file diff --git a/src/arap/public/components/pubUtils/MicroServiceSocket.js b/src/arap/public/components/pubUtils/MicroServiceSocket.js index c1da60fb..6df1515a 100644 --- a/src/arap/public/components/pubUtils/MicroServiceSocket.js +++ b/src/arap/public/components/pubUtils/MicroServiceSocket.js @@ -1,4 +1,4 @@ -/*NPjHrMidwQM8l38H4y0iAYgMzLr4vTCUua16w05B/zQ=*/ +/*NPjHrMidwQM8l38H4y0iATuC6Nm8vZPY0SsJDdNLA+I=*/ import { toast,cardCache,ajax} from 'nc-lightapp-front'; let { updateCache, deleteCacheById } = cardCache; /** @@ -171,4 +171,4 @@ function throwErrorByNotCard(props,formId,pkname){ } } export {listSocketConnect,cardSocketConnect,cardSocketErrorFlag,toggleBtnStatus,throwSagaErrorAgency} -/*NPjHrMidwQM8l38H4y0iAYgMzLr4vTCUua16w05B/zQ=*/ \ No newline at end of file +/*NPjHrMidwQM8l38H4y0iATuC6Nm8vZPY0SsJDdNLA+I=*/ \ No newline at end of file diff --git a/src/arap/public/components/pubUtils/arap436s3utils.js b/src/arap/public/components/pubUtils/arap436s3utils.js index f0b409eb..41f7e331 100644 --- a/src/arap/public/components/pubUtils/arap436s3utils.js +++ b/src/arap/public/components/pubUtils/arap436s3utils.js @@ -1,4 +1,4 @@ -/*zWubMcx+l0Bp5Y+P2ZIAvr19ubL4OplFxVTfHTKW5sg=*/ +/*zWubMcx+l0Bp5Y+P2ZIAvheHxJ8YmXG+VFyfa79rPw4=*/ import { ajax, getBusinessInfo, promptBox, toast, cardCache } from 'nc-lightapp-front'; import { delLine, @@ -503,4 +503,4 @@ export function fieldVisable(_this, formId, tableId, billType) { _this.props.cardTable.hideColByKey(tableId, falseCol); _this.props.cardTable.showColByKey(tableId, trueCol); } -/*zWubMcx+l0Bp5Y+P2ZIAvr19ubL4OplFxVTfHTKW5sg=*/ \ No newline at end of file +/*zWubMcx+l0Bp5Y+P2ZIAvheHxJ8YmXG+VFyfa79rPw4=*/ \ No newline at end of file diff --git a/src/arap/public/components/pubUtils/arapConstant.js b/src/arap/public/components/pubUtils/arapConstant.js index 2a861eb8..2c41b63f 100644 --- a/src/arap/public/components/pubUtils/arapConstant.js +++ b/src/arap/public/components/pubUtils/arapConstant.js @@ -1,4 +1,4 @@ -/*8XOsOJ51YUkbjwXdN/5UysWyIptyJg2Lq0v/w6ygYjY=*/ +/*8XOsOJ51YUkbjwXdN/5Uyi0WEM/6bZ28/qMmxPhf4K4=*/ /** * 该文件记录收付的一些常量值 */ @@ -7,4 +7,4 @@ let OperationColumn = '180px';//表格的操作列的宽度 export { OperationColumn } -/*8XOsOJ51YUkbjwXdN/5UysWyIptyJg2Lq0v/w6ygYjY=*/ \ No newline at end of file +/*8XOsOJ51YUkbjwXdN/5Uyi0WEM/6bZ28/qMmxPhf4K4=*/ \ No newline at end of file diff --git a/src/arap/public/components/pubUtils/arapFormRefFilter.js b/src/arap/public/components/pubUtils/arapFormRefFilter.js index a3f9ed0c..67b31028 100644 --- a/src/arap/public/components/pubUtils/arapFormRefFilter.js +++ b/src/arap/public/components/pubUtils/arapFormRefFilter.js @@ -1,4 +1,4 @@ -/*00Sve/UaJN7ygha62ozi8thkV/gAHT7DIzT2x+xLass=*/ +/*00Sve/UaJN7ygha62ozi8vD2sajR207xF8ArykgDrEA=*/ import { getBusinessInfo, ajax } from "nc-lightapp-front"; @@ -1645,4 +1645,4 @@ function refFilter(props, moduleId, key, value, item, config, billType, tradeTyp export { formBeforeEvent } -/*00Sve/UaJN7ygha62ozi8thkV/gAHT7DIzT2x+xLass=*/ \ No newline at end of file +/*00Sve/UaJN7ygha62ozi8vD2sajR207xF8ArykgDrEA=*/ \ No newline at end of file diff --git a/src/arap/public/components/pubUtils/arapListSearchRefFilter.js b/src/arap/public/components/pubUtils/arapListSearchRefFilter.js index 6f2aac82..b9cbf020 100644 --- a/src/arap/public/components/pubUtils/arapListSearchRefFilter.js +++ b/src/arap/public/components/pubUtils/arapListSearchRefFilter.js @@ -1,4 +1,4 @@ -/*IjXelIou5RoZdmabOO/YjNkUlYlmaC8IchlsEYFEwhozyQvfyb9W3ppcr+ebJL2h*/ +/*IjXelIou5RoZdmabOO/YjEuD4nWSG02EnzGpWygPx07VlX2yp0ORAh9qd68B8vgb*/ import { getBusinessInfo, ajax } from "nc-lightapp-front"; /** @@ -1796,4 +1796,4 @@ function getFirstOrgValue(orgValues) { export { modifierSearchMetas } -/*IjXelIou5RoZdmabOO/YjNkUlYlmaC8IchlsEYFEwhozyQvfyb9W3ppcr+ebJL2h*/ \ No newline at end of file +/*IjXelIou5RoZdmabOO/YjEuD4nWSG02EnzGpWygPx07VlX2yp0ORAh9qd68B8vgb*/ \ No newline at end of file diff --git a/src/arap/public/components/pubUtils/arapTableRefFilter.js b/src/arap/public/components/pubUtils/arapTableRefFilter.js index c3f40746..4ea1ccb2 100644 --- a/src/arap/public/components/pubUtils/arapTableRefFilter.js +++ b/src/arap/public/components/pubUtils/arapTableRefFilter.js @@ -1,4 +1,4 @@ -/*PaEfeO9HkJjgMYm/IEkvdmI7mg7TQrxAynFOge/KkBY=*/ +/*PaEfeO9HkJjgMYm/IEkvdsrk5V5oLeE3YExTn/boWu0=*/ import { getBusinessInfo, ajax } from "nc-lightapp-front"; import { isChecknoRef, reWriteCheckno, isCheckTypeEdit,isbillrangeEdit } from '../pubUtils/specialFieldAfterEvent'; @@ -2219,4 +2219,4 @@ function fileterUndefined(values){ export { bodyBeforeEvent } -/*PaEfeO9HkJjgMYm/IEkvdmI7mg7TQrxAynFOge/KkBY=*/ \ No newline at end of file +/*PaEfeO9HkJjgMYm/IEkvdsrk5V5oLeE3YExTn/boWu0=*/ \ No newline at end of file diff --git a/src/arap/public/components/pubUtils/arapVerificatRefFilter.js b/src/arap/public/components/pubUtils/arapVerificatRefFilter.js index b68139d5..241e5731 100644 --- a/src/arap/public/components/pubUtils/arapVerificatRefFilter.js +++ b/src/arap/public/components/pubUtils/arapVerificatRefFilter.js @@ -1,4 +1,4 @@ -/*hJhgKA3IHZF/5P/yWesT63Kyb/Ns0coJiE4QdvDboGrjLvI8io0GSILI2l4Ux1H2*/ +/*hJhgKA3IHZF/5P/yWesT63x4zwi6o74zFZmy8Tbk1ePFdPQChH9+RNuujaEVktGE*/ import { getBusinessInfo, ajax } from "nc-lightapp-front"; /** @@ -415,4 +415,4 @@ function modifierSearchMetas(searchId, props, meta, billType, pkOrg,that) { export { modifierSearchMetas } -/*hJhgKA3IHZF/5P/yWesT63Kyb/Ns0coJiE4QdvDboGrjLvI8io0GSILI2l4Ux1H2*/ \ No newline at end of file +/*hJhgKA3IHZF/5P/yWesT63x4zwi6o74zFZmy8Tbk1ePFdPQChH9+RNuujaEVktGE*/ \ No newline at end of file diff --git a/src/arap/public/components/pubUtils/arapVerifyCheck.js b/src/arap/public/components/pubUtils/arapVerifyCheck.js index b31b27fb..aad907ee 100644 --- a/src/arap/public/components/pubUtils/arapVerifyCheck.js +++ b/src/arap/public/components/pubUtils/arapVerifyCheck.js @@ -1,4 +1,4 @@ -/*ym2vHvwHarLP5JNGV0l0zomALs7EyTjya+4g5JCI0SY=*/ +/*ym2vHvwHarLP5JNGV0l0ztoySOuJGPcmriUAuQ78FSU=*/ import { toast, getBusinessInfo,ajax,getParentWindow, getTopWindow} from 'nc-lightapp-front'; import { accAdd } from '../method'; @@ -474,4 +474,4 @@ function WholeVerify(props, formId, tableId, pkBill, that,billNo) { export { BodyVerify, WholeVerify }; -/*ym2vHvwHarLP5JNGV0l0zomALs7EyTjya+4g5JCI0SY=*/ \ No newline at end of file +/*ym2vHvwHarLP5JNGV0l0ztoySOuJGPcmriUAuQ78FSU=*/ \ No newline at end of file diff --git a/src/arap/public/components/pubUtils/billFieldEditableUtil.js b/src/arap/public/components/pubUtils/billFieldEditableUtil.js index f6fc0e51..3c38e52a 100644 --- a/src/arap/public/components/pubUtils/billFieldEditableUtil.js +++ b/src/arap/public/components/pubUtils/billFieldEditableUtil.js @@ -1,4 +1,4 @@ -/*i0/DZTnkyLJbxtpRv5YHeLfMaSPnllIQ0sNMbQ+/bQgblPfEzrEQIYFz/D9qqQuZ*/ +/*i0/DZTnkyLJbxtpRv5YHeGty6i2Mnq67siv6iVYVKzEJY28q/T0UDiyWJWGq2asr*/ import { ajax,metaCache } from 'nc-lightapp-front'; /** @@ -742,4 +742,4 @@ export { applyToF3FieldsEditable, fctToArapFieldEditable, billEditProperties, cardFieldsEditableFromCM, cardFieldsEditable, puToArapFieldEditable, cardFieldsEditableWithProxy, dealHasInvoiceRecBillField,dealCommisionPayFieldBack,cardFieldsEditableWithResetProxy,checkRedType } -/*i0/DZTnkyLJbxtpRv5YHeLfMaSPnllIQ0sNMbQ+/bQgblPfEzrEQIYFz/D9qqQuZ*/ \ No newline at end of file +/*i0/DZTnkyLJbxtpRv5YHeGty6i2Mnq67siv6iVYVKzEJY28q/T0UDiyWJWGq2asr*/ \ No newline at end of file diff --git a/src/arap/public/components/pubUtils/billPubInfo.js b/src/arap/public/components/pubUtils/billPubInfo.js index 8aa564cf..1f0f5405 100644 --- a/src/arap/public/components/pubUtils/billPubInfo.js +++ b/src/arap/public/components/pubUtils/billPubInfo.js @@ -1,4 +1,4 @@ -/*JTFyKLpR7vvvfZGPN2wQ5yNxFDGfG2SY03sWRMq9jtY=*/ +/*JTFyKLpR7vvvfZGPN2wQ55y883LWUj1D8duBL1iCtps=*/ /** * 用于记录一些公共的信息记录 */ @@ -6,4 +6,4 @@ export const autoAddLineKeys = ['money_de','money_cr'] -/*JTFyKLpR7vvvfZGPN2wQ5yNxFDGfG2SY03sWRMq9jtY=*/ \ No newline at end of file +/*JTFyKLpR7vvvfZGPN2wQ55y883LWUj1D8duBL1iCtps=*/ \ No newline at end of file diff --git a/src/arap/public/components/pubUtils/billPubUtil.js b/src/arap/public/components/pubUtils/billPubUtil.js index 52971e82..2100d37d 100644 --- a/src/arap/public/components/pubUtils/billPubUtil.js +++ b/src/arap/public/components/pubUtils/billPubUtil.js @@ -1,4 +1,4 @@ -/*9Rg6iC9vDZ1nGVOVydf57+WC1Qme+8k2RNqd2DZryEQ=*/ +/*9Rg6iC9vDZ1nGVOVydf576FRMVpn9/LIUAMJbIYpbqg=*/ import { ajax, base, toast, cacheTools, cardCache, sum} from 'nc-lightapp-front'; let { getDefData, setDefData, updateCache } = cardCache; import updateTableDataTs from '../../../public/components/updateTableDataTs'; @@ -792,4 +792,4 @@ export { getPopupContainer }; -/*9Rg6iC9vDZ1nGVOVydf57+WC1Qme+8k2RNqd2DZryEQ=*/ \ No newline at end of file +/*9Rg6iC9vDZ1nGVOVydf576FRMVpn9/LIUAMJbIYpbqg=*/ \ No newline at end of file diff --git a/src/arap/public/components/pubUtils/buttonName.js b/src/arap/public/components/pubUtils/buttonName.js index 4e676e39..75972f9d 100644 --- a/src/arap/public/components/pubUtils/buttonName.js +++ b/src/arap/public/components/pubUtils/buttonName.js @@ -1,4 +1,4 @@ -/*2rSQkqIyVIHcw9rNZMqkdqdmhfIjhiY09Srik7qbXzs=*/ +/*2rSQkqIyVIHcw9rNZMqkdkg7+yVOiZWw03fQ/1CZyQE=*/ /** * 规范命名按钮的名字 */ @@ -167,4 +167,4 @@ let bottomButton = { export { headButton, bodyButton, innerButton, modelButton, bottomButton } -/*2rSQkqIyVIHcw9rNZMqkdqdmhfIjhiY09Srik7qbXzs=*/ \ No newline at end of file +/*2rSQkqIyVIHcw9rNZMqkdkg7+yVOiZWw03fQ/1CZyQE=*/ \ No newline at end of file diff --git a/src/arap/public/components/pubUtils/buttonvisible.js b/src/arap/public/components/pubUtils/buttonvisible.js index e22e940c..179b08f6 100644 --- a/src/arap/public/components/pubUtils/buttonvisible.js +++ b/src/arap/public/components/pubUtils/buttonvisible.js @@ -1,4 +1,4 @@ -/*sywsGGtTLb/wDzM0jlIiWnJLh6AWtzv1U0clGdTdwN8=*/ +/*sywsGGtTLb/wDzM0jlIiWrnsmWL/gewYudGco4Rl7Ic=*/ import { billType } from "../../../paybill/paybill/card/constants"; import { headButton, bodyButton, innerButton } from '../../../public/components/pubUtils/buttonName'; import { RecBillGenerateInvoiceTime,RecBillIsExistsIvApplication } from '../../../public/components/pubUtils/billPubUtil'; @@ -1231,4 +1231,4 @@ export { onListButtonControl, cardPullButtonControl, dealBtnVisibleForRecBill, dealBtnVisbleForInvocieTime } -/*sywsGGtTLb/wDzM0jlIiWnJLh6AWtzv1U0clGdTdwN8=*/ \ No newline at end of file +/*sywsGGtTLb/wDzM0jlIiWrnsmWL/gewYudGco4Rl7Ic=*/ \ No newline at end of file diff --git a/src/arap/public/components/pubUtils/currentTypeAfterEvent.js b/src/arap/public/components/pubUtils/currentTypeAfterEvent.js index 60f3754a..2f930f3a 100644 --- a/src/arap/public/components/pubUtils/currentTypeAfterEvent.js +++ b/src/arap/public/components/pubUtils/currentTypeAfterEvent.js @@ -1,4 +1,4 @@ -/*SwP/hCRseghcC3FHjA4JzGDlISsTMx4Yes3w4j0cEEqXjoddQje9ep8pzNcb1U9V*/ +/*SwP/hCRseghcC3FHjA4JzOBfPYbLlFAaNizUBbImXh81n7L3pkLgnrxTT3XFdlu3*/ import { ajax } from 'nc-lightapp-front'; /** @@ -33,4 +33,4 @@ function currentTypeAfterFormEvents(formId, props, key) { export { currentTypeAfterFormEvents }; -/*SwP/hCRseghcC3FHjA4JzGDlISsTMx4Yes3w4j0cEEqXjoddQje9ep8pzNcb1U9V*/ \ No newline at end of file +/*SwP/hCRseghcC3FHjA4JzOBfPYbLlFAaNizUBbImXh81n7L3pkLgnrxTT3XFdlu3*/ \ No newline at end of file diff --git a/src/arap/public/components/pubUtils/dealCardData.js b/src/arap/public/components/pubUtils/dealCardData.js index 5cc5415a..476c0cb1 100644 --- a/src/arap/public/components/pubUtils/dealCardData.js +++ b/src/arap/public/components/pubUtils/dealCardData.js @@ -1,4 +1,4 @@ -/*PSYZKs9kh2Fn61i59o3mRU8PVWcVlrZyrG7MN1pAl30=*/ +/*PSYZKs9kh2Fn61i59o3mRf0sL6NpHTH5scOWavsysW4=*/ import { toast } from 'nc-lightapp-front'; @@ -111,4 +111,4 @@ let checkScommet = (that, cardData) => { } export { dealCardData, delCardDataForVailData,checkScommet}; -/*PSYZKs9kh2Fn61i59o3mRU8PVWcVlrZyrG7MN1pAl30=*/ \ No newline at end of file +/*PSYZKs9kh2Fn61i59o3mRf0sL6NpHTH5scOWavsysW4=*/ \ No newline at end of file diff --git a/src/arap/public/components/pubUtils/floatObj.js b/src/arap/public/components/pubUtils/floatObj.js index e86281e3..87e19ca8 100644 --- a/src/arap/public/components/pubUtils/floatObj.js +++ b/src/arap/public/components/pubUtils/floatObj.js @@ -1,4 +1,4 @@ -/*5CH5qsuTywffVwj7oJW2eRFt4R1NoCE+QFhfTWyxUaw=*/ +/*5CH5qsuTywffVwj7oJW2edU0Hpi1a3zh8Dj+oMA1AdM=*/ /** * floatObj 包含加减乘除四个方法,能确保浮点数运算不丢失精度 * @@ -127,4 +127,4 @@ var floatObj = function() { export {floatObj} -/*5CH5qsuTywffVwj7oJW2eRFt4R1NoCE+QFhfTWyxUaw=*/ \ No newline at end of file +/*5CH5qsuTywffVwj7oJW2edU0Hpi1a3zh8Dj+oMA1AdM=*/ \ No newline at end of file diff --git a/src/arap/public/components/pubUtils/onBatchChange.js b/src/arap/public/components/pubUtils/onBatchChange.js index d86ed7c1..c42795ac 100644 --- a/src/arap/public/components/pubUtils/onBatchChange.js +++ b/src/arap/public/components/pubUtils/onBatchChange.js @@ -1,4 +1,4 @@ -/*SSVRjXkgvV55TIxKIO0zV24Eb7vXU8oZd2QdRue3SZU=*/ +/*SSVRjXkgvV55TIxKIO0zV5Ycaw00wfZIuvtqm6vcNcw=*/ import { ajax, toast, promptBox } from 'nc-lightapp-front'; import { formulamsgHint, bodyAfterEventRenderData } from '../../components/afterEventPub/afterEventPubDeal'; import { currentTypeAfterFormEvents } from '../../components/pubUtils/currentTypeAfterEvent'; @@ -1561,4 +1561,4 @@ function setQueryCondition(that, newRow, record, props, moduleId, attrcode,colum export { onBatchChange } -/*SSVRjXkgvV55TIxKIO0zV24Eb7vXU8oZd2QdRue3SZU=*/ \ No newline at end of file +/*SSVRjXkgvV55TIxKIO0zV5Ycaw00wfZIuvtqm6vcNcw=*/ \ No newline at end of file diff --git a/src/arap/public/components/pubUtils/specialFieldAfterEvent.js b/src/arap/public/components/pubUtils/specialFieldAfterEvent.js index f36fb3fb..5b5946bd 100644 --- a/src/arap/public/components/pubUtils/specialFieldAfterEvent.js +++ b/src/arap/public/components/pubUtils/specialFieldAfterEvent.js @@ -1,4 +1,4 @@ -/*xj1PUwebAfMJ0Skz8sEQfKxp2q6U/MbBRzVPPTgSH1y2x2rphJYlMbjhWdiNuDOu*/ +/*xj1PUwebAfMJ0Skz8sEQfElv2B7g7wejosgHrjsya1K7Ozm/u5S4P0f25D/0ckeM*/ import { ajax } from "nc-lightapp-front"; @@ -233,4 +233,4 @@ function reWriteCheckno(props, tableId) { export { checknoDisplayAfterEvent, modifyChecknoItemtype, checktypeAfterEvent, isChecknoRef, reWriteCheckno, moneyAndRateFields, isCheckTypeEdit,isbillrangeEdit }; -/*xj1PUwebAfMJ0Skz8sEQfKxp2q6U/MbBRzVPPTgSH1y2x2rphJYlMbjhWdiNuDOu*/ \ No newline at end of file +/*xj1PUwebAfMJ0Skz8sEQfElv2B7g7wejosgHrjsya1K7Ozm/u5S4P0f25D/0ckeM*/ \ No newline at end of file diff --git a/src/arap/public/components/pubUtils/transferButtonUtil.js b/src/arap/public/components/pubUtils/transferButtonUtil.js index 2526494a..a1929335 100644 --- a/src/arap/public/components/pubUtils/transferButtonUtil.js +++ b/src/arap/public/components/pubUtils/transferButtonUtil.js @@ -1,4 +1,4 @@ -/*OsyyDzKR12QV4Al862FAq4J/3BZKAvYQiwGwGL7CTw8=*/ +/*OsyyDzKR12QV4Al862FAqyg0jx+NoKpbFOFIL+ggpwY=*/ export function contactButton(button, btns) { let buttons = button; @@ -68,4 +68,4 @@ function getAddButton(AddBtn, buttons) { export { getTransferInfo }; -/*OsyyDzKR12QV4Al862FAq4J/3BZKAvYQiwGwGL7CTw8=*/ \ No newline at end of file +/*OsyyDzKR12QV4Al862FAqyg0jx+NoKpbFOFIL+ggpwY=*/ \ No newline at end of file diff --git a/src/arap/public/components/pubUtils/updatePaCFV.js b/src/arap/public/components/pubUtils/updatePaCFV.js index 48d02409..63b42963 100644 --- a/src/arap/public/components/pubUtils/updatePaCFV.js +++ b/src/arap/public/components/pubUtils/updatePaCFV.js @@ -1,4 +1,4 @@ -/*VAvd5DhIYtyxNfpz07xc9SaXya405LiVFBPgcEuaTmo=*/ +/*VAvd5DhIYtyxNfpz07xc9cMEnW1RHilOco8tk4Do6Og=*/ let updatePaCFV = function(that, route) { let data = that.props.ViewModel.getData('WholeVerifyDatas'); let pkBill = data.pkBill; @@ -48,4 +48,4 @@ let updatePaCFV = function(that, route) { export { updatePaCFV }; -/*VAvd5DhIYtyxNfpz07xc9SaXya405LiVFBPgcEuaTmo=*/ \ No newline at end of file +/*VAvd5DhIYtyxNfpz07xc9cMEnW1RHilOco8tk4Do6Og=*/ \ No newline at end of file diff --git a/src/arap/public/components/pubUtils/updatePandC.js b/src/arap/public/components/pubUtils/updatePandC.js index 461d23bc..957bbcc7 100644 --- a/src/arap/public/components/pubUtils/updatePandC.js +++ b/src/arap/public/components/pubUtils/updatePandC.js @@ -1,4 +1,4 @@ -/*5vBeFd2OCeUTgGc+457u4mrk59zQXsCzR4hDH9FUp0k=*/ +/*5vBeFd2OCeUTgGc+457u4lSbn6jQQ/L26VVBZxqZfl0=*/ let updatePandC = function(that) { let data = that.props.ViewModel.getData('WholeVerifyDatas'); let param = window.parent.location.hash.split('?')[1]; @@ -29,4 +29,4 @@ let updatePandC = function(that) { export { updatePandC }; -/*5vBeFd2OCeUTgGc+457u4mrk59zQXsCzR4hDH9FUp0k=*/ \ No newline at end of file +/*5vBeFd2OCeUTgGc+457u4lSbn6jQQ/L26VVBZxqZfl0=*/ \ No newline at end of file diff --git a/src/arap/public/components/searchAreaAfterEvent.js b/src/arap/public/components/searchAreaAfterEvent.js index 5d7af2b5..a89d4366 100644 --- a/src/arap/public/components/searchAreaAfterEvent.js +++ b/src/arap/public/components/searchAreaAfterEvent.js @@ -1,4 +1,4 @@ -/*96dxC+bLwQzqLQpfN2//4PYLaVD9pIatyeA6JmjKb4c=*/ +/*96dxC+bLwQzqLQpfN2//4EtPqiAMmMVFRCYKXP8pj5I=*/ export default function afterEvent(key, props, moduleId) { //切换财务组织 情况 @@ -66,4 +66,4 @@ export default function afterEvent(key, props, moduleId) { } -/*96dxC+bLwQzqLQpfN2//4PYLaVD9pIatyeA6JmjKb4c=*/ \ No newline at end of file +/*96dxC+bLwQzqLQpfN2//4EtPqiAMmMVFRCYKXP8pj5I=*/ \ No newline at end of file diff --git a/src/arap/public/components/tradetype/index.js b/src/arap/public/components/tradetype/index.js index 631dc7f6..e38c6029 100644 --- a/src/arap/public/components/tradetype/index.js +++ b/src/arap/public/components/tradetype/index.js @@ -1,4 +1,4 @@ -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ import React, { Component } from 'react'; import {base, high,cardCache,getMultiLang,getBusinessInfo} from 'nc-lightapp-front'; import './index.less' @@ -89,4 +89,4 @@ export default function (props = {}) { return } -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ \ No newline at end of file +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ \ No newline at end of file diff --git a/src/arap/public/components/tradetypeToEmptyArea/ExtentionArea.js b/src/arap/public/components/tradetypeToEmptyArea/ExtentionArea.js index 04de0bc7..13c7593e 100644 --- a/src/arap/public/components/tradetypeToEmptyArea/ExtentionArea.js +++ b/src/arap/public/components/tradetypeToEmptyArea/ExtentionArea.js @@ -1,4 +1,4 @@ -/*t1j8G0D6CkAf09sEmPaBx+7KnbtYnKAZauY/fxIwwEM=*/ +/*t1j8G0D6CkAf09sEmPaBxzo6aQ66D4SXkQw1SugFGe4=*/ import React, { Component } from 'react'; import { base,cardCache } from 'nc-lightapp-front'; let { setDefData, getDefData } = cardCache; @@ -76,4 +76,4 @@ class ExtentionArea extends Component { } } export default ExtentionArea; -/*t1j8G0D6CkAf09sEmPaBx+7KnbtYnKAZauY/fxIwwEM=*/ \ No newline at end of file +/*t1j8G0D6CkAf09sEmPaBxzo6aQ66D4SXkQw1SugFGe4=*/ \ No newline at end of file diff --git a/src/arap/public/components/tradetypeToEmptyArea/addQueryHistory.js b/src/arap/public/components/tradetypeToEmptyArea/addQueryHistory.js index cf6b1506..a51f6b2b 100644 --- a/src/arap/public/components/tradetypeToEmptyArea/addQueryHistory.js +++ b/src/arap/public/components/tradetypeToEmptyArea/addQueryHistory.js @@ -1,4 +1,4 @@ -/*eTDaRXpl2QJJr/zgHvwNwPZgy9zZOKua9O0dPLDBPgg=*/ +/*eTDaRXpl2QJJr/zgHvwNwKntPW8S8+4e7vshq8fubgQ=*/ import { ajax } from 'nc-lightapp-front'; /** * 设置空状态缓存数据 @@ -19,4 +19,4 @@ export function setUserQueryHistory(data){ }, }); } -/*eTDaRXpl2QJJr/zgHvwNwPZgy9zZOKua9O0dPLDBPgg=*/ \ No newline at end of file +/*eTDaRXpl2QJJr/zgHvwNwKntPW8S8+4e7vshq8fubgQ=*/ \ No newline at end of file diff --git a/src/arap/public/components/tradetypeToEmptyArea/getQueryHistory.js b/src/arap/public/components/tradetypeToEmptyArea/getQueryHistory.js index 5bc3d3bc..5e4c56b8 100644 --- a/src/arap/public/components/tradetypeToEmptyArea/getQueryHistory.js +++ b/src/arap/public/components/tradetypeToEmptyArea/getQueryHistory.js @@ -1,4 +1,4 @@ -/*gMKPZQkOMPLX58bP7GKXM+fCxl63edTLF5nrJqiuGj4=*/ +/*gMKPZQkOMPLX58bP7GKXM6YfsNlgHLaJXjOTCTpqaQA=*/ import { ajax } from 'nc-lightapp-front'; /** @@ -23,4 +23,4 @@ export function getUserQueryHistory(appcode, pagecode) { }); return cacheData; } -/*gMKPZQkOMPLX58bP7GKXM+fCxl63edTLF5nrJqiuGj4=*/ \ No newline at end of file +/*gMKPZQkOMPLX58bP7GKXM6YfsNlgHLaJXjOTCTpqaQA=*/ \ No newline at end of file diff --git a/src/arap/public/components/tradetypeToEmptyArea/listEmptyArea.js b/src/arap/public/components/tradetypeToEmptyArea/listEmptyArea.js index 602fa31e..ac2902b5 100644 --- a/src/arap/public/components/tradetypeToEmptyArea/listEmptyArea.js +++ b/src/arap/public/components/tradetypeToEmptyArea/listEmptyArea.js @@ -1,4 +1,4 @@ -/*STAwZ9/hXdwQT7M4Ay4d3jjMuNTjsfpdr7nu1ryLtYM=*/ +/*STAwZ9/hXdwQT7M4Ay4d3vU0rYSJy1Fnu3a/BbfMEaw=*/ import React, { Component } from 'react'; import { ajax, base, cardCache } from 'nc-lightapp-front'; import { getUserQueryHistory } from '../../../public/components/tradetypeToEmptyArea/getQueryHistory'; @@ -191,4 +191,4 @@ function getInitdata(self, dataSource, billType, tradeType, state) { }); } -/*STAwZ9/hXdwQT7M4Ay4d3jjMuNTjsfpdr7nu1ryLtYM=*/ \ No newline at end of file +/*STAwZ9/hXdwQT7M4Ay4d3vU0rYSJy1Fnu3a/BbfMEaw=*/ \ No newline at end of file diff --git a/src/arap/public/components/transferTableSelectArea.js b/src/arap/public/components/transferTableSelectArea.js index fe0a8eef..930352b7 100644 --- a/src/arap/public/components/transferTableSelectArea.js +++ b/src/arap/public/components/transferTableSelectArea.js @@ -1,4 +1,4 @@ -/*lF5ufsCmKWn338wa/NhzEhT3iTkeW/xKMzXhmxqldazN41qc9R9/PrOsprmbCWIG*/ +/*lF5ufsCmKWn338wa/NhzEsXTkMAFOGjGZWENLLmLuboHUbhNYXzuSq7+XL2LXMLO*/ import React, { Component } from 'react'; import { ajax, base, toast,formatNumber,sum} from 'nc-lightapp-front'; import { forEach } from 'lodash'; @@ -337,4 +337,4 @@ function updatePullMoney(checkedSum){ pullMoney }) } -/*lF5ufsCmKWn338wa/NhzEhT3iTkeW/xKMzXhmxqldazN41qc9R9/PrOsprmbCWIG*/ \ No newline at end of file +/*lF5ufsCmKWn338wa/NhzEsXTkMAFOGjGZWENLLmLuboHUbhNYXzuSq7+XL2LXMLO*/ \ No newline at end of file diff --git a/src/arap/public/components/uapRefer.js b/src/arap/public/components/uapRefer.js index abd170b5..a02b3004 100644 --- a/src/arap/public/components/uapRefer.js +++ b/src/arap/public/components/uapRefer.js @@ -1,4 +1,4 @@ -/*epScZlij0UYE/emDlrZ9xu2Yvox8xA/A6OEd1SY4Msc=*/ +/*epScZlij0UYE/emDlrZ9xkCdkW8HYsNdV8jWQby/AIE=*/ //@Author: lijun // export function handleLoad(refcode, code,script) { // let Item = window[refcode].default; @@ -51,4 +51,4 @@ export default function createScript(src, code) { // script.onload = script.onload || handleLoad.bind(that, refKey); } } -/*epScZlij0UYE/emDlrZ9xu2Yvox8xA/A6OEd1SY4Msc=*/ \ No newline at end of file +/*epScZlij0UYE/emDlrZ9xkCdkW8HYsNdV8jWQby/AIE=*/ \ No newline at end of file diff --git a/src/arap/public/components/updateTableDataTs.js b/src/arap/public/components/updateTableDataTs.js index ac2ee2f3..a86cdaf7 100644 --- a/src/arap/public/components/updateTableDataTs.js +++ b/src/arap/public/components/updateTableDataTs.js @@ -1,4 +1,4 @@ -/*qw6QefI/9grLT0CViR6DSJgQxTwbFcDXkg5AAM5syoE=*/ +/*qw6QefI/9grLT0CViR6DSPkP+fieGN9LVHpZpHYPpak=*/ import { viewModel } from 'nc-lightapp-front'; export default function updateTableDataTs(param){ let {props,data,tableId}=param; @@ -147,4 +147,4 @@ export function updateCacheTss(param){ viewModel.setData(dataSource, dataSource_Data); } } -/*qw6QefI/9grLT0CViR6DSJgQxTwbFcDXkg5AAM5syoE=*/ \ No newline at end of file +/*qw6QefI/9grLT0CViR6DSPkP+fieGN9LVHpZpHYPpak=*/ \ No newline at end of file diff --git a/src/arap/receivablebill/recbill/transfer/btnClick/index.js b/src/arap/receivablebill/recbill/transfer/btnClick/index.js index fc97b527..e150d81f 100644 --- a/src/arap/receivablebill/recbill/transfer/btnClick/index.js +++ b/src/arap/receivablebill/recbill/transfer/btnClick/index.js @@ -1,6 +1,6 @@ -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ import searchBtnClick from './searchBtnClick'; export {searchBtnClick} -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ \ No newline at end of file +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ \ No newline at end of file diff --git a/src/arap/receivablebill/recbill/transfer/btnClick/searchBtnClick.js b/src/arap/receivablebill/recbill/transfer/btnClick/searchBtnClick.js index cac47ceb..50239098 100644 --- a/src/arap/receivablebill/recbill/transfer/btnClick/searchBtnClick.js +++ b/src/arap/receivablebill/recbill/transfer/btnClick/searchBtnClick.js @@ -1,4 +1,4 @@ -/*YuO8szH0cVixePu/Bt+mG+MUC2/4stDJhhFfyxadCaM=*/ +/*YuO8szH0cVixePu/Bt+mG6B82aSbGhMosB18vg69kDk=*/ import { ajax, base, spaCache, toast } from 'nc-lightapp-front'; let { setDefData, getDefData } = spaCache; import { pagecode, searchId, headId, bodyId, billType, dataSource, body_pkname } from '../constants'; @@ -55,4 +55,4 @@ export default function () { } } -/*YuO8szH0cVixePu/Bt+mG+MUC2/4stDJhhFfyxadCaM=*/ \ No newline at end of file +/*YuO8szH0cVixePu/Bt+mG6B82aSbGhMosB18vg69kDk=*/ \ No newline at end of file diff --git a/src/arap/receivablebill/recbill/transfer/constants.js b/src/arap/receivablebill/recbill/transfer/constants.js index 303baba5..1069d909 100644 --- a/src/arap/receivablebill/recbill/transfer/constants.js +++ b/src/arap/receivablebill/recbill/transfer/constants.js @@ -1,4 +1,4 @@ -/*kHr1VQMdEU42oXEu346enLE2PHnzHrFdr/OxPw9YGIc=*/ +/*kHr1VQMdEU42oXEu346enGx+6rXJ4OFHE2VimKRgjU4=*/ /** * 查询区域 @@ -35,4 +35,4 @@ export const billType = 'F0'; */ export const dataSource = 'fi.arap.recbill.transfer'; export const body_pkname='pk_recitem'; -/*kHr1VQMdEU42oXEu346enLE2PHnzHrFdr/OxPw9YGIc=*/ \ No newline at end of file +/*kHr1VQMdEU42oXEu346enGx+6rXJ4OFHE2VimKRgjU4=*/ \ No newline at end of file diff --git a/src/arap/receivablebill/recbill/transfer/index.js b/src/arap/receivablebill/recbill/transfer/index.js index 132b6f9e..8d518389 100644 --- a/src/arap/receivablebill/recbill/transfer/index.js +++ b/src/arap/receivablebill/recbill/transfer/index.js @@ -1,4 +1,4 @@ -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ import React, { Component } from 'react'; import { base, createPage, ajax, spaCache,getMultiLang } from 'nc-lightapp-front'; import { initTemplate, initTemplateFull } from './init'; @@ -169,4 +169,4 @@ TransferTable = createPage({ export default TransferTable; -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ \ No newline at end of file +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ \ No newline at end of file diff --git a/src/arap/receivablebill/recbill/transfer/init/index.js b/src/arap/receivablebill/recbill/transfer/init/index.js index 5a3b5589..7c92aa53 100644 --- a/src/arap/receivablebill/recbill/transfer/init/index.js +++ b/src/arap/receivablebill/recbill/transfer/init/index.js @@ -1,7 +1,7 @@ -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ import initTemplate from './initTemplate'; import initTemplateFull from './initTemplateFull'; export {initTemplate, initTemplateFull} -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ \ No newline at end of file +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ \ No newline at end of file diff --git a/src/arap/receivablebill/recbill/transfer/init/initTemplate.js b/src/arap/receivablebill/recbill/transfer/init/initTemplate.js index 7fb33d89..4f8f8456 100644 --- a/src/arap/receivablebill/recbill/transfer/init/initTemplate.js +++ b/src/arap/receivablebill/recbill/transfer/init/initTemplate.js @@ -1,4 +1,4 @@ -/*pmFWCFu5nhKkBzYmrkBakZlQTl+FyeIEqQSQLlI/4ro=*/ +/*pmFWCFu5nhKkBzYmrkBakYqb4t+QDKrWy/miWT3MDKY=*/ import { toast } from 'nc-lightapp-front'; import { modifierSearchMetas } from '../../../../public/components/pubUtils/arapListSearchRefFilter'; import { pagecode, appcode, searchId, billType } from '../constants'; @@ -51,4 +51,4 @@ export default function (props) { } ); } -/*pmFWCFu5nhKkBzYmrkBakZlQTl+FyeIEqQSQLlI/4ro=*/ \ No newline at end of file +/*pmFWCFu5nhKkBzYmrkBakYqb4t+QDKrWy/miWT3MDKY=*/ \ No newline at end of file diff --git a/src/arap/receivablebill/recbill/transfer/init/initTemplateFull.js b/src/arap/receivablebill/recbill/transfer/init/initTemplateFull.js index 236cdc75..dbf3d9b4 100644 --- a/src/arap/receivablebill/recbill/transfer/init/initTemplateFull.js +++ b/src/arap/receivablebill/recbill/transfer/init/initTemplateFull.js @@ -1,4 +1,4 @@ -/*HDV8KmD/YpIkan/Ri5ozX0P4CRnuFeCuD1FERcK/MLQ=*/ +/*HDV8KmD/YpIkan/Ri5ozX0m+BTC+ANYPkpoTPN33+U0=*/ import { mainPageCode, appcode, searchId } from '../constants'; export default function (props) { @@ -21,4 +21,4 @@ export default function (props) { } ); } -/*HDV8KmD/YpIkan/Ri5ozX0P4CRnuFeCuD1FERcK/MLQ=*/ \ No newline at end of file +/*HDV8KmD/YpIkan/Ri5ozX0m+BTC+ANYPkpoTPN33+U0=*/ \ No newline at end of file diff --git a/src/arap/verificationsheet/preverify/events/buttonClick.js b/src/arap/verificationsheet/preverify/events/buttonClick.js index 28a648a3..0a07f16a 100644 --- a/src/arap/verificationsheet/preverify/events/buttonClick.js +++ b/src/arap/verificationsheet/preverify/events/buttonClick.js @@ -1,4 +1,4 @@ -/*q2LCmxM8POvl78IL0LiydvfkVj33xdwltrVSXdrt4vE=*/ +/*q2LCmxM8POvl78IL0LiydiXQT6yFM8mpfFEU8+B79Fw=*/ import { headButton } from '../../../public/components/pubUtils/buttonName'; export default function buttonClick(props, id) { @@ -18,4 +18,4 @@ export default function buttonClick(props, id) { } } -/*q2LCmxM8POvl78IL0LiydvfkVj33xdwltrVSXdrt4vE=*/ \ No newline at end of file +/*q2LCmxM8POvl78IL0LiydiXQT6yFM8mpfFEU8+B79Fw=*/ \ No newline at end of file diff --git a/src/arap/verificationsheet/preverify/events/index.js b/src/arap/verificationsheet/preverify/events/index.js index 314f7d79..7595f132 100644 --- a/src/arap/verificationsheet/preverify/events/index.js +++ b/src/arap/verificationsheet/preverify/events/index.js @@ -1,5 +1,5 @@ -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ import buttonClick from './buttonClick'; export { buttonClick }; -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ \ No newline at end of file +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ \ No newline at end of file diff --git a/src/arap/verificationsheet/preverify/list/index.js b/src/arap/verificationsheet/preverify/list/index.js index 54a2c65f..141b728c 100644 --- a/src/arap/verificationsheet/preverify/list/index.js +++ b/src/arap/verificationsheet/preverify/list/index.js @@ -1,4 +1,4 @@ -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ import React, { Component } from 'react'; import { ajax, base, createPage, toast, sum, getMultiLang, formatNumber,pageTo,getParentWindow, getTopWindow } from 'nc-lightapp-front'; import TrelationTable from '../trelationtable'; @@ -1569,4 +1569,4 @@ Relation = createPage({ export default Relation; -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ \ No newline at end of file +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ \ No newline at end of file diff --git a/src/arap/verificationsheet/preverify/trelationtable/events/index.js b/src/arap/verificationsheet/preverify/trelationtable/events/index.js index ec16d904..0f3d5e19 100644 --- a/src/arap/verificationsheet/preverify/trelationtable/events/index.js +++ b/src/arap/verificationsheet/preverify/trelationtable/events/index.js @@ -1,5 +1,5 @@ -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ import initTemplate from './initTemplate'; export { initTemplate }; -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ \ No newline at end of file +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ \ No newline at end of file diff --git a/src/arap/verificationsheet/preverify/trelationtable/events/initTemplate.js b/src/arap/verificationsheet/preverify/trelationtable/events/initTemplate.js index 0ff43fa0..6634101a 100644 --- a/src/arap/verificationsheet/preverify/trelationtable/events/initTemplate.js +++ b/src/arap/verificationsheet/preverify/trelationtable/events/initTemplate.js @@ -1,4 +1,4 @@ -/*pmFWCFu5nhKkBzYmrkBakZlQTl+FyeIEqQSQLlI/4ro=*/ +/*pmFWCFu5nhKkBzYmrkBakYqb4t+QDKrWy/miWT3MDKY=*/ import { ajax } from 'nc-lightapp-front'; import tableButtonClick from './tableButtonClick.js'; let tableId = 'table'; @@ -115,4 +115,4 @@ function billLink(text, props) { }); } -/*pmFWCFu5nhKkBzYmrkBakZlQTl+FyeIEqQSQLlI/4ro=*/ \ No newline at end of file +/*pmFWCFu5nhKkBzYmrkBakYqb4t+QDKrWy/miWT3MDKY=*/ \ No newline at end of file diff --git a/src/arap/verificationsheet/preverify/trelationtable/events/tableButtonClick.js b/src/arap/verificationsheet/preverify/trelationtable/events/tableButtonClick.js index 7206b28b..d4e81d94 100644 --- a/src/arap/verificationsheet/preverify/trelationtable/events/tableButtonClick.js +++ b/src/arap/verificationsheet/preverify/trelationtable/events/tableButtonClick.js @@ -1,4 +1,4 @@ -/*0GI1xcoeligdpMeXoHBphmHxDfwJCS65I6l27EItadE=*/ +/*0GI1xcoeligdpMeXoHBphrnqLawXs2pmyhj4kEvBMik=*/ import { ajax, toast } from 'nc-lightapp-front'; let tableId = 'table'; let tableButtonClick = (props, key, text, record, index, data, that) => { @@ -28,4 +28,4 @@ let tableButtonClick = (props, key, text, record, index, data, that) => { export default tableButtonClick; -/*0GI1xcoeligdpMeXoHBphmHxDfwJCS65I6l27EItadE=*/ \ No newline at end of file +/*0GI1xcoeligdpMeXoHBphrnqLawXs2pmyhj4kEvBMik=*/ \ No newline at end of file diff --git a/src/arap/verificationsheet/preverify/trelationtable/index.js b/src/arap/verificationsheet/preverify/trelationtable/index.js index ac271208..928bb21e 100644 --- a/src/arap/verificationsheet/preverify/trelationtable/index.js +++ b/src/arap/verificationsheet/preverify/trelationtable/index.js @@ -1,4 +1,4 @@ -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ import React, { Component } from 'react'; import { createPage, ajax, toast, getMultiLang } from 'nc-lightapp-front'; import { initTemplate } from './events'; @@ -138,4 +138,4 @@ TrelationTable = createPage({ export default TrelationTable; -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ \ No newline at end of file +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ \ No newline at end of file diff --git a/src/arap/verificationsheet/public/comcondition/index.js b/src/arap/verificationsheet/public/comcondition/index.js index 4ebbdb8c..fb375043 100644 --- a/src/arap/verificationsheet/public/comcondition/index.js +++ b/src/arap/verificationsheet/public/comcondition/index.js @@ -1,4 +1,4 @@ -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ import React, { Component } from 'react'; import { base, getMultiLang } from 'nc-lightapp-front'; import Referloader from '../../../public/ReferLoader'; @@ -335,4 +335,4 @@ export default class Comconditions extends Component { } } -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ \ No newline at end of file +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ \ No newline at end of file diff --git a/src/arap/verificationsheet/public/searchContions/events/advSearchClearEve.js b/src/arap/verificationsheet/public/searchContions/events/advSearchClearEve.js index 90b483f9..4e3ec4fa 100644 --- a/src/arap/verificationsheet/public/searchContions/events/advSearchClearEve.js +++ b/src/arap/verificationsheet/public/searchContions/events/advSearchClearEve.js @@ -1,4 +1,4 @@ -/*2Eev2bgXHWRyWQlBt4buDEWltNc80GuUdGTequxqw/g=*/ +/*2Eev2bgXHWRyWQlBt4buDGbJoXAeQz041f+IgODkS68=*/ export default function advSearchClearEve(that) { let { schemeData } = that.state; schemeData.objTypeValue = {display: null, value: null}; @@ -9,4 +9,4 @@ export default function advSearchClearEve(that) { }) }; -/*2Eev2bgXHWRyWQlBt4buDEWltNc80GuUdGTequxqw/g=*/ \ No newline at end of file +/*2Eev2bgXHWRyWQlBt4buDGbJoXAeQz041f+IgODkS68=*/ \ No newline at end of file diff --git a/src/arap/verificationsheet/public/searchContions/events/afterEvent.js b/src/arap/verificationsheet/public/searchContions/events/afterEvent.js index 82bc56b9..123612db 100644 --- a/src/arap/verificationsheet/public/searchContions/events/afterEvent.js +++ b/src/arap/verificationsheet/public/searchContions/events/afterEvent.js @@ -1,4 +1,4 @@ -/*DncIqBreQz6WZRX+v7OzgVpF0nzMjwNEhfHCIOdy4Pk=*/ +/*DncIqBreQz6WZRX+v7OzgRW7fkbxk12M9r3MB9P+hwI=*/ export default function afterEvent(that,key, value, moduleId,props, changedrows, i, s, g) { @@ -46,4 +46,4 @@ export default function afterEvent(that,key, value, moduleId,props, changedrows, } } -/*DncIqBreQz6WZRX+v7OzgVpF0nzMjwNEhfHCIOdy4Pk=*/ \ No newline at end of file +/*DncIqBreQz6WZRX+v7OzgRW7fkbxk12M9r3MB9P+hwI=*/ \ No newline at end of file diff --git a/src/arap/verificationsheet/public/searchContions/events/buttonClick.js b/src/arap/verificationsheet/public/searchContions/events/buttonClick.js index 2291de5f..bfcb77c8 100644 --- a/src/arap/verificationsheet/public/searchContions/events/buttonClick.js +++ b/src/arap/verificationsheet/public/searchContions/events/buttonClick.js @@ -1,4 +1,4 @@ -/*q2LCmxM8POvl78IL0LiydvfkVj33xdwltrVSXdrt4vE=*/ +/*q2LCmxM8POvl78IL0LiydiXQT6yFM8mpfFEU8+B79Fw=*/ import { headButton } from '../../../../public/components/pubUtils/buttonName'; export default function buttonClick(that, props, id) { @@ -14,4 +14,4 @@ export default function buttonClick(that, props, id) { } } -/*q2LCmxM8POvl78IL0LiydvfkVj33xdwltrVSXdrt4vE=*/ \ No newline at end of file +/*q2LCmxM8POvl78IL0LiydiXQT6yFM8mpfFEU8+B79Fw=*/ \ No newline at end of file diff --git a/src/arap/verificationsheet/public/searchContions/events/index.js b/src/arap/verificationsheet/public/searchContions/events/index.js index f4c3c14f..59169a43 100644 --- a/src/arap/verificationsheet/public/searchContions/events/index.js +++ b/src/arap/verificationsheet/public/searchContions/events/index.js @@ -1,8 +1,8 @@ -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ import searchBtnClick from './searchBtnClick'; import buttonClick from './buttonClick'; import advSearchClearEve from './advSearchClearEve'; import afterEvent from './afterEvent'; export { searchBtnClick, buttonClick, advSearchClearEve,afterEvent }; -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ \ No newline at end of file +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ \ No newline at end of file diff --git a/src/arap/verificationsheet/public/searchContions/events/searchBtnClick.js b/src/arap/verificationsheet/public/searchContions/events/searchBtnClick.js index 9634aa5e..dcea1ed2 100644 --- a/src/arap/verificationsheet/public/searchContions/events/searchBtnClick.js +++ b/src/arap/verificationsheet/public/searchContions/events/searchBtnClick.js @@ -1,4 +1,4 @@ -/*YuO8szH0cVixePu/Bt+mG+MUC2/4stDJhhFfyxadCaM=*/ +/*YuO8szH0cVixePu/Bt+mG6B82aSbGhMosB18vg69kDk=*/ import { ajax, toast } from 'nc-lightapp-front'; let searchId = 'query'; //点击查询,获取查询区数据 @@ -166,4 +166,4 @@ function setQueryAreaData(that){ } } -/*YuO8szH0cVixePu/Bt+mG+MUC2/4stDJhhFfyxadCaM=*/ \ No newline at end of file +/*YuO8szH0cVixePu/Bt+mG6B82aSbGhMosB18vg69kDk=*/ \ No newline at end of file diff --git a/src/arap/verificationsheet/public/searchContions/index.js b/src/arap/verificationsheet/public/searchContions/index.js index ef49bd60..5c73d39a 100644 --- a/src/arap/verificationsheet/public/searchContions/index.js +++ b/src/arap/verificationsheet/public/searchContions/index.js @@ -1,4 +1,4 @@ -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ import { base, getMultiLang } from 'nc-lightapp-front'; import Referloader from '../../../public/ReferLoader'; import { searchBtnClick, buttonClick, advSearchClearEve,afterEvent } from './events'; @@ -34,4 +34,4 @@ export default function SearchContions(that, NCOptions, createButtonApp, NCCreat ); } -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ \ No newline at end of file +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ \ No newline at end of file diff --git a/src/arap/verificationsheet/verifynow/events/buttonClick.js b/src/arap/verificationsheet/verifynow/events/buttonClick.js index f75673c9..4e9f0a0e 100644 --- a/src/arap/verificationsheet/verifynow/events/buttonClick.js +++ b/src/arap/verificationsheet/verifynow/events/buttonClick.js @@ -1,4 +1,4 @@ -/*q2LCmxM8POvl78IL0LiydvfkVj33xdwltrVSXdrt4vE=*/ +/*q2LCmxM8POvl78IL0LiydiXQT6yFM8mpfFEU8+B79Fw=*/ import { ajax } from 'nc-lightapp-front'; import { headButton, modelButton } from '../../../public/components/pubUtils/buttonName'; @@ -56,4 +56,4 @@ export default function buttonClick(props, id) { } } -/*q2LCmxM8POvl78IL0LiydvfkVj33xdwltrVSXdrt4vE=*/ \ No newline at end of file +/*q2LCmxM8POvl78IL0LiydiXQT6yFM8mpfFEU8+B79Fw=*/ \ No newline at end of file diff --git a/src/arap/verificationsheet/verifynow/events/index.js b/src/arap/verificationsheet/verifynow/events/index.js index 314f7d79..7595f132 100644 --- a/src/arap/verificationsheet/verifynow/events/index.js +++ b/src/arap/verificationsheet/verifynow/events/index.js @@ -1,5 +1,5 @@ -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ import buttonClick from './buttonClick'; export { buttonClick }; -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ \ No newline at end of file +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ \ No newline at end of file diff --git a/src/arap/verificationsheet/verifynow/list/index.js b/src/arap/verificationsheet/verifynow/list/index.js index cf163015..ce803eeb 100644 --- a/src/arap/verificationsheet/verifynow/list/index.js +++ b/src/arap/verificationsheet/verifynow/list/index.js @@ -1,4 +1,4 @@ -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ import React, { Component } from 'react'; import { ajax, base, createPage, toast, sum, getMultiLang, formatNumber,getParentWindow, getTopWindow } from 'nc-lightapp-front'; import { buttonClick } from '../events'; @@ -1566,4 +1566,4 @@ Cancellation = createPage({ export default Cancellation; -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ \ No newline at end of file +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ \ No newline at end of file diff --git a/src/arap/verificationsheet/verifynow/nowvcard/events/afterEvent.js b/src/arap/verificationsheet/verifynow/nowvcard/events/afterEvent.js index ec8dbafd..2428e202 100644 --- a/src/arap/verificationsheet/verifynow/nowvcard/events/afterEvent.js +++ b/src/arap/verificationsheet/verifynow/nowvcard/events/afterEvent.js @@ -1,4 +1,4 @@ -/*DncIqBreQz6WZRX+v7OzgVpF0nzMjwNEhfHCIOdy4Pk=*/ +/*DncIqBreQz6WZRX+v7OzgRW7fkbxk12M9r3MB9P+hwI=*/ import { ajax, promptBox, toast } from 'nc-lightapp-front'; import { currentTypeAfterFormEvents } from '../../../../public/components/pubUtils/currentTypeAfterEvent'; import { getColvalues, getRowIds } from '../../../../public/components/pubUtils/billPubUtil'; @@ -327,4 +327,4 @@ export function headFieldAfterRequest(requestData, key, changedrows) { }); } -/*DncIqBreQz6WZRX+v7OzgVpF0nzMjwNEhfHCIOdy4Pk=*/ \ No newline at end of file +/*DncIqBreQz6WZRX+v7OzgRW7fkbxk12M9r3MB9P+hwI=*/ \ No newline at end of file diff --git a/src/arap/verificationsheet/verifynow/nowvcard/events/index.js b/src/arap/verificationsheet/verifynow/nowvcard/events/index.js index 415b1d69..c20d268a 100644 --- a/src/arap/verificationsheet/verifynow/nowvcard/events/index.js +++ b/src/arap/verificationsheet/verifynow/nowvcard/events/index.js @@ -1,7 +1,7 @@ -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ import initTemplate from './initTemplate'; import afterEvent from './afterEvent'; export { initTemplate ,afterEvent}; -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ \ No newline at end of file +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ \ No newline at end of file diff --git a/src/arap/verificationsheet/verifynow/nowvcard/events/initTemplate.js b/src/arap/verificationsheet/verifynow/nowvcard/events/initTemplate.js index 5b511fa0..f5f1e57b 100644 --- a/src/arap/verificationsheet/verifynow/nowvcard/events/initTemplate.js +++ b/src/arap/verificationsheet/verifynow/nowvcard/events/initTemplate.js @@ -1,4 +1,4 @@ -/*pmFWCFu5nhKkBzYmrkBakZlQTl+FyeIEqQSQLlI/4ro=*/ +/*pmFWCFu5nhKkBzYmrkBakYqb4t+QDKrWy/miWT3MDKY=*/ export default function(props) { const that = this; let billType = this.props.getUrlParam('billType'); @@ -38,4 +38,4 @@ function modifierMeta(props, meta) { return meta; } -/*pmFWCFu5nhKkBzYmrkBakZlQTl+FyeIEqQSQLlI/4ro=*/ \ No newline at end of file +/*pmFWCFu5nhKkBzYmrkBakYqb4t+QDKrWy/miWT3MDKY=*/ \ No newline at end of file diff --git a/src/arap/verificationsheet/verifynow/nowvcard/index.js b/src/arap/verificationsheet/verifynow/nowvcard/index.js index a680528a..7b9221a6 100644 --- a/src/arap/verificationsheet/verifynow/nowvcard/index.js +++ b/src/arap/verificationsheet/verifynow/nowvcard/index.js @@ -1,4 +1,4 @@ -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ //主子表卡片 import React, { Component } from 'react'; import { createPage, ajax, base, getMultiLang,getParentWindow, getTopWindow } from 'nc-lightapp-front'; @@ -393,4 +393,4 @@ Card = createPage({ export default Card; -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ \ No newline at end of file +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ \ No newline at end of file diff --git a/src/arap/verificationsheet/verifynow/supplementModel/index.js b/src/arap/verificationsheet/verifynow/supplementModel/index.js index 503719a0..35b97389 100644 --- a/src/arap/verificationsheet/verifynow/supplementModel/index.js +++ b/src/arap/verificationsheet/verifynow/supplementModel/index.js @@ -1,4 +1,4 @@ -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ import React, { Component } from 'react'; import { createPage, ajax, base, toast, getMultiLang,getParentWindow, getTopWindow } from 'nc-lightapp-front'; import Referloader from '../../../public/ReferLoader'; @@ -660,4 +660,4 @@ SupplementModel = createPage({})(SupplementModel); export default SupplementModel; -/*Rr06URj+uwmytLHxccewIFYi8Ss3NmKmWKs4Kbig6fU=*/ \ No newline at end of file +/*zSUoWKMuZerEXLsc4aAHfpzRg5lzN2RmctWmdBaiPTc=*/ \ No newline at end of file