提交 5b7efb77 编写于 作者: ibizdev's avatar ibizdev

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

上级 a7542faa
......@@ -350,6 +350,7 @@ function getAppLocale(){
menuitem167: commonLogic.appcommonhandle("实体选项操作视图",null),
menuitem141: commonLogic.appcommonhandle("多数据视图",null),
menuitem79: commonLogic.appcommonhandle("实体表格视图",null),
menuitem249: commonLogic.appcommonhandle("多编辑视图",null),
menuitem168: commonLogic.appcommonhandle("实体多表单编辑视图",null),
menuitem169: commonLogic.appcommonhandle("实体甘特视图",null),
menuitem9: commonLogic.appcommonhandle("实体列表视图",null),
......
......@@ -350,6 +350,7 @@ function getAppLocale(){
menuitem167: commonLogic.appcommonhandle("Entity Options Operations View",null),
menuitem141: commonLogic.appcommonhandle("Multi Data View",null),
menuitem79: commonLogic.appcommonhandle("Entity Grid View",null),
menuitem249: commonLogic.appcommonhandle("多编辑视图",null),
menuitem168: commonLogic.appcommonhandle("Entity Multi Form Edit View",null),
menuitem169: commonLogic.appcommonhandle("Entity Gantt View",null),
menuitem9: commonLogic.appcommonhandle("Entity List View",null),
......
......@@ -350,6 +350,7 @@ function getAppLocale(){
menuitem167: commonLogic.appcommonhandle("实体选项操作视图",null),
menuitem141: commonLogic.appcommonhandle("多数据视图",null),
menuitem79: commonLogic.appcommonhandle("实体表格视图",null),
menuitem249: commonLogic.appcommonhandle("多编辑视图",null),
menuitem168: commonLogic.appcommonhandle("实体多表单编辑视图",null),
menuitem169: commonLogic.appcommonhandle("实体甘特视图",null),
menuitem9: commonLogic.appcommonhandle("实体列表视图",null),
......
......@@ -172,6 +172,10 @@ function getLocaleResourceBase(){
caption: commonLogic.appcommonhandle("实体选项操作视图",null),
title: commonLogic.appcommonhandle("实体选项操作视图",null),
},
usr3meditview9: {
caption: commonLogic.appcommonhandle("图书",null),
title: commonLogic.appcommonhandle("图书多表单编辑视图",null),
},
treegridexview: {
caption: commonLogic.appcommonhandle("图书",null),
title: commonLogic.appcommonhandle("图书树表格视图",null),
......
......@@ -172,6 +172,10 @@ function getLocaleResourceBase(){
caption: commonLogic.appcommonhandle("Entity Options Operations View",null),
title: commonLogic.appcommonhandle("实体选项操作视图",null),
},
usr3meditview9: {
caption: commonLogic.appcommonhandle("图书",null),
title: commonLogic.appcommonhandle("图书多表单编辑视图",null),
},
treegridexview: {
caption: commonLogic.appcommonhandle("图书",null),
title: commonLogic.appcommonhandle("图书树表格视图",null),
......
......@@ -172,6 +172,10 @@ function getLocaleResourceBase(){
caption: commonLogic.appcommonhandle("实体选项操作视图",null),
title: commonLogic.appcommonhandle("实体选项操作视图",null),
},
usr3meditview9: {
caption: commonLogic.appcommonhandle("图书",null),
title: commonLogic.appcommonhandle("图书多表单编辑视图",null),
},
treegridexview: {
caption: commonLogic.appcommonhandle("图书",null),
title: commonLogic.appcommonhandle("图书树表格视图",null),
......
......@@ -2027,6 +2027,24 @@ mock.onGet('v7/main-menuappmenu').reply((config: any) => {
textcls: '',
appfunctag: 'Auto299',
resourcetag: '',
},
{
id: 'D5265D1A-D146-4AE5-B9CC-140DBF8C7C08',
name: 'menuitem249',
text: '多编辑视图',
type: 'MENUITEM',
counterid: '',
tooltip: '多编辑视图',
expanded: false,
separator: false,
hidden: false,
hidesidebar: false,
opendefault: false,
iconcls: '',
icon: '',
textcls: '',
appfunctag: 'AppFunc134',
resourcetag: '',
},
{
id: 'CFCA26B1-14B7-4D10-BC34-2AE79F073061',
......
......@@ -1596,6 +1596,19 @@ const router = new Router({
},
component: () => import('@pages/sample/ibizbookoption-view/ibizbookoption-view.vue'),
},
{
path: '/ibizbooks/:ibizbook?/usr3meditview9/:usr3meditview9?',
meta: {
caption: 'entities.ibizbook.views.usr3meditview9.caption',
info:'',
parameters: [
{ pathName: 'ibizbooks', parameterName: 'ibizbook' },
{ pathName: 'usr3meditview9', parameterName: 'usr3meditview9' },
],
requireAuth: true,
},
component: () => import('@pages/sample/ibizbookusr3-medit-view9/ibizbookusr3-medit-view9.vue'),
},
{
path: '/ibizbooks/:ibizbook?/roweditgridview/:roweditgridview?',
meta: {
......
// 基于 @VIEW/实体多表单编辑视图(部件视图))/VIEW.scss.ftl 生成
.ibizbookusr3-medit-view9{
position: relative;
}
.ibizbookusr3-medit-view9{
display: block;
}
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import IBIZBOOKUsr3MEditView9Base from './ibizbookusr3-medit-view9-base.vue';
import view_meditviewpanel from '@widgets/ibizbook/main-multieditviewpanel/main-multieditviewpanel.vue';
// 基于 @VIEW/实体多表单编辑视图(部件视图)/VIEW.vue.ftl 生成
@Component({
components: {
view_meditviewpanel,
},
beforeRouteEnter: (to: any, from: any, next: any) => {
next((vm: any) => {
if(!Object.is(vm.navModel,"route")){
vm.initNavDataWithTab(vm.viewCacheData);
}
vm.$store.commit('addCurPageViewtag', { fullPath: to.fullPath, viewtag: vm.viewtag });
});
},
})
export default class IBIZBOOKUsr3MEditView9 extends IBIZBOOKUsr3MEditView9Base {
}
</script>
\ No newline at end of file
......@@ -85,6 +85,7 @@ export const PageComponents = {
Vue.component('ibizbookdashboard-view', () => import('@pages/sample/ibizbookdashboard-view/ibizbookdashboard-view.vue'));
Vue.component('ibizbookusr6-grid-view', () => import('@pages/sample/ibizbookusr6-grid-view/ibizbookusr6-grid-view.vue'));
Vue.component('ibizorder-sgrid-view', () => import('@pages/sample/ibizorder-sgrid-view/ibizorder-sgrid-view.vue'));
Vue.component('ibizbookusr3-medit-view9', () => import('@pages/sample/ibizbookusr3-medit-view9/ibizbookusr3-medit-view9.vue'));
Vue.component('ibizbookusr4-list-view', () => import('@pages/sample/ibizbookusr4-list-view/ibizbookusr4-list-view.vue'));
Vue.component('ibizbookusr2-tree-view', () => import('@pages/sample/ibizbookusr2-tree-view/ibizbookusr2-tree-view.vue'));
Vue.component('ibizorder-usr2-chart-view', () => import('@pages/sample/ibizorder-usr2-chart-view/ibizorder-usr2-chart-view.vue'));
......
......@@ -1299,6 +1299,20 @@ const router = new Router({
},
component: () => import('@pages/sample/ibizorder-sgrid-view/ibizorder-sgrid-view.vue'),
},
{
path: 'ibizbooks/:ibizbook?/usr3meditview9/:usr3meditview9?',
meta: {
caption: 'entities.ibizbook.views.usr3meditview9.caption',
info:'',
parameters: [
{ pathName: 'index', parameterName: 'index' },
{ pathName: 'ibizbooks', parameterName: 'ibizbook' },
{ pathName: 'usr3meditview9', parameterName: 'usr3meditview9' },
],
requireAuth: true,
},
component: () => import('@pages/sample/ibizbookusr3-medit-view9/ibizbookusr3-medit-view9.vue'),
},
{
path: 'ibizbooks/:ibizbook?/usr4listview/:usr4listview?',
meta: {
......@@ -5149,6 +5163,19 @@ const router = new Router({
},
component: () => import('@pages/sample/ibizbookoption-view/ibizbookoption-view.vue'),
},
{
path: '/ibizbooks/:ibizbook?/usr3meditview9/:usr3meditview9?',
meta: {
caption: 'entities.ibizbook.views.usr3meditview9.caption',
info:'',
parameters: [
{ pathName: 'ibizbooks', parameterName: 'ibizbook' },
{ pathName: 'usr3meditview9', parameterName: 'usr3meditview9' },
],
requireAuth: true,
},
component: () => import('@pages/sample/ibizbookusr3-medit-view9/ibizbookusr3-medit-view9.vue'),
},
{
path: '/ibizbooks/:ibizbook?/roweditgridview/:roweditgridview?',
meta: {
......
......@@ -1414,6 +1414,19 @@ const router = new Router({
},
component: () => import('@pages/sample/ibizbookoption-view/ibizbookoption-view.vue'),
},
{
path: '/ibizbooks/:ibizbook?/usr3meditview9/:usr3meditview9?',
meta: {
caption: 'entities.ibizbook.views.usr3meditview9.caption',
info:'',
parameters: [
{ pathName: 'ibizbooks', parameterName: 'ibizbook' },
{ pathName: 'usr3meditview9', parameterName: 'usr3meditview9' },
],
requireAuth: true,
},
component: () => import('@pages/sample/ibizbookusr3-medit-view9/ibizbookusr3-medit-view9.vue'),
},
{
path: '/ibizbooks/:ibizbook?/roweditgridview/:roweditgridview?',
meta: {
......
......@@ -984,6 +984,7 @@ export const viewstate: any = {
'0df3680d38ec121a94fde0389354a892',
'56b214615acdba5ae643d4d951cc8c74',
'1a7578c0b5f8a1107d0fe9c2dc51f314',
'64c82729110883d3b30f24cf33608e3a',
'a9bf3ff5d065c8b7fd383b4d0d4dbcfe',
'979100eb38d3859933d5e0b2c5931d00',
'61178fd42446ff34ea3263088ac2a3f8',
......@@ -1212,6 +1213,16 @@ export const viewstate: any = {
refviews: [
],
},
{
viewtag: '64c82729110883d3b30f24cf33608e3a',
viewmodule: 'Sample',
viewname: 'IBIZBOOKUsr3MEditView9',
viewaction: '',
viewdatachange: false,
refviews: [
'c547bc4885f57d117461a64387c6e966',
],
},
{
viewtag: '66ec326d0b2e789e37fdabdb41353db2',
viewmodule: 'Sample',
......
......@@ -133,6 +133,7 @@ export default class IBIZBOOKUIServiceBase extends UIService {
this.allViewMap.set(':',{viewname:'usrgridview_colplugin',viewType:'DEGRIDVIEW',srfappde:'ibizbooks',component:'ibizbookusr-grid-view-col-plugin'});
this.allViewMap.set(':',{viewname:'usr3calendarview',viewType:'DECALENDARVIEW',srfappde:'ibizbooks',component:'ibizbookusr3-calendar-view'});
this.allViewMap.set(':',{viewname:'optionview',viewType:'DEOPTVIEW',srfappde:'ibizbooks',component:'ibizbookoption-view'});
this.allViewMap.set(':',{viewname:'usr3meditview9',viewType:'DEMEDITVIEW9',srfappde:'ibizbooks',component:'ibizbookusr3-medit-view9'});
this.allViewMap.set(':',{viewname:'treegridexview',viewType:'DETREEGRIDEXVIEW',srfappde:'ibizbooks',component:'ibizbooktree-grid-ex-view'});
this.allViewMap.set(':',{viewname:'roweditgridview',viewType:'DEGRIDVIEW',srfappde:'ibizbooks',component:'ibizbookrow-edit-grid-view'});
this.allViewMap.set(':',{viewname:'optionview_layout',viewType:'DEOPTVIEW',srfappde:'ibizbooks',component:'ibizbookoption-view-layout'});
......
......@@ -894,6 +894,9 @@ export default class MainMenuBase extends Vue implements ControlInterface {
case 'Auto299':
this.clickAuto299(item);
return;
case 'AppFunc134':
this.clickAppFunc134(item);
return;
case 'AppFunc90':
this.clickAppFunc90(item);
return;
......@@ -3072,6 +3075,29 @@ export default class MainMenuBase extends Vue implements ControlInterface {
})
}
/**
* 多编辑视图
*
* @param {*} [item={}]
* @memberof MainMenu
*/
public clickAppFunc134(item: any = {}) {
const viewparam: any = {};
Object.assign(viewparam, {});
const deResParameters: any[] = [];
const parameters: any[] = [
{ pathName: 'ibizbooks', parameterName: 'ibizbook' },
{ pathName: 'usr3meditview9', parameterName: 'usr3meditview9' },
];
const path: string = this.$viewTool.buildUpRoutePath(this.$route, {}, deResParameters, parameters, [], viewparam);
if(Object.is(this.$route.fullPath,path)){
return;
}
this.$nextTick(function(){
this.$router.push(path);
})
}
/**
* 列表视图
*
......
......@@ -2142,6 +2142,25 @@ export default class MainMenuModel {
appfunctag: 'Auto299',
resourcetag: '',
authtag:'Web-MainMenu-menuitem79',
},
{
id: 'D5265D1A-D146-4AE5-B9CC-140DBF8C7C08',
name: 'menuitem249',
text: '多编辑视图',
type: 'MENUITEM',
counterid: '',
tooltip: '多编辑视图',
expanded: false,
separator: false,
hidden: false,
hidesidebar: false,
opendefault: false,
iconcls: '',
icon: '',
textcls: '',
appfunctag: 'AppFunc134',
resourcetag: '',
authtag:'Web-MainMenu-menuitem249',
},
{
id: 'CFCA26B1-14B7-4D10-BC34-2AE79F073061',
......@@ -5510,6 +5529,18 @@ export default class MainMenuModel {
{ pathName: 'sgridview', parameterName: 'sgridview' },
],
},
{
appfunctag: 'AppFunc134',
appfuncyype: 'APPVIEW',
openmode: '',
codename: 'ibizbookusr3meditview9',
deResParameters: [],
routepath: '/index/:index?/ibizbooks/:ibizbook?/usr3meditview9/:usr3meditview9?',
parameters: [
{ pathName: 'ibizbooks', parameterName: 'ibizbook' },
{ pathName: 'usr3meditview9', parameterName: 'usr3meditview9' },
],
},
{
appfunctag: 'AppFunc90',
appfuncyype: 'APPVIEW',
......
......@@ -639,7 +639,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public load(opt: any = {}): void {
if(!this.loadAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZAPPEDITORGridView' + (this.$t('app.searchForm.notConfig.loadAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZAPPEDITORListView' + (this.$t('app.searchForm.notConfig.loadAction') as string) });
return;
}
const arg: any = { ...opt };
......@@ -675,7 +675,7 @@ export default class DefaultBase extends Vue implements ControlInterface {
*/
public async loadDraft(opt: any = {},mode?:string): Promise<any> {
if(!this.loaddraftAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZAPPEDITORGridView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZAPPEDITORListView' + (this.$t('app.searchForm.notConfig.loaddraftAction') as string) });
return;
}
const arg: any = { ...opt } ;
......
......@@ -698,7 +698,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
*/
public async load(opt: any = {}, isReset: boolean = false): Promise<any> {
if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKTestCLDataView' + (this.$t('app.list.notConfig.fetchAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr4DataView' + (this.$t('app.list.notConfig.fetchAction') as string) });
return;
}
const arg: any = {...opt};
......@@ -792,7 +792,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
*/
public async remove(datas: any[]): Promise<any> {
if(!this.removeAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKTestCLDataView' + (this.$t('app.gridpage.notConfig.removeAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr4DataView' + (this.$t('app.gridpage.notConfig.removeAction') as string) });
return;
}
let _datas:any[] = [];
......@@ -908,7 +908,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
try {
if(Object.is(item.rowDataState, 'create')){
if(!this.createAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKTestCLDataView' + (this.$t('app.list.notConfig.createAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr4DataView' + (this.$t('app.list.notConfig.createAction') as string) });
}else{
Object.assign(item,{viewparams:this.viewparams});
let response = await this.service.add(this.createAction, JSON.parse(JSON.stringify(this.context)),item, this.showBusyIndicator);
......@@ -916,7 +916,7 @@ export default class Usr4Base extends Vue implements ControlInterface {
}
}else if(Object.is(item.rowDataState, 'update')){
if(!this.updateAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKTestCLDataView' + (this.$t('app.list.notConfig.updateAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZBOOKUsr4DataView' + (this.$t('app.list.notConfig.updateAction') as string) });
}else{
Object.assign(item,{viewparams:this.viewparams});
if(item.ibizbook){
......
......@@ -70,6 +70,11 @@ export default class Usr4Model {
prop: 'n_ibizbookname_like',
dataType: 'QUERYPARAM'
},
{
name: 'n_price_gtandeq',
prop: 'n_price_gtandeq',
dataType: 'QUERYPARAM'
},
{
......
......@@ -933,7 +933,7 @@ export default class MainBase extends Vue implements ControlInterface {
if (!this.fetchAction) {
this.$Notice.error({
title: this.$t("app.commonWords.wrong") as string,
desc: "IBIZOrderDetailSGridView9" + (this.$t("app.gridpage.notConfig.fetchAction") as string),
desc: "IBIZOrderDetailSGridView" + (this.$t("app.gridpage.notConfig.fetchAction") as string),
});
return;
}
......@@ -1073,7 +1073,7 @@ export default class MainBase extends Vue implements ControlInterface {
if (!this.removeAction) {
this.$Notice.error({
title: (this.$t('app.commonWords.wrong') as string),
desc: 'IBIZOrderDetailSGridView9' + (this.$t('app.gridpage.notConfig.removeAction') as string)
desc: 'IBIZOrderDetailSGridView' + (this.$t('app.gridpage.notConfig.removeAction') as string)
});
return;
}
......@@ -1187,7 +1187,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/
public addBatch(arg: any = {}): void {
if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView9'+(this.$t('app.gridpage.notConfig.fetchAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView'+(this.$t('app.gridpage.notConfig.fetchAction') as string) });
return;
}
if(!arg){
......@@ -2082,7 +2082,7 @@ export default class MainBase extends Vue implements ControlInterface {
try {
if (Object.is(item.rowDataState, 'create')) {
if (!this.createAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView9'+(this.$t('app.gridpage.notConfig.createAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView'+(this.$t('app.gridpage.notConfig.createAction') as string) });
} else {
Object.assign(item, { viewparams: this.viewparams });
const tempContext = Util.deepCopy(this.context);
......@@ -2091,7 +2091,7 @@ export default class MainBase extends Vue implements ControlInterface {
}
}else if (Object.is(item.rowDataState, 'update')){
if (!this.updateAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView9'+(this.$t('app.gridpage.notConfig.updateAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderDetailSGridView'+(this.$t('app.gridpage.notConfig.updateAction') as string) });
} else {
Object.assign(item, { viewparams: this.viewparams });
const tempContext = Util.deepCopy(this.context);
......@@ -2167,7 +2167,7 @@ export default class MainBase extends Vue implements ControlInterface {
if(!this.loaddraftAction){
this.$Notice.error({
title: (this.$t('app.commonWords.wrong') as string),
desc: 'IBIZOrderDetailSGridView9' + (this.$t('app.gridpage.notConfig.loaddraftAction') as string)
desc: 'IBIZOrderDetailSGridView' + (this.$t('app.gridpage.notConfig.loaddraftAction') as string)
});
return;
}
......
......@@ -97,6 +97,7 @@ export default class MainModel {
name: 'ibizorderdetail',
prop: 'ibizorderdetailid',
},
{
name:'size',
prop:'size',
......
......@@ -288,7 +288,7 @@ export default class MainBase extends Vue implements ControlInterface {
* @param {*} [$event] 事件源
* @param {*} [xData] 执行行为所需当前部件
* @param {*} [actionContext] 执行行为上下文
* @memberof IBIZOrderSF1GridViewBase
* @memberof IBIZOrderPickupGridViewBase
*/
public Edit(args: any[],contextJO?:any, params?: any, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) {
if (args.length === 0) {
......@@ -431,20 +431,6 @@ export default class MainBase extends Vue implements ControlInterface {
return this.selections[0];
}
/**
* 打开新建数据视图
*
* @type {any}
* @memberof MainBase
*/
@Prop() public newdata: any;
/**
* 打开编辑数据视图
*
* @type {any}
* @memberof MainBase
*/
@Prop() public opendata: any;
/**
* 是否嵌入关系界面
......@@ -979,7 +965,7 @@ export default class MainBase extends Vue implements ControlInterface {
if (!this.fetchAction) {
this.$Notice.error({
title: this.$t("app.commonWords.wrong") as string,
desc: "IBIZOrderSF1GridView" + (this.$t("app.gridpage.notConfig.fetchAction") as string),
desc: "IBIZOrderPickupGridView" + (this.$t("app.gridpage.notConfig.fetchAction") as string),
});
return;
}
......@@ -1119,7 +1105,7 @@ export default class MainBase extends Vue implements ControlInterface {
if (!this.removeAction) {
this.$Notice.error({
title: (this.$t('app.commonWords.wrong') as string),
desc: 'IBIZOrderSF1GridView' + (this.$t('app.gridpage.notConfig.removeAction') as string)
desc: 'IBIZOrderPickupGridView' + (this.$t('app.gridpage.notConfig.removeAction') as string)
});
return;
}
......@@ -1233,7 +1219,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/
public addBatch(arg: any = {}): void {
if(!this.fetchAction){
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderSF1GridView'+(this.$t('app.gridpage.notConfig.fetchAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderPickupGridView'+(this.$t('app.gridpage.notConfig.fetchAction') as string) });
return;
}
if(!arg){
......@@ -2166,7 +2152,7 @@ export default class MainBase extends Vue implements ControlInterface {
try {
if (Object.is(item.rowDataState, 'create')) {
if (!this.createAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderSF1GridView'+(this.$t('app.gridpage.notConfig.createAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderPickupGridView'+(this.$t('app.gridpage.notConfig.createAction') as string) });
} else {
Object.assign(item, { viewparams: this.viewparams });
const tempContext = Util.deepCopy(this.context);
......@@ -2175,7 +2161,7 @@ export default class MainBase extends Vue implements ControlInterface {
}
}else if (Object.is(item.rowDataState, 'update')){
if (!this.updateAction) {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderSF1GridView'+(this.$t('app.gridpage.notConfig.updateAction') as string) });
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: 'IBIZOrderPickupGridView'+(this.$t('app.gridpage.notConfig.updateAction') as string) });
} else {
Object.assign(item, { viewparams: this.viewparams });
const tempContext = Util.deepCopy(this.context);
......@@ -2251,7 +2237,7 @@ export default class MainBase extends Vue implements ControlInterface {
if(!this.loaddraftAction){
this.$Notice.error({
title: (this.$t('app.commonWords.wrong') as string),
desc: 'IBIZOrderSF1GridView' + (this.$t('app.gridpage.notConfig.loaddraftAction') as string)
desc: 'IBIZOrderPickupGridView' + (this.$t('app.gridpage.notConfig.loaddraftAction') as string)
});
return;
}
......
......@@ -105,21 +105,6 @@ export default class MainModel {
prop: 'n_ibizordername_like',
dataType: 'QUERYPARAM'
},
{
name: 'n_orderstate_eq',
prop: 'n_orderstate_eq',
dataType: 'QUERYPARAM'
},
{
name: 'n_ordertime_gt',
prop: 'n_ordertime_gt',
dataType: 'QUERYPARAM'
},
{
name: 'n_ordertime_lt',
prop: 'n_ordertime_lt',
dataType: 'QUERYPARAM'
},
{
name:'size',
......
......@@ -5326,6 +5326,14 @@
"rTMOSFilePath" : "psmodeldata$psdataentities/Usr2ListView",
"realModelSubType" : "DELISTVIEW",
"realModelType" : "PSDEVIEWBASE"
}, {
"codeName" : "Usr3MEditView9",
"logicName" : "图书实体多表单编辑视图(部件视图)",
"mOSFilePath" : "psmodeldata$psdataentities/Usr3MEditView9",
"name" : "图书实体多表单编辑视图(部件视图)",
"rTMOSFilePath" : "psmodeldata$psdataentities/Usr3MEditView9",
"realModelSubType" : "DEMEDITVIEW9",
"realModelType" : "PSDEVIEWBASE"
}, {
"codeName" : "RowEditGridView",
"logicName" : "表格行编辑",
......
......@@ -6516,6 +6516,10 @@
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKOptionView.json",
"viewType" : "DEOPTVIEW"
}, {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKUsr3MEditView9.json",
"viewType" : "DEMEDITVIEW9"
}, {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKTreeGridExView.json",
......
......@@ -2923,6 +2923,28 @@
"layout" : "TABLE_24COL"
},
"tooltip" : "实体表格视图"
}, {
"accUserMode" : 2,
"caption" : "多编辑视图",
"itemType" : "MENUITEM",
"name" : "menuitem249",
"getPSAppFunc" : {
"modelref" : true,
"id" : "AppFunc134"
},
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"tooltip" : "多编辑视图"
}, {
"accUserMode" : 2,
"getCapPSLanguageRes" : {
......
......@@ -1602,6 +1602,16 @@
"id" : "Auto299"
},
"tooltip" : "实体表格视图"
}, {
"accUserMode" : 2,
"caption" : "多编辑视图",
"itemType" : "MENUITEM",
"name" : "menuitem249",
"getPSAppFunc" : {
"modelref" : true,
"id" : "AppFunc134"
},
"tooltip" : "多编辑视图"
}, {
"accUserMode" : 2,
"getCapPSLanguageRes" : {
......
......@@ -3513,6 +3513,18 @@
"viewType" : "DEGRIDVIEW"
},
"rTMOSFilePath" : "pssysapps/Web/psappfuncs/AppFunc34"
}, {
"appFuncType" : "APPVIEW",
"codeName" : "AppFunc134",
"mOSFilePath" : "pssysapps/Web/psappfuncs/AppFunc134",
"name" : "多编辑视图",
"openMode" : "INDEXVIEWTAB",
"getPSAppView" : {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKUsr3MEditView9.json",
"viewType" : "DEMEDITVIEW9"
},
"rTMOSFilePath" : "pssysapps/Web/psappfuncs/AppFunc134"
}, {
"appFuncType" : "APPVIEW",
"codeName" : "AppFunc94",
......@@ -16779,6 +16791,12 @@
"viewType" : "DEOPTVIEW",
"resource" : "IBIZBOOK",
"view" : "OptionView"
}, {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKUsr3MEditView9.json",
"viewType" : "DEMEDITVIEW9",
"resource" : "IBIZBOOK",
"view" : "Usr3MEditView9"
}, {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKTreeGridExView.json",
......@@ -21015,6 +21033,28 @@
"layout" : "TABLE_24COL"
},
"tooltip" : "实体表格视图"
}, {
"accUserMode" : 2,
"caption" : "多编辑视图",
"itemType" : "MENUITEM",
"name" : "menuitem249",
"getPSAppFunc" : {
"modelref" : true,
"id" : "AppFunc134"
},
"getPSLayout" : {
"childColLG" : -1,
"childColMD" : 24,
"childColSM" : -1,
"childColXS" : -1,
"columnCount" : 24,
"layout" : "TABLE_24COL"
},
"getPSLayoutPos" : {
"colMD" : 24,
"layout" : "TABLE_24COL"
},
"tooltip" : "多编辑视图"
}, {
"accUserMode" : 2,
"getCapPSLanguageRes" : {
......@@ -36072,6 +36112,10 @@
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKOptionView.json",
"viewType" : "DEOPTVIEW"
}, {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKUsr3MEditView9.json",
"viewType" : "DEMEDITVIEW9"
}, {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKTreeGridExView.json",
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册