提交 41cf149d 编写于 作者: ibizdev's avatar ibizdev

tony001 发布系统代码 [后台服务,演示应用]

上级 00bafc55
...@@ -492,9 +492,8 @@ function getLocaleResourceBase(){ ...@@ -492,9 +492,8 @@ function getLocaleResourceBase(){
memo: commonLogic.appcommonhandle("备注",null), memo: commonLogic.appcommonhandle("备注",null),
formitem: commonLogic.appcommonhandle("文件上传",null), formitem: commonLogic.appcommonhandle("文件上传",null),
formitem1: commonLogic.appcommonhandle("安永多选",null), formitem1: commonLogic.appcommonhandle("安永多选",null),
formitem2: commonLogic.appcommonhandle("多选值项",null), pickervalue: commonLogic.appcommonhandle("多选值项",null),
ibizcustomerid: commonLogic.appcommonhandle("客户标识",null), ibizcustomerid: commonLogic.appcommonhandle("客户标识",null),
formitem2: commonLogic.appcommonhandle("",null),
ibizorderid: commonLogic.appcommonhandle("订单标识",null), ibizorderid: commonLogic.appcommonhandle("订单标识",null),
}, },
uiactions: { uiactions: {
......
...@@ -492,9 +492,8 @@ function getLocaleResourceBase(){ ...@@ -492,9 +492,8 @@ function getLocaleResourceBase(){
memo: commonLogic.appcommonhandle("备注",null), memo: commonLogic.appcommonhandle("备注",null),
formitem: commonLogic.appcommonhandle("文件上传",null), formitem: commonLogic.appcommonhandle("文件上传",null),
formitem1: commonLogic.appcommonhandle("安永多选",null), formitem1: commonLogic.appcommonhandle("安永多选",null),
formitem2: commonLogic.appcommonhandle("多选值项",null), pickervalue: commonLogic.appcommonhandle("多选值项",null),
ibizcustomerid: commonLogic.appcommonhandle("客户标识",null), ibizcustomerid: commonLogic.appcommonhandle("客户标识",null),
formitem2: commonLogic.appcommonhandle("",null),
ibizorderid: commonLogic.appcommonhandle("订单标识",null), ibizorderid: commonLogic.appcommonhandle("订单标识",null),
}, },
uiactions: { uiactions: {
......
...@@ -492,9 +492,8 @@ function getLocaleResourceBase(){ ...@@ -492,9 +492,8 @@ function getLocaleResourceBase(){
memo: commonLogic.appcommonhandle("备注",null), memo: commonLogic.appcommonhandle("备注",null),
formitem: commonLogic.appcommonhandle("文件上传",null), formitem: commonLogic.appcommonhandle("文件上传",null),
formitem1: commonLogic.appcommonhandle("安永多选",null), formitem1: commonLogic.appcommonhandle("安永多选",null),
formitem2: commonLogic.appcommonhandle("多选值项",null), pickervalue: commonLogic.appcommonhandle("多选值项",null),
ibizcustomerid: commonLogic.appcommonhandle("客户标识",null), ibizcustomerid: commonLogic.appcommonhandle("客户标识",null),
formitem2: commonLogic.appcommonhandle("",null),
ibizorderid: commonLogic.appcommonhandle("订单标识",null), ibizorderid: commonLogic.appcommonhandle("订单标识",null),
}, },
uiactions: { uiactions: {
......
...@@ -72,6 +72,11 @@ export default class LnternalFuncListModel { ...@@ -72,6 +72,11 @@ export default class LnternalFuncListModel {
prop: 'n_ibizbookname_like', prop: 'n_ibizbookname_like',
dataType: 'QUERYPARAM' dataType: 'QUERYPARAM'
}, },
{
name: 'n_price_gtandeq',
prop: 'n_price_gtandeq',
dataType: 'QUERYPARAM'
},
{ {
name:'size', name:'size',
......
<template> <template>
<i-form :model="this.data" class='app-search-form' ref='searchform' style=""> <i-form :model="this.data" class='app-search-form' ref='quicksearchform' style="">
<input style="display:none;"/> <input style="display:none;"/>
<row> <row>
<i-col span="20" class="form-content"> <i-col span="20" class="form-content">
...@@ -516,7 +516,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface ...@@ -516,7 +516,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface
* @memberof QUICKSEARCHFORMBase * @memberof QUICKSEARCHFORMBase
*/ */
public formValidateStatus(): boolean { public formValidateStatus(): boolean {
const form: any = this.$refs.searchform; const form: any = this.$refs.quicksearchform;
let validatestate: boolean = true; let validatestate: boolean = true;
form.validate((valid: boolean) => { form.validate((valid: boolean) => {
validatestate = valid ? true : false; validatestate = valid ? true : false;
...@@ -670,7 +670,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface ...@@ -670,7 +670,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface
*/ */
public load(opt: any = {}): void { public load(opt: any = {}): void {
if(!this.loadAction){ if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsrListView_plugin' + (this.$t('app.searchForm.notConfig.loadAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKCalendarView' + (this.$t('app.searchForm.notConfig.loadAction') as string) });
return; return;
} }
const arg: any = { ...opt }; const arg: any = { ...opt };
...@@ -706,7 +706,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface ...@@ -706,7 +706,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface
*/ */
public async loadDraft(opt: any = {},mode?:string): Promise<any> { public async loadDraft(opt: any = {},mode?:string): Promise<any> {
if(!this.loaddraftAction){ if(!this.loaddraftAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsrListView_plugin' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKCalendarView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
return; return;
} }
const arg: any = { ...opt } ; const arg: any = { ...opt } ;
......
...@@ -933,7 +933,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -933,7 +933,7 @@ export default class MainBase extends Vue implements ControlInterface {
if (!this.fetchAction) { if (!this.fetchAction) {
this.$Notice.error({ this.$Notice.error({
title: this.$t("app.commonWords.wrong") as string, title: this.$t("app.commonWords.wrong") as string,
desc: "IBIZOrderDetailGridView9" + (this.$t("app.gridpage.notConfig.fetchAction") as string), desc: "IBIZOrderDetailSGridView9" + (this.$t("app.gridpage.notConfig.fetchAction") as string),
}); });
return; return;
} }
...@@ -1073,7 +1073,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -1073,7 +1073,7 @@ export default class MainBase extends Vue implements ControlInterface {
if (!this.removeAction) { if (!this.removeAction) {
this.$Notice.error({ this.$Notice.error({
title: (this.$t('app.commonWords.wrong') as string), title: (this.$t('app.commonWords.wrong') as string),
desc: 'IBIZOrderDetailGridView9' + (this.$t('app.gridpage.notConfig.removeAction') as string) desc: 'IBIZOrderDetailSGridView9' + (this.$t('app.gridpage.notConfig.removeAction') as string)
}); });
return; return;
} }
...@@ -1187,7 +1187,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -1187,7 +1187,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/ */
public addBatch(arg: any = {}): void { public addBatch(arg: any = {}): void {
if(!this.fetchAction){ if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailGridView9'+(this.$t('app.gridpage.notConfig.fetchAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView9'+(this.$t('app.gridpage.notConfig.fetchAction') as string) });
return; return;
} }
if(!arg){ if(!arg){
...@@ -2082,7 +2082,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -2082,7 +2082,7 @@ export default class MainBase extends Vue implements ControlInterface {
try { try {
if (Object.is(item.rowDataState, 'create')) { if (Object.is(item.rowDataState, 'create')) {
if (!this.createAction) { if (!this.createAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailGridView9'+(this.$t('app.gridpage.notConfig.createAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView9'+(this.$t('app.gridpage.notConfig.createAction') as string) });
} else { } else {
Object.assign(item, { viewparams: this.viewparams }); Object.assign(item, { viewparams: this.viewparams });
const tempContext = Util.deepCopy(this.context); const tempContext = Util.deepCopy(this.context);
...@@ -2091,7 +2091,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -2091,7 +2091,7 @@ export default class MainBase extends Vue implements ControlInterface {
} }
}else if (Object.is(item.rowDataState, 'update')){ }else if (Object.is(item.rowDataState, 'update')){
if (!this.updateAction) { if (!this.updateAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailGridView9'+(this.$t('app.gridpage.notConfig.updateAction') as string) }); this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView9'+(this.$t('app.gridpage.notConfig.updateAction') as string) });
} else { } else {
Object.assign(item, { viewparams: this.viewparams }); Object.assign(item, { viewparams: this.viewparams });
const tempContext = Util.deepCopy(this.context); const tempContext = Util.deepCopy(this.context);
...@@ -2167,7 +2167,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -2167,7 +2167,7 @@ export default class MainBase extends Vue implements ControlInterface {
if(!this.loaddraftAction){ if(!this.loaddraftAction){
this.$Notice.error({ this.$Notice.error({
title: (this.$t('app.commonWords.wrong') as string), title: (this.$t('app.commonWords.wrong') as string),
desc: 'IBIZOrderDetailGridView9' + (this.$t('app.gridpage.notConfig.loaddraftAction') as string) desc: 'IBIZOrderDetailSGridView9' + (this.$t('app.gridpage.notConfig.loaddraftAction') as string)
}); });
return; return;
} }
......
...@@ -208,7 +208,7 @@ ...@@ -208,7 +208,7 @@
:localContext ='{ }' :localContext ='{ }'
:localParam ='{ }' :localParam ='{ }'
:service="service" :service="service"
valueitem=' formitem2' valueitem='pickervalue'
:acParams="{ }" :acParams="{ }"
:pickupView="{ viewname: 'ibizorder-pickup-view', title: $t('entities.ibizorder.views.pickupview.title'), deResParameters: [], parameters: [{ pathName: 'ibizorders', parameterName: 'ibizorder' }, { pathName: 'pickupview', parameterName: 'pickupview' } ], placement:'' }" :pickupView="{ viewname: 'ibizorder-pickup-view', title: $t('entities.ibizorder.views.pickupview.title'), deResParameters: [], parameters: [{ pathName: 'ibizorders', parameterName: 'ibizorder' }, { pathName: 'pickupview', parameterName: 'pickupview' } ], placement:'' }"
@formitemvaluechange="onFormItemValueChange" @formitemvaluechange="onFormItemValueChange"
...@@ -218,10 +218,10 @@ ...@@ -218,10 +218,10 @@
</app-form-item> </app-form-item>
</i-col> </i-col>
<i-col v-show="detailsModel.formitem2.visible" :style="{}" :lg="{ span: 24, offset: 0 }"> <i-col v-show="detailsModel.pickervalue.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<app-form-item name='formitem2' :itemRules="this.rules().formitem2" class='' :caption="$t('entities.ibizorder.main_form.details.formitem2')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.formitem2.error" :isEmptyCaption="false" labelPos="LEFT"> <app-form-item name='pickervalue' :itemRules="this.rules().pickervalue" class='' :caption="$t('entities.ibizorder.main_form.details.pickervalue')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.pickervalue.error" :isEmptyCaption="false" labelPos="LEFT">
<app-span name='formitem2' :value="data.formitem2" :data="data" :context="context" :viewparams="viewparams" :localContext ='{ }' :localParam ='{ }' style=""> <app-span name='pickervalue' :value="data.pickervalue" :data="data" :context="context" :viewparams="viewparams" :localContext ='{ }' :localParam ='{ }' style="">
</app-span> </app-span>
</app-form-item> </app-form-item>
...@@ -733,9 +733,8 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -733,9 +733,8 @@ export default class MainBase extends Vue implements ControlInterface {
memo: null, memo: null,
formitem: null, formitem: null,
formitem1: null, formitem1: null,
formitem2: null, pickervalue: null,
ibizcustomerid: null, ibizcustomerid: null,
formitem2: null,
ibizorderid: null, ibizorderid: null,
ibizorder:null, ibizorder:null,
}; };
...@@ -840,9 +839,9 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -840,9 +839,9 @@ export default class MainBase extends Vue implements ControlInterface {
{ required: this.detailsModel.formitem1.required, type: 'string', message: '安永多选 值不能为空', trigger: 'change' }, { required: this.detailsModel.formitem1.required, type: 'string', message: '安永多选 值不能为空', trigger: 'change' },
{ required: this.detailsModel.formitem1.required, type: 'string', message: '安永多选 值不能为空', trigger: 'blur' }, { required: this.detailsModel.formitem1.required, type: 'string', message: '安永多选 值不能为空', trigger: 'blur' },
], ],
formitem2: [ pickervalue: [
{ required: this.detailsModel.formitem2.required, type: 'string', message: '多选值项 值不能为空', trigger: 'change' }, { required: this.detailsModel.pickervalue.required, type: 'string', message: '多选值项 值不能为空', trigger: 'change' },
{ required: this.detailsModel.formitem2.required, type: 'string', message: '多选值项 值不能为空', trigger: 'blur' }, { required: this.detailsModel.pickervalue.required, type: 'string', message: '多选值项 值不能为空', trigger: 'blur' },
], ],
} }
} }
...@@ -1007,11 +1006,9 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -1007,11 +1006,9 @@ export default class MainBase extends Vue implements ControlInterface {
, ,
formitem1: new FormItemModel({ caption: '安永多选', detailType: 'FORMITEM', name: 'formitem1', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 }) formitem1: new FormItemModel({ caption: '安永多选', detailType: 'FORMITEM', name: 'formitem1', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
, ,
formitem2: new FormItemModel({ caption: '多选值项', detailType: 'FORMITEM', name: 'formitem2', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 }) pickervalue: new FormItemModel({ caption: '多选值项', detailType: 'FORMITEM', name: 'pickervalue', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
, ,
ibizcustomerid: new FormItemModel({ caption: '客户标识', detailType: 'FORMITEM', name: 'ibizcustomerid', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 }) ibizcustomerid: new FormItemModel({ caption: '客户标识', detailType: 'FORMITEM', name: 'ibizcustomerid', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
,
formitem2: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: ' formitem2', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
, ,
ibizorderid: new FormItemModel({ caption: '订单标识', detailType: 'FORMITEM', name: 'ibizorderid', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 }) ibizorderid: new FormItemModel({ caption: '订单标识', detailType: 'FORMITEM', name: 'ibizorderid', visible: true, isShowCaption: true, form: this, isControlledContent: false , required:false, disabled: false, enableCond: 3 })
, ,
...@@ -1282,15 +1279,15 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -1282,15 +1279,15 @@ export default class MainBase extends Vue implements ControlInterface {
} }
/** /**
* 监控表单属性 formitem2 * 监控表单属性 pickervalue
* *
* @param {*} newVal * @param {*} newVal
* @param {*} oldVal * @param {*} oldVal
* @memberof MainBase * @memberof MainBase
*/ */
@Watch('data.formitem2') @Watch('data.pickervalue')
onFormitem2Change(newVal: any, oldVal: any) { onPickervalueChange(newVal: any, oldVal: any) {
this.formDataChange({ name: 'formitem2', newVal: newVal, oldVal: oldVal }); this.formDataChange({ name: 'pickervalue', newVal: newVal, oldVal: oldVal });
} }
/** /**
...@@ -1305,18 +1302,6 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -1305,18 +1302,6 @@ export default class MainBase extends Vue implements ControlInterface {
this.formDataChange({ name: 'ibizcustomerid', newVal: newVal, oldVal: oldVal }); this.formDataChange({ name: 'ibizcustomerid', newVal: newVal, oldVal: oldVal });
} }
/**
* 监控表单属性 formitem2 值
*
* @param {*} newVal
* @param {*} oldVal
* @memberof MainBase
*/
@Watch('data. formitem2')
on formitem2Change(newVal: any, oldVal: any) {
this.formDataChange({ name: ' formitem2', newVal: newVal, oldVal: oldVal });
}
/** /**
* 监控表单属性 ibizorderid 值 * 监控表单属性 ibizorderid 值
* *
...@@ -1412,7 +1397,6 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -1412,7 +1397,6 @@ export default class MainBase extends Vue implements ControlInterface {
} }
......
...@@ -124,7 +124,7 @@ export default class MainModel { ...@@ -124,7 +124,7 @@ export default class MainModel {
dataType:'FORMITEM', dataType:'FORMITEM',
}, },
{ {
name: 'formitem2', name: 'pickervalue',
dataType:'FORMITEM', dataType:'FORMITEM',
}, },
{ {
...@@ -132,9 +132,6 @@ export default class MainModel { ...@@ -132,9 +132,6 @@ export default class MainModel {
prop: 'ibizcustomerid', prop: 'ibizcustomerid',
dataType: 'PICKUP', dataType: 'PICKUP',
}, },
{
name: ' formitem2',
},
{ {
name: 'ibizorderid', name: 'ibizorderid',
prop: 'ibizorderid', prop: 'ibizorderid',
......
...@@ -173,7 +173,7 @@ ...@@ -173,7 +173,7 @@
"id" : "formitem1", "id" : "formitem1",
"dataType" : 25 "dataType" : 25
}, { }, {
"id" : "formitem2", "id" : "pickervalue",
"dataType" : 25 "dataType" : 25
}, { }, {
"id" : "ibizcustomerid", "id" : "ibizcustomerid",
...@@ -183,10 +183,6 @@ ...@@ -183,10 +183,6 @@
"name" : "IBIZCUSTOMERID", "name" : "IBIZCUSTOMERID",
"codeName" : "IBIZCustomerId" "codeName" : "IBIZCustomerId"
} }
}, {
"id" : " formitem2",
"hidden" : true,
"dataType" : 25
}, { }, {
"id" : "ibizorderid", "id" : "ibizorderid",
"hidden" : true, "hidden" : true,
...@@ -790,7 +786,7 @@ ...@@ -790,7 +786,7 @@
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderPickupView.json", "path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderPickupView.json",
"viewType" : "DEPICKUPVIEW" "viewType" : "DEPICKUPVIEW"
}, },
"valueItemName" : " formitem2", "valueItemName" : "pickervalue",
"enableAC" : true, "enableAC" : true,
"enablePickupView" : true, "enablePickupView" : true,
"forceSelection" : true, "forceSelection" : true,
...@@ -802,12 +798,12 @@ ...@@ -802,12 +798,12 @@
"layout" : "TABLE_24COL" "layout" : "TABLE_24COL"
}, },
"rTMOSFilePath" : "psdeformdetail_formitems/formitem1", "rTMOSFilePath" : "psdeformdetail_formitems/formitem1",
"valueItemName" : " formitem2", "valueItemName" : "pickervalue",
"allowEmpty" : true, "allowEmpty" : true,
"showCaption" : true "showCaption" : true
}, { }, {
"caption" : "多选值项", "caption" : "多选值项",
"codeName" : "formitem2", "codeName" : "pickervalue",
"dataType" : 25, "dataType" : 25,
"detailStyle" : "DEFAULT", "detailStyle" : "DEFAULT",
"detailType" : "FORMITEM", "detailType" : "FORMITEM",
...@@ -815,19 +811,19 @@ ...@@ -815,19 +811,19 @@
"ignoreInput" : 0, "ignoreInput" : 0,
"labelPos" : "LEFT", "labelPos" : "LEFT",
"labelWidth" : 130, "labelWidth" : 130,
"mOSFilePath" : "psdeformdetail_formitems/formitem2", "mOSFilePath" : "psdeformdetail_formitems/pickervalue",
"name" : "formitem2", "name" : "pickervalue",
"noPrivDisplayMode" : 1, "noPrivDisplayMode" : 1,
"getPSEditor" : { "getPSEditor" : {
"editorType" : "SPAN", "editorType" : "SPAN",
"name" : "formitem2", "name" : "pickervalue",
"enableLinkView" : false "enableLinkView" : false
}, },
"getPSLayoutPos" : { "getPSLayoutPos" : {
"colMD" : 24, "colMD" : 24,
"layout" : "TABLE_24COL" "layout" : "TABLE_24COL"
}, },
"rTMOSFilePath" : "psdeformdetail_formitems/formitem2", "rTMOSFilePath" : "psdeformdetail_formitems/pickervalue",
"allowEmpty" : true, "allowEmpty" : true,
"showCaption" : true "showCaption" : true
} ], } ],
......
...@@ -1155,7 +1155,7 @@ ...@@ -1155,7 +1155,7 @@
"id" : "formitem1", "id" : "formitem1",
"dataType" : 25 "dataType" : 25
}, { }, {
"id" : "formitem2", "id" : "pickervalue",
"dataType" : 25 "dataType" : 25
}, { }, {
"id" : "ibizcustomerid", "id" : "ibizcustomerid",
...@@ -1165,10 +1165,6 @@ ...@@ -1165,10 +1165,6 @@
"name" : "IBIZCUSTOMERID", "name" : "IBIZCUSTOMERID",
"codeName" : "IBIZCustomerId" "codeName" : "IBIZCustomerId"
} }
}, {
"id" : " formitem2",
"hidden" : true,
"dataType" : 25
}, { }, {
"id" : "ibizorderid", "id" : "ibizorderid",
"hidden" : true, "hidden" : true,
...@@ -1772,7 +1768,7 @@ ...@@ -1772,7 +1768,7 @@
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderPickupView.json", "path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderPickupView.json",
"viewType" : "DEPICKUPVIEW" "viewType" : "DEPICKUPVIEW"
}, },
"valueItemName" : " formitem2", "valueItemName" : "pickervalue",
"enableAC" : true, "enableAC" : true,
"enablePickupView" : true, "enablePickupView" : true,
"forceSelection" : true, "forceSelection" : true,
...@@ -1784,12 +1780,12 @@ ...@@ -1784,12 +1780,12 @@
"layout" : "TABLE_24COL" "layout" : "TABLE_24COL"
}, },
"rTMOSFilePath" : "psdeformdetail_formitems/formitem1", "rTMOSFilePath" : "psdeformdetail_formitems/formitem1",
"valueItemName" : " formitem2", "valueItemName" : "pickervalue",
"allowEmpty" : true, "allowEmpty" : true,
"showCaption" : true "showCaption" : true
}, { }, {
"caption" : "多选值项", "caption" : "多选值项",
"codeName" : "formitem2", "codeName" : "pickervalue",
"dataType" : 25, "dataType" : 25,
"detailStyle" : "DEFAULT", "detailStyle" : "DEFAULT",
"detailType" : "FORMITEM", "detailType" : "FORMITEM",
...@@ -1797,19 +1793,19 @@ ...@@ -1797,19 +1793,19 @@
"ignoreInput" : 0, "ignoreInput" : 0,
"labelPos" : "LEFT", "labelPos" : "LEFT",
"labelWidth" : 130, "labelWidth" : 130,
"mOSFilePath" : "psdeformdetail_formitems/formitem2", "mOSFilePath" : "psdeformdetail_formitems/pickervalue",
"name" : "formitem2", "name" : "pickervalue",
"noPrivDisplayMode" : 1, "noPrivDisplayMode" : 1,
"getPSEditor" : { "getPSEditor" : {
"editorType" : "SPAN", "editorType" : "SPAN",
"name" : "formitem2", "name" : "pickervalue",
"enableLinkView" : false "enableLinkView" : false
}, },
"getPSLayoutPos" : { "getPSLayoutPos" : {
"colMD" : 24, "colMD" : 24,
"layout" : "TABLE_24COL" "layout" : "TABLE_24COL"
}, },
"rTMOSFilePath" : "psdeformdetail_formitems/formitem2", "rTMOSFilePath" : "psdeformdetail_formitems/pickervalue",
"allowEmpty" : true, "allowEmpty" : true,
"showCaption" : true "showCaption" : true
} ], } ],
......
...@@ -1604,7 +1604,7 @@ ...@@ -1604,7 +1604,7 @@
"id" : "formitem1", "id" : "formitem1",
"dataType" : 25 "dataType" : 25
}, { }, {
"id" : "formitem2", "id" : "pickervalue",
"dataType" : 25 "dataType" : 25
}, { }, {
"id" : "ibizcustomerid", "id" : "ibizcustomerid",
...@@ -1614,10 +1614,6 @@ ...@@ -1614,10 +1614,6 @@
"name" : "IBIZCUSTOMERID", "name" : "IBIZCUSTOMERID",
"codeName" : "IBIZCustomerId" "codeName" : "IBIZCustomerId"
} }
}, {
"id" : " formitem2",
"hidden" : true,
"dataType" : 25
}, { }, {
"id" : "ibizorderid", "id" : "ibizorderid",
"hidden" : true, "hidden" : true,
...@@ -2221,7 +2217,7 @@ ...@@ -2221,7 +2217,7 @@
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderPickupView.json", "path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderPickupView.json",
"viewType" : "DEPICKUPVIEW" "viewType" : "DEPICKUPVIEW"
}, },
"valueItemName" : " formitem2", "valueItemName" : "pickervalue",
"enableAC" : true, "enableAC" : true,
"enablePickupView" : true, "enablePickupView" : true,
"forceSelection" : true, "forceSelection" : true,
...@@ -2233,12 +2229,12 @@ ...@@ -2233,12 +2229,12 @@
"layout" : "TABLE_24COL" "layout" : "TABLE_24COL"
}, },
"rTMOSFilePath" : "psdeformdetail_formitems/formitem1", "rTMOSFilePath" : "psdeformdetail_formitems/formitem1",
"valueItemName" : " formitem2", "valueItemName" : "pickervalue",
"allowEmpty" : true, "allowEmpty" : true,
"showCaption" : true "showCaption" : true
}, { }, {
"caption" : "多选值项", "caption" : "多选值项",
"codeName" : "formitem2", "codeName" : "pickervalue",
"dataType" : 25, "dataType" : 25,
"detailStyle" : "DEFAULT", "detailStyle" : "DEFAULT",
"detailType" : "FORMITEM", "detailType" : "FORMITEM",
...@@ -2246,19 +2242,19 @@ ...@@ -2246,19 +2242,19 @@
"ignoreInput" : 0, "ignoreInput" : 0,
"labelPos" : "LEFT", "labelPos" : "LEFT",
"labelWidth" : 130, "labelWidth" : 130,
"mOSFilePath" : "psdeformdetail_formitems/formitem2", "mOSFilePath" : "psdeformdetail_formitems/pickervalue",
"name" : "formitem2", "name" : "pickervalue",
"noPrivDisplayMode" : 1, "noPrivDisplayMode" : 1,
"getPSEditor" : { "getPSEditor" : {
"editorType" : "SPAN", "editorType" : "SPAN",
"name" : "formitem2", "name" : "pickervalue",
"enableLinkView" : false "enableLinkView" : false
}, },
"getPSLayoutPos" : { "getPSLayoutPos" : {
"colMD" : 24, "colMD" : 24,
"layout" : "TABLE_24COL" "layout" : "TABLE_24COL"
}, },
"rTMOSFilePath" : "psdeformdetail_formitems/formitem2", "rTMOSFilePath" : "psdeformdetail_formitems/pickervalue",
"allowEmpty" : true, "allowEmpty" : true,
"showCaption" : true "showCaption" : true
} ], } ],
......
...@@ -748,7 +748,7 @@ ...@@ -748,7 +748,7 @@
"id" : "formitem1", "id" : "formitem1",
"dataType" : 25 "dataType" : 25
}, { }, {
"id" : "formitem2", "id" : "pickervalue",
"dataType" : 25 "dataType" : 25
}, { }, {
"id" : "ibizcustomerid", "id" : "ibizcustomerid",
...@@ -758,10 +758,6 @@ ...@@ -758,10 +758,6 @@
"name" : "IBIZCUSTOMERID", "name" : "IBIZCUSTOMERID",
"codeName" : "IBIZCustomerId" "codeName" : "IBIZCustomerId"
} }
}, {
"id" : " formitem2",
"hidden" : true,
"dataType" : 25
}, { }, {
"id" : "ibizorderid", "id" : "ibizorderid",
"hidden" : true, "hidden" : true,
...@@ -1365,7 +1361,7 @@ ...@@ -1365,7 +1361,7 @@
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderPickupView.json", "path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderPickupView.json",
"viewType" : "DEPICKUPVIEW" "viewType" : "DEPICKUPVIEW"
}, },
"valueItemName" : " formitem2", "valueItemName" : "pickervalue",
"enableAC" : true, "enableAC" : true,
"enablePickupView" : true, "enablePickupView" : true,
"forceSelection" : true, "forceSelection" : true,
...@@ -1377,12 +1373,12 @@ ...@@ -1377,12 +1373,12 @@
"layout" : "TABLE_24COL" "layout" : "TABLE_24COL"
}, },
"rTMOSFilePath" : "psdeformdetail_formitems/formitem1", "rTMOSFilePath" : "psdeformdetail_formitems/formitem1",
"valueItemName" : " formitem2", "valueItemName" : "pickervalue",
"allowEmpty" : true, "allowEmpty" : true,
"showCaption" : true "showCaption" : true
}, { }, {
"caption" : "多选值项", "caption" : "多选值项",
"codeName" : "formitem2", "codeName" : "pickervalue",
"dataType" : 25, "dataType" : 25,
"detailStyle" : "DEFAULT", "detailStyle" : "DEFAULT",
"detailType" : "FORMITEM", "detailType" : "FORMITEM",
...@@ -1390,19 +1386,19 @@ ...@@ -1390,19 +1386,19 @@
"ignoreInput" : 0, "ignoreInput" : 0,
"labelPos" : "LEFT", "labelPos" : "LEFT",
"labelWidth" : 130, "labelWidth" : 130,
"mOSFilePath" : "psdeformdetail_formitems/formitem2", "mOSFilePath" : "psdeformdetail_formitems/pickervalue",
"name" : "formitem2", "name" : "pickervalue",
"noPrivDisplayMode" : 1, "noPrivDisplayMode" : 1,
"getPSEditor" : { "getPSEditor" : {
"editorType" : "SPAN", "editorType" : "SPAN",
"name" : "formitem2", "name" : "pickervalue",
"enableLinkView" : false "enableLinkView" : false
}, },
"getPSLayoutPos" : { "getPSLayoutPos" : {
"colMD" : 24, "colMD" : 24,
"layout" : "TABLE_24COL" "layout" : "TABLE_24COL"
}, },
"rTMOSFilePath" : "psdeformdetail_formitems/formitem2", "rTMOSFilePath" : "psdeformdetail_formitems/pickervalue",
"allowEmpty" : true, "allowEmpty" : true,
"showCaption" : true "showCaption" : true
} ], } ],
......
...@@ -283,7 +283,7 @@ ...@@ -283,7 +283,7 @@
"id" : "formitem1", "id" : "formitem1",
"dataType" : 25 "dataType" : 25
}, { }, {
"id" : "formitem2", "id" : "pickervalue",
"dataType" : 25 "dataType" : 25
}, { }, {
"id" : "ibizcustomerid", "id" : "ibizcustomerid",
...@@ -293,10 +293,6 @@ ...@@ -293,10 +293,6 @@
"name" : "IBIZCUSTOMERID", "name" : "IBIZCUSTOMERID",
"codeName" : "IBIZCustomerId" "codeName" : "IBIZCustomerId"
} }
}, {
"id" : " formitem2",
"hidden" : true,
"dataType" : 25
}, { }, {
"id" : "ibizorderid", "id" : "ibizorderid",
"hidden" : true, "hidden" : true,
...@@ -900,7 +896,7 @@ ...@@ -900,7 +896,7 @@
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderPickupView.json", "path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZOrderPickupView.json",
"viewType" : "DEPICKUPVIEW" "viewType" : "DEPICKUPVIEW"
}, },
"valueItemName" : " formitem2", "valueItemName" : "pickervalue",
"enableAC" : true, "enableAC" : true,
"enablePickupView" : true, "enablePickupView" : true,
"forceSelection" : true, "forceSelection" : true,
...@@ -912,12 +908,12 @@ ...@@ -912,12 +908,12 @@
"layout" : "TABLE_24COL" "layout" : "TABLE_24COL"
}, },
"rTMOSFilePath" : "psdeformdetail_formitems/formitem1", "rTMOSFilePath" : "psdeformdetail_formitems/formitem1",
"valueItemName" : " formitem2", "valueItemName" : "pickervalue",
"allowEmpty" : true, "allowEmpty" : true,
"showCaption" : true "showCaption" : true
}, { }, {
"caption" : "多选值项", "caption" : "多选值项",
"codeName" : "formitem2", "codeName" : "pickervalue",
"dataType" : 25, "dataType" : 25,
"detailStyle" : "DEFAULT", "detailStyle" : "DEFAULT",
"detailType" : "FORMITEM", "detailType" : "FORMITEM",
...@@ -925,19 +921,19 @@ ...@@ -925,19 +921,19 @@
"ignoreInput" : 0, "ignoreInput" : 0,
"labelPos" : "LEFT", "labelPos" : "LEFT",
"labelWidth" : 130, "labelWidth" : 130,
"mOSFilePath" : "psdeformdetail_formitems/formitem2", "mOSFilePath" : "psdeformdetail_formitems/pickervalue",
"name" : "formitem2", "name" : "pickervalue",
"noPrivDisplayMode" : 1, "noPrivDisplayMode" : 1,
"getPSEditor" : { "getPSEditor" : {
"editorType" : "SPAN", "editorType" : "SPAN",
"name" : "formitem2", "name" : "pickervalue",
"enableLinkView" : false "enableLinkView" : false
}, },
"getPSLayoutPos" : { "getPSLayoutPos" : {
"colMD" : 24, "colMD" : 24,
"layout" : "TABLE_24COL" "layout" : "TABLE_24COL"
}, },
"rTMOSFilePath" : "psdeformdetail_formitems/formitem2", "rTMOSFilePath" : "psdeformdetail_formitems/pickervalue",
"allowEmpty" : true, "allowEmpty" : true,
"showCaption" : true "showCaption" : true
} ], } ],
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册