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

chitanda 发布系统代码

上级 dae6f6f1
......@@ -316,13 +316,9 @@ export default {
caption: "激活报价单",
tip: "激活报价单",
},
tbitem17_close_sep: {
caption: "",
tip: "",
},
tbitem17_close: {
caption: "结束报价单",
tip: "结束报价单",
tbitem17_win: {
caption: "赢单",
tip: "赢单",
},
tbitem17_gensalesorder_sep: {
caption: "",
......@@ -332,6 +328,14 @@ export default {
caption: "创建订单",
tip: "创建订单",
},
tbitem17_close_sep: {
caption: "",
tip: "",
},
tbitem17_close: {
caption: "结束报价单",
tip: "结束报价单",
},
tbitem2: {
caption: "-",
tip: "",
......
......@@ -315,13 +315,9 @@ export default {
caption: "激活报价单",
tip: "激活报价单",
},
tbitem17_close_sep: {
caption: "",
tip: "",
},
tbitem17_close: {
caption: "结束报价单",
tip: "结束报价单",
tbitem17_win: {
caption: "赢单",
tip: "赢单",
},
tbitem17_gensalesorder_sep: {
caption: "",
......@@ -331,6 +327,14 @@ export default {
caption: "创建订单",
tip: "创建订单",
},
tbitem17_close_sep: {
caption: "",
tip: "",
},
tbitem17_close: {
caption: "结束报价单",
tip: "结束报价单",
},
tbitem2: {
caption: "-",
tip: "",
......
......@@ -92,12 +92,14 @@ export class QuoteInfoBase extends TabExpViewBase {
public toolBarModels: any = {
tbitem17_active: { name: 'tbitem17_active', caption: '激活报价单','isShowCaption':true,'isShowIcon':true, tooltip: '激活报价单', iconcls: 'fa fa-play-circle-o', icon: '', disabled: false, type: 'DEUIACTION', visabled: true, dataaccaction: '', uiaction: { tag: 'Active', target: 'SINGLEKEY' }, class: '' },
tbitem17_close_sep: { name: 'tbitem17_close_sep', type: 'SEPERATOR', visabled: true, dataaccaction: '', uiaction: { } },
tbitem17_close: { name: 'tbitem17_close', caption: '结束报价单','isShowCaption':true,'isShowIcon':true, tooltip: '结束报价单', iconcls: 'fa fa-close', icon: '', disabled: false, type: 'DEUIACTION', visabled: true, dataaccaction: '', uiaction: { tag: 'Close', target: 'SINGLEKEY' }, class: '' },
tbitem17_win: { name: 'tbitem17_win', caption: '赢单','isShowCaption':true,'isShowIcon':true, tooltip: '赢单', iconcls: 'fa fa-coffee', icon: '', disabled: false, type: 'DEUIACTION', visabled: true, dataaccaction: '', uiaction: { tag: 'Win', target: 'SINGLEKEY' }, class: '' },
tbitem17_gensalesorder_sep: { name: 'tbitem17_gensalesorder_sep', type: 'SEPERATOR', visabled: true, dataaccaction: '', uiaction: { } },
tbitem17_gensalesorder: { name: 'tbitem17_gensalesorder', caption: '创建订单','isShowCaption':true,'isShowIcon':true, tooltip: '创建订单', iconcls: 'fa fa-plus', icon: '', disabled: false, type: 'DEUIACTION', visabled: true, dataaccaction: '', uiaction: { tag: 'GenSalesOrder', target: 'SINGLEKEY' }, class: '' },
tbitem17_close_sep: { name: 'tbitem17_close_sep', type: 'SEPERATOR', visabled: true, dataaccaction: '', uiaction: { } },
tbitem17_close: { name: 'tbitem17_close', caption: '结束报价单','isShowCaption':true,'isShowIcon':true, tooltip: '结束报价单', iconcls: 'fa fa-close', icon: '', disabled: false, type: 'DEUIACTION', visabled: true, dataaccaction: '', uiaction: { tag: 'Close', target: 'SINGLEKEY' }, class: '' },
tbitem2: { name: 'tbitem2', type: 'SEPERATOR', visabled: true, dataaccaction: '', uiaction: { } },
tbitem12: { name: 'tbitem12', caption: '关闭','isShowCaption':true,'isShowIcon':true, tooltip: '关闭', iconcls: 'fa fa-sign-out', icon: '', disabled: false, type: 'DEUIACTION', visabled: true, dataaccaction: '', uiaction: { tag: 'Exit', target: '' }, class: '' },
......@@ -150,12 +152,15 @@ export class QuoteInfoBase extends TabExpViewBase {
if (Object.is($event.tag, 'tbitem17_active')) {
this.toolbar_tbitem17_active_click(null, '', $event2);
}
if (Object.is($event.tag, 'tbitem17_close')) {
this.toolbar_tbitem17_close_click(null, '', $event2);
if (Object.is($event.tag, 'tbitem17_win')) {
this.toolbar_tbitem17_win_click(null, '', $event2);
}
if (Object.is($event.tag, 'tbitem17_gensalesorder')) {
this.toolbar_tbitem17_gensalesorder_click(null, '', $event2);
}
if (Object.is($event.tag, 'tbitem17_close')) {
this.toolbar_tbitem17_close_click(null, '', $event2);
}
if (Object.is($event.tag, 'tbitem12')) {
this.toolbar_tbitem12_click(null, '', $event2);
}
......@@ -197,7 +202,7 @@ export class QuoteInfoBase extends TabExpViewBase {
* @param {*} [$event]
* @memberof
*/
public toolbar_tbitem17_close_click(params: any = {}, tag?: any, $event?: any) {
public toolbar_tbitem17_win_click(params: any = {}, tag?: any, $event?: any) {
// 参数
// 取数
let datas: any[] = [];
......@@ -214,7 +219,7 @@ export class QuoteInfoBase extends TabExpViewBase {
}
// 界面行为
const curUIService:QuoteUIService = new QuoteUIService();
curUIService.Quote_Close(datas,contextJO, paramJO, $event, xData,this,"Quote");
curUIService.Quote_Win(datas,contextJO, paramJO, $event, xData,this,"Quote");
}
/**
......@@ -245,6 +250,34 @@ export class QuoteInfoBase extends TabExpViewBase {
curUIService.Quote_GenSalesOrder(datas,contextJO, paramJO, $event, xData,this,"Quote");
}
/**
* 逻辑事件
*
* @param {*} [params={}]
* @param {*} [tag]
* @param {*} [$event]
* @memberof
*/
public toolbar_tbitem17_close_click(params: any = {}, tag?: any, $event?: any) {
// 参数
// 取数
let datas: any[] = [];
let xData: any = null;
// _this 指向容器对象
const _this: any = this;
let paramJO:any = {};
let contextJO:any = {};
if (_this.getDatas && _this.getDatas instanceof Function) {
datas = [..._this.getDatas()];
}
if(params){
datas = [params];
}
// 界面行为
const curUIService:QuoteUIService = new QuoteUIService();
curUIService.Quote_Close(datas,contextJO, paramJO, $event, xData,this,"Quote");
}
/**
* 逻辑事件
*
......
import QuoteService from '@/service/quote/quote-service';
import { Verify } from '@/utils/verify/verify';
/**
* 结束报价单
*
* @export
* @class ClosedLogicBase
*/
export default class ClosedLogicBase {
/**
* 名称
*
* @memberof ClosedLogicBase
*/
private name:string ="Closed";
/**
* 唯一标识
*
* @memberof ClosedLogicBase
*/
private id:string = "E0590DAA-55CC-42A5-AB3B-344B49B806F1";
/**
* 默认参数名称
*
* @memberof ClosedLogicBase
*/
private defaultParamName:string = "Default";
/**
* 参数集合
*
* @memberof ClosedLogicBase
*/
private paramsMap:Map<string,any> = new Map();
/**
* Creates an instance of ClosedLogicBase.
*
* @param {*} [opts={}]
* @memberof ClosedLogicBase
*/
constructor(opts: any = {}) {
this.initParams(opts);
}
/**
* 初始化参数集合
*
* @param {*} [opts={}]
* @memberof ClosedLogicBase
*/
public initParams(opts:any){
this.paramsMap.set('Default',opts);
}
/**
* 计算0节点结果
*
* @param params 传入参数
*/
public compute0Cond(params:any):boolean{
return true;
}
/**
* 计算1节点结果
*
* @param params 传入参数
*/
public compute1Cond(params:any):boolean{
return true;
}
/**
* 执行逻辑
*
* @param context 应用上下文
* @param params 传入参数
*/
public onExecute(context:any,params:any,isloading:boolean){
return this.executeBegin(context,params,isloading);
}
/**
* 更新报价单
*
* @param context 应用上下文
* @param params 传入参数
*/
private async executeDeaction1(context:any,params:any,isloading:boolean){
// 行为处理节点
let result: any;
let actionParam:any = this.paramsMap.get('Default');
const targetService:QuoteService = new QuoteService();
if (targetService['Update'] && targetService['Update'] instanceof Function) {
result = await targetService['Update'](actionParam.context,actionParam.data, false);
}
if(result && result.status == 200){
Object.assign(actionParam.data,result.data);
return this.paramsMap.get(this.defaultParamName).data;
}
}
/**
* 准备参数
*
* @param context 应用上下文
* @param params 传入参数
*/
private async executePrepareparam1(context:any,params:any,isloading:boolean){
// 准备参数节点
let tempDstParam0Context:any = this.paramsMap.get('Default').context?this.paramsMap.get('Default').context:{};
let tempDstParam0Data:any = this.paramsMap.get('Default').data?this.paramsMap.get('Default').data:{};
Object.assign(tempDstParam0Data,{statecode:"3"});
this.paramsMap.set('Default',{data:tempDstParam0Data,context:tempDstParam0Context});
if(this.compute0Cond(params)){
return this.executeDeaction1(context,params,isloading);
}
}
/**
* 开始
*
* @param params 传入参数
*/
private async executeBegin(context:any,params:any,isloading:boolean){
//开始节点
if(this.compute1Cond(params)){
return this.executePrepareparam1(context,params,isloading);
}
}
}
\ No newline at end of file
import { Http,Util } from '@/utils';
import ClosedLogicBase from './closed-logic-base';
/**
* 结束报价单
*
* @export
* @class ClosedLogic
*/
export default class ClosedLogic extends ClosedLogicBase{
/**
* Creates an instance of ClosedLogic
*
* @param {*} [opts={}]
* @memberof ClosedLogic
*/
constructor(opts: any = {}) {
super(opts);
}
}
\ No newline at end of file
import QuoteService from '@/service/quote/quote-service';
import { Verify } from '@/utils/verify/verify';
/**
* 赢单
*
* @export
* @class WinLogicBase
*/
export default class WinLogicBase {
/**
* 名称
*
* @memberof WinLogicBase
*/
private name:string ="Win";
/**
* 唯一标识
*
* @memberof WinLogicBase
*/
private id:string = "C5594795-F86B-4380-B2B3-740C65AC9510";
/**
* 默认参数名称
*
* @memberof WinLogicBase
*/
private defaultParamName:string = "Default";
/**
* 参数集合
*
* @memberof WinLogicBase
*/
private paramsMap:Map<string,any> = new Map();
/**
* Creates an instance of WinLogicBase.
*
* @param {*} [opts={}]
* @memberof WinLogicBase
*/
constructor(opts: any = {}) {
this.initParams(opts);
}
/**
* 初始化参数集合
*
* @param {*} [opts={}]
* @memberof WinLogicBase
*/
public initParams(opts:any){
this.paramsMap.set('Default',opts);
}
/**
* 计算0节点结果
*
* @param params 传入参数
*/
public compute0Cond(params:any):boolean{
return true;
}
/**
* 计算1节点结果
*
* @param params 传入参数
*/
public compute1Cond(params:any):boolean{
return true;
}
/**
* 执行逻辑
*
* @param context 应用上下文
* @param params 传入参数
*/
public onExecute(context:any,params:any,isloading:boolean){
return this.executeBegin(context,params,isloading);
}
/**
* 更新报价单
*
* @param context 应用上下文
* @param params 传入参数
*/
private async executeDeaction1(context:any,params:any,isloading:boolean){
// 行为处理节点
let result: any;
let actionParam:any = this.paramsMap.get('Default');
const targetService:QuoteService = new QuoteService();
if (targetService['Update'] && targetService['Update'] instanceof Function) {
result = await targetService['Update'](actionParam.context,actionParam.data, false);
}
if(result && result.status == 200){
Object.assign(actionParam.data,result.data);
return this.paramsMap.get(this.defaultParamName).data;
}
}
/**
* 准备参数
*
* @param context 应用上下文
* @param params 传入参数
*/
private async executePrepareparam1(context:any,params:any,isloading:boolean){
// 准备参数节点
let tempDstParam0Context:any = this.paramsMap.get('Default').context?this.paramsMap.get('Default').context:{};
let tempDstParam0Data:any = this.paramsMap.get('Default').data?this.paramsMap.get('Default').data:{};
Object.assign(tempDstParam0Data,{statecode:"2"});
this.paramsMap.set('Default',{data:tempDstParam0Data,context:tempDstParam0Context});
if(this.compute0Cond(params)){
return this.executeDeaction1(context,params,isloading);
}
}
/**
* 开始
*
* @param params 传入参数
*/
private async executeBegin(context:any,params:any,isloading:boolean){
//开始节点
if(this.compute1Cond(params)){
return this.executePrepareparam1(context,params,isloading);
}
}
}
\ No newline at end of file
import { Http,Util } from '@/utils';
import WinLogicBase from './win-logic-base';
/**
* 赢单
*
* @export
* @class WinLogic
*/
export default class WinLogic extends WinLogicBase{
/**
* Creates an instance of WinLogic
*
* @param {*} [opts={}]
* @memberof WinLogic
*/
constructor(opts: any = {}) {
super(opts);
}
}
\ No newline at end of file
......@@ -97,6 +97,74 @@ export default class QuoteUIServiceBase extends UIService {
public initDeMainStateMap(){
}
/**
* 赢单
*
* @param {any[]} args 当前数据
* @param {any} context 行为附加上下文
* @param {*} [params] 附加参数
* @param {*} [$event] 事件源
* @param {*} [xData] 执行行为所需当前部件
* @param {*} [actionContext] 执行行为上下文
* @param {*} [srfParentDeName] 父实体名称
* @returns {Promise<any>}
*/
public async Quote_Win(args: any[],context:any = {}, params:any = {}, $event?: any, xData?: any,actionContext?: any,srfParentDeName?:string){
let data: any = {};
let parentContext:any = {};
let parentViewParam:any = {};
const _this: any = actionContext;
const _args: any[] = Util.deepCopy(args);
const actionTarget: string | null = 'SINGLEKEY';
Object.assign(context, { quote: '%quote%' });
Object.assign(params, { quoteid: '%quote%' });
Object.assign(params, { quotename: '%quotename%' });
if(_this.context){
parentContext = _this.context;
}
if(_this.viewparams){
parentViewParam = _this.viewparams;
}
context = UIActionTool.handleContextParam(actionTarget,_args,parentContext,parentViewParam,context);
data = UIActionTool.handleActionParam(actionTarget,_args,parentContext,parentViewParam,params);
context = Object.assign({},actionContext.context,context);
let parentObj:any = {srfparentdename:srfParentDeName?srfParentDeName:null,srfparentkey:srfParentDeName?context[srfParentDeName.toLowerCase()]:null};
Object.assign(data,parentObj);
Object.assign(context,parentObj);
// 直接调实体服务需要转换的数据
if(context && context.srfsessionid){
context.srfsessionkey = context.srfsessionid;
delete context.srfsessionid;
}
actionContext.closeView(null);
const backend = () => {
const curService:QuoteService = new QuoteService();
curService.Win(context,data, true).then((response: any) => {
if (!response || response.status !== 200) {
actionContext.$Notice.error({ title: '错误', desc: response.message });
return;
}
actionContext.$Notice.success({ title: '成功', desc: '赢单成功!' });
const _this: any = actionContext;
if (xData && xData.refresh && xData.refresh instanceof Function) {
xData.refresh(args);
}
return response;
}).catch((response: any) => {
if (!response || !response.status || !response.data) {
actionContext.$Notice.error({ title: '错误', desc: '系统异常!' });
return;
}
if (response.status === 401) {
return;
}
return response;
});
};
backend();
}
/**
* 打开主信息界面
*
......
......@@ -98,47 +98,47 @@ export class Edit_AccountInfoEditFormBase extends EditFormControlBase {
* @memberof Edit_AccountInfoEditFormBase
*/
public detailsModel: any = {
group1: new FormGroupPanelModel({ caption: '客户基本信息', detailType: 'GROUPPANEL', name: 'group1', visible: true, isShowCaption: false, form: this, showMoreMode: 0, uiActionGroup: { caption: '', langbase: 'entities.account.edit_accountinfo_form', extractMode: 'ITEM', details: [] } }),
formpage1: new FormPageModel({ caption: '基本信息', detailType: 'FORMPAGE', name: 'formpage1', visible: true, isShowCaption: true, form: this }),
srfupdatedate: new FormItemModel({ caption: '更新时间', detailType: 'FORMITEM', name: 'srfupdatedate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
srforikey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srforikey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfkey: new FormItemModel({ caption: '客户', detailType: 'FORMITEM', name: 'srfkey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfmajortext: new FormItemModel({ caption: '客户名称', detailType: 'FORMITEM', name: 'srfmajortext', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srftempmode: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srftempmode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfuf: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfuf', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfdeid: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfdeid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfsourcekey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfsourcekey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
accountname: new FormItemModel({ caption: '客户名称', detailType: 'FORMITEM', name: 'accountname', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
telephone1: new FormItemModel({ caption: '主要电话', detailType: 'FORMITEM', name: 'telephone1', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
fax: new FormItemModel({ caption: '传真', detailType: 'FORMITEM', name: 'fax', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
websiteurl: new FormItemModel({ caption: '网站', detailType: 'FORMITEM', name: 'websiteurl', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
parentaccountname: new FormItemModel({ caption: '上级客户', detailType: 'FORMITEM', name: 'parentaccountname', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
tickersymbol: new FormItemModel({ caption: '股票代号', detailType: 'FORMITEM', name: 'tickersymbol', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
customertypecode: new FormItemModel({ caption: '关系类型', detailType: 'FORMITEM', name: 'customertypecode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
defaultpricelevelname: new FormItemModel({ caption: '价目表', detailType: 'FORMITEM', name: 'defaultpricelevelname', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
defaultpricelevelid: new FormItemModel({ caption: '价目表', detailType: 'FORMITEM', name: 'defaultpricelevelid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
parentaccountid: new FormItemModel({ caption: '上级单位', detailType: 'FORMITEM', name: 'parentaccountid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
accountid: new FormItemModel({ caption: '客户', detailType: 'FORMITEM', name: 'accountid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
group1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
formpage1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfupdatedate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srforikey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfkey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfmajortext: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srftempmode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfuf: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfdeid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfsourcekey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
accountname: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
telephone1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
fax: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
websiteurl: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
parentaccountname: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
tickersymbol: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
customertypecode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
defaultpricelevelname: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
defaultpricelevelid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
parentaccountid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
accountid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
};
}
\ No newline at end of file
......@@ -91,41 +91,41 @@ export class Edit_AddressEditFormBase extends EditFormControlBase {
* @memberof Edit_AddressEditFormBase
*/
public detailsModel: any = {
group1: new FormGroupPanelModel({ caption: '客户基本信息', detailType: 'GROUPPANEL', name: 'group1', visible: true, isShowCaption: false, form: this, showMoreMode: 0, uiActionGroup: { caption: '', langbase: 'entities.account.edit_address_form', extractMode: 'ITEM', details: [] } }),
formpage1: new FormPageModel({ caption: '基本信息', detailType: 'FORMPAGE', name: 'formpage1', visible: true, isShowCaption: true, form: this }),
srfupdatedate: new FormItemModel({ caption: '更新时间', detailType: 'FORMITEM', name: 'srfupdatedate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
srforikey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srforikey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfkey: new FormItemModel({ caption: '客户', detailType: 'FORMITEM', name: 'srfkey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfmajortext: new FormItemModel({ caption: '客户名称', detailType: 'FORMITEM', name: 'srfmajortext', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srftempmode: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srftempmode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfuf: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfuf', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfdeid: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfdeid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfsourcekey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfsourcekey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
address1_addressid: new FormItemModel({ caption: '地址 1: ID', detailType: 'FORMITEM', name: 'address1_addressid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
address1_name: new FormItemModel({ caption: '地址 1: 名称', detailType: 'FORMITEM', name: 'address1_name', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
address1_addresstypecode: new FormItemModel({ caption: '地址 1: 地址类型', detailType: 'FORMITEM', name: 'address1_addresstypecode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
address1_country: new FormItemModel({ caption: '地址 1: 国家/地区', detailType: 'FORMITEM', name: 'address1_country', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
address1_stateorprovince: new FormItemModel({ caption: '地址 1: 省/市/自治区', detailType: 'FORMITEM', name: 'address1_stateorprovince', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
address1_city: new FormItemModel({ caption: '地址 1: 市/县', detailType: 'FORMITEM', name: 'address1_city', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
address1_county: new FormItemModel({ caption: '地址 1: 县', detailType: 'FORMITEM', name: 'address1_county', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
accountid: new FormItemModel({ caption: '客户', detailType: 'FORMITEM', name: 'accountid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
group1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
formpage1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfupdatedate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srforikey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfkey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfmajortext: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srftempmode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfuf: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfdeid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfsourcekey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
address1_addressid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
address1_name: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
address1_addresstypecode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
address1_country: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
address1_stateorprovince: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
address1_city: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
address1_county: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
accountid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
};
}
\ No newline at end of file
......@@ -94,39 +94,39 @@ export class Edit_DataPanelEditFormBase extends EditFormControlBase {
* @memberof Edit_DataPanelEditFormBase
*/
public detailsModel: any = {
group1: new FormGroupPanelModel({ caption: '客户基本信息', detailType: 'GROUPPANEL', name: 'group1', visible: true, isShowCaption: false, form: this, showMoreMode: 0, uiActionGroup: { caption: '', langbase: 'entities.account.edit_datapanel_form', extractMode: 'ITEM', details: [] } }),
formpage1: new FormPageModel({ caption: '基本信息', detailType: 'FORMPAGE', name: 'formpage1', visible: true, isShowCaption: true, form: this }),
srfupdatedate: new FormItemModel({ caption: '更新时间', detailType: 'FORMITEM', name: 'srfupdatedate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
srforikey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srforikey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfkey: new FormItemModel({ caption: '客户', detailType: 'FORMITEM', name: 'srfkey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfmajortext: new FormItemModel({ caption: '客户名称', detailType: 'FORMITEM', name: 'srfmajortext', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srftempmode: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srftempmode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfuf: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfuf', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfdeid: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfdeid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfsourcekey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfsourcekey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
industrycode: new FormItemModel({ caption: '行业', detailType: 'FORMITEM', name: 'industrycode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
telephone1: new FormItemModel({ caption: '主要电话', detailType: 'FORMITEM', name: 'telephone1', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
revenue: new FormItemModel({ caption: '年收入', detailType: 'FORMITEM', name: 'revenue', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
numberofemployees: new FormItemModel({ caption: '员工人数', detailType: 'FORMITEM', name: 'numberofemployees', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
statuscode: new FormItemModel({ caption: '状态描述', detailType: 'FORMITEM', name: 'statuscode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
owneridyominame: new FormItemModel({ caption: '负责人', detailType: 'FORMITEM', name: 'owneridyominame', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
accountid: new FormItemModel({ caption: '客户', detailType: 'FORMITEM', name: 'accountid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
group1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
formpage1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfupdatedate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srforikey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfkey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfmajortext: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srftempmode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfuf: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfdeid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfsourcekey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
industrycode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
telephone1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
revenue: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
numberofemployees: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
statuscode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
owneridyominame: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
accountid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
};
}
\ No newline at end of file
......@@ -88,35 +88,35 @@ export class Edit_IntroductionEditFormBase extends EditFormControlBase {
* @memberof Edit_IntroductionEditFormBase
*/
public detailsModel: any = {
group1: new FormGroupPanelModel({ caption: '客户基本信息', detailType: 'GROUPPANEL', name: 'group1', visible: true, isShowCaption: false, form: this, showMoreMode: 0, uiActionGroup: { caption: '', langbase: 'entities.account.edit_introduction_form', extractMode: 'ITEM', details: [] } }),
formpage1: new FormPageModel({ caption: '基本信息', detailType: 'FORMPAGE', name: 'formpage1', visible: true, isShowCaption: true, form: this }),
srfupdatedate: new FormItemModel({ caption: '更新时间', detailType: 'FORMITEM', name: 'srfupdatedate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
srforikey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srforikey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfkey: new FormItemModel({ caption: '客户', detailType: 'FORMITEM', name: 'srfkey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfmajortext: new FormItemModel({ caption: '客户名称', detailType: 'FORMITEM', name: 'srfmajortext', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srftempmode: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srftempmode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfuf: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfuf', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfdeid: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfdeid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfsourcekey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfsourcekey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
industrycode: new FormItemModel({ caption: '行业', detailType: 'FORMITEM', name: 'industrycode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
sic: new FormItemModel({ caption: '行业编码', detailType: 'FORMITEM', name: 'sic', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
ownershipcode: new FormItemModel({ caption: '所有权', detailType: 'FORMITEM', name: 'ownershipcode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
description: new FormItemModel({ caption: '说明', detailType: 'FORMITEM', name: 'description', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
accountid: new FormItemModel({ caption: '客户', detailType: 'FORMITEM', name: 'accountid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
group1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
formpage1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfupdatedate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srforikey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfkey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfmajortext: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srftempmode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfuf: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfdeid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfsourcekey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
industrycode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
sic: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
ownershipcode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
description: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
accountid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
};
}
\ No newline at end of file
......@@ -119,44 +119,44 @@ export class Info_DataPanelEditFormBase extends EditFormControlBase {
* @memberof Info_DataPanelEditFormBase
*/
public detailsModel: any = {
button1: new FormButtonModel({ caption: '头部信息编辑', detailType: 'BUTTON', name: 'button1', visible: true, isShowCaption: false, form: this, uiaction: { type: 'DEUIACTION', tag: 'Edit_DataPanel', actiontarget: 'SINGLEKEY' } }),
grouppanel1: new FormGroupPanelModel({ caption: '分组面板', detailType: 'GROUPPANEL', name: 'grouppanel1', visible: true, isShowCaption: false, form: this, showMoreMode: 0, uiActionGroup: { caption: '', langbase: 'entities.account.info_datapanel_form', extractMode: 'ITEM', details: [] } }),
group1: new FormGroupPanelModel({ caption: '客户基本信息', detailType: 'GROUPPANEL', name: 'group1', visible: true, isShowCaption: false, form: this, showMoreMode: 0, uiActionGroup: { caption: '', langbase: 'entities.account.info_datapanel_form', extractMode: 'ITEM', details: [] } }),
formpage1: new FormPageModel({ caption: '基本信息', detailType: 'FORMPAGE', name: 'formpage1', visible: true, isShowCaption: true, form: this }),
srfupdatedate: new FormItemModel({ caption: '更新时间', detailType: 'FORMITEM', name: 'srfupdatedate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
srforikey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srforikey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfkey: new FormItemModel({ caption: '客户', detailType: 'FORMITEM', name: 'srfkey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfmajortext: new FormItemModel({ caption: '客户名称', detailType: 'FORMITEM', name: 'srfmajortext', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srftempmode: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srftempmode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfuf: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfuf', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfdeid: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfdeid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfsourcekey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfsourcekey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
accountid: new FormItemModel({ caption: '客户', detailType: 'FORMITEM', name: 'accountid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
industrycode: new FormItemModel({ caption: '行业', detailType: 'FORMITEM', name: 'industrycode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
telephone1: new FormItemModel({ caption: '主要电话', detailType: 'FORMITEM', name: 'telephone1', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
revenue: new FormItemModel({ caption: '年收入', detailType: 'FORMITEM', name: 'revenue', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
numberofemployees: new FormItemModel({ caption: '员工人数', detailType: 'FORMITEM', name: 'numberofemployees', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
statuscode: new FormItemModel({ caption: '状态描述', detailType: 'FORMITEM', name: 'statuscode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
owneridyominame: new FormItemModel({ caption: '负责人', detailType: 'FORMITEM', name: 'owneridyominame', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
button1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
grouppanel1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
group1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
formpage1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfupdatedate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srforikey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfkey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfmajortext: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srftempmode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfuf: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfdeid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfsourcekey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
accountid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
industrycode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
telephone1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
revenue: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
numberofemployees: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
statuscode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
owneridyominame: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
};
/**
......
......@@ -98,47 +98,47 @@ export class QuickCreateEditFormBase extends EditFormControlBase {
* @memberof QuickCreateEditFormBase
*/
public detailsModel: any = {
group1: new FormGroupPanelModel({ caption: '客户基本信息', detailType: 'GROUPPANEL', name: 'group1', visible: true, isShowCaption: false, form: this, showMoreMode: 0, uiActionGroup: { caption: '', langbase: 'entities.account.quickcreate_form', extractMode: 'ITEM', details: [] } }),
formpage1: new FormPageModel({ caption: '基本信息', detailType: 'FORMPAGE', name: 'formpage1', visible: true, isShowCaption: true, form: this }),
srfupdatedate: new FormItemModel({ caption: '更新时间', detailType: 'FORMITEM', name: 'srfupdatedate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
srforikey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srforikey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfkey: new FormItemModel({ caption: '客户', detailType: 'FORMITEM', name: 'srfkey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfmajortext: new FormItemModel({ caption: '客户名称', detailType: 'FORMITEM', name: 'srfmajortext', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srftempmode: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srftempmode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfuf: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfuf', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfdeid: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfdeid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfsourcekey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfsourcekey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
accountname: new FormItemModel({ caption: '客户名称', detailType: 'FORMITEM', name: 'accountname', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
telephone1: new FormItemModel({ caption: '主要电话', detailType: 'FORMITEM', name: 'telephone1', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
fax: new FormItemModel({ caption: '传真', detailType: 'FORMITEM', name: 'fax', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
websiteurl: new FormItemModel({ caption: '网站', detailType: 'FORMITEM', name: 'websiteurl', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
parentaccountname: new FormItemModel({ caption: '上级客户', detailType: 'FORMITEM', name: 'parentaccountname', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
tickersymbol: new FormItemModel({ caption: '股票代号', detailType: 'FORMITEM', name: 'tickersymbol', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
customertypecode: new FormItemModel({ caption: '关系类型', detailType: 'FORMITEM', name: 'customertypecode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
defaultpricelevelname: new FormItemModel({ caption: '价目表', detailType: 'FORMITEM', name: 'defaultpricelevelname', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
defaultpricelevelid: new FormItemModel({ caption: '价目表', detailType: 'FORMITEM', name: 'defaultpricelevelid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
parentaccountid: new FormItemModel({ caption: '上级单位', detailType: 'FORMITEM', name: 'parentaccountid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
accountid: new FormItemModel({ caption: '客户', detailType: 'FORMITEM', name: 'accountid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
group1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
formpage1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfupdatedate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srforikey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfkey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfmajortext: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srftempmode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfuf: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfdeid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfsourcekey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
accountname: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
telephone1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
fax: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
websiteurl: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
parentaccountname: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
tickersymbol: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
customertypecode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
defaultpricelevelname: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
defaultpricelevelid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
parentaccountid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
accountid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
};
}
\ No newline at end of file
......@@ -93,42 +93,42 @@ export class MainEditFormBase extends EditFormControlBase {
* @memberof MainEditFormBase
*/
public detailsModel: any = {
group1: new FormGroupPanelModel({ caption: 'activitypointer基本信息', detailType: 'GROUPPANEL', name: 'group1', visible: true, isShowCaption: true, form: this, showMoreMode: 0, uiActionGroup: { caption: '', langbase: 'entities.activitypointer.main_form', extractMode: 'ITEM', details: [] } }),
formpage1: new FormPageModel({ caption: '基本信息', detailType: 'FORMPAGE', name: 'formpage1', visible: true, isShowCaption: true, form: this }),
group2: new FormGroupPanelModel({ caption: '操作信息', detailType: 'GROUPPANEL', name: 'group2', visible: true, isShowCaption: true, form: this, showMoreMode: 0, uiActionGroup: { caption: '', langbase: 'entities.activitypointer.main_form', extractMode: 'ITEM', details: [] } }),
formpage2: new FormPageModel({ caption: '其它', detailType: 'FORMPAGE', name: 'formpage2', visible: true, isShowCaption: true, form: this }),
srfupdatedate: new FormItemModel({ caption: '更新时间', detailType: 'FORMITEM', name: 'srfupdatedate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
srforikey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srforikey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfkey: new FormItemModel({ caption: '活动', detailType: 'FORMITEM', name: 'srfkey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfmajortext: new FormItemModel({ caption: '主题', detailType: 'FORMITEM', name: 'srfmajortext', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srftempmode: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srftempmode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfuf: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfuf', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfdeid: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfdeid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfsourcekey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfsourcekey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
subject: new FormItemModel({ caption: '主题', detailType: 'FORMITEM', name: 'subject', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
createman: new FormItemModel({ caption: '建立人', detailType: 'FORMITEM', name: 'createman', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
createdate: new FormItemModel({ caption: '建立时间', detailType: 'FORMITEM', name: 'createdate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
updateman: new FormItemModel({ caption: '更新人', detailType: 'FORMITEM', name: 'updateman', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
updatedate: new FormItemModel({ caption: '更新时间', detailType: 'FORMITEM', name: 'updatedate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
activityid: new FormItemModel({ caption: '活动', detailType: 'FORMITEM', name: 'activityid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
group1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
formpage1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
group2: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
formpage2: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfupdatedate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srforikey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfkey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfmajortext: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srftempmode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfuf: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfdeid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfsourcekey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
subject: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
createman: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
createdate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
updateman: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
updatedate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
activityid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
form: new FormTabPanelModel({ caption: 'form', detailType: 'TABPANEL', name: 'form', visible: true, isShowCaption: true, form: this, tabPages: [{ name: 'formpage1', index: 0, visible: true }, { name: 'formpage2', index: 1, visible: true }] }),
};
}
\ No newline at end of file
......@@ -93,42 +93,42 @@ export class MainEditFormBase extends EditFormControlBase {
* @memberof MainEditFormBase
*/
public detailsModel: any = {
group1: new FormGroupPanelModel({ caption: 'appointment基本信息', detailType: 'GROUPPANEL', name: 'group1', visible: true, isShowCaption: true, form: this, showMoreMode: 0, uiActionGroup: { caption: '', langbase: 'entities.appointment.main_form', extractMode: 'ITEM', details: [] } }),
formpage1: new FormPageModel({ caption: '基本信息', detailType: 'FORMPAGE', name: 'formpage1', visible: true, isShowCaption: true, form: this }),
group2: new FormGroupPanelModel({ caption: '操作信息', detailType: 'GROUPPANEL', name: 'group2', visible: true, isShowCaption: true, form: this, showMoreMode: 0, uiActionGroup: { caption: '', langbase: 'entities.appointment.main_form', extractMode: 'ITEM', details: [] } }),
formpage2: new FormPageModel({ caption: '其它', detailType: 'FORMPAGE', name: 'formpage2', visible: true, isShowCaption: true, form: this }),
srfupdatedate: new FormItemModel({ caption: '更新时间', detailType: 'FORMITEM', name: 'srfupdatedate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
srforikey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srforikey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfkey: new FormItemModel({ caption: '约会', detailType: 'FORMITEM', name: 'srfkey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfmajortext: new FormItemModel({ caption: '主题', detailType: 'FORMITEM', name: 'srfmajortext', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srftempmode: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srftempmode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfuf: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfuf', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfdeid: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfdeid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfsourcekey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfsourcekey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
subject: new FormItemModel({ caption: '主题', detailType: 'FORMITEM', name: 'subject', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
createman: new FormItemModel({ caption: '建立人', detailType: 'FORMITEM', name: 'createman', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
createdate: new FormItemModel({ caption: '建立时间', detailType: 'FORMITEM', name: 'createdate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
updateman: new FormItemModel({ caption: '更新人', detailType: 'FORMITEM', name: 'updateman', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
updatedate: new FormItemModel({ caption: '更新时间', detailType: 'FORMITEM', name: 'updatedate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
activityid: new FormItemModel({ caption: '约会', detailType: 'FORMITEM', name: 'activityid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
group1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
formpage1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
group2: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
formpage2: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfupdatedate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srforikey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfkey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfmajortext: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srftempmode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfuf: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfdeid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfsourcekey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
subject: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
createman: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
createdate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
updateman: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
updatedate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
activityid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
form: new FormTabPanelModel({ caption: 'form', detailType: 'TABPANEL', name: 'form', visible: true, isShowCaption: true, form: this, tabPages: [{ name: 'formpage1', index: 0, visible: true }, { name: 'formpage2', index: 1, visible: true }] }),
};
}
\ No newline at end of file
......@@ -89,29 +89,29 @@ export class QuickCreateEditFormBase extends EditFormControlBase {
* @memberof QuickCreateEditFormBase
*/
public detailsModel: any = {
group1: new FormGroupPanelModel({ caption: 'appointment基本信息', detailType: 'GROUPPANEL', name: 'group1', visible: true, isShowCaption: true, form: this, showMoreMode: 0, uiActionGroup: { caption: '', langbase: 'entities.appointment.quickcreate_form', extractMode: 'ITEM', details: [] } }),
formpage1: new FormPageModel({ caption: '基本信息', detailType: 'FORMPAGE', name: 'formpage1', visible: true, isShowCaption: true, form: this }),
srfupdatedate: new FormItemModel({ caption: '更新时间', detailType: 'FORMITEM', name: 'srfupdatedate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
srforikey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srforikey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfkey: new FormItemModel({ caption: '约会', detailType: 'FORMITEM', name: 'srfkey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfmajortext: new FormItemModel({ caption: '主题', detailType: 'FORMITEM', name: 'srfmajortext', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srftempmode: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srftempmode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfuf: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfuf', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfdeid: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfdeid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfsourcekey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfsourcekey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
subject: new FormItemModel({ caption: '主题', detailType: 'FORMITEM', name: 'subject', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
activityid: new FormItemModel({ caption: '约会', detailType: 'FORMITEM', name: 'activityid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
group1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
formpage1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfupdatedate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srforikey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfkey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfmajortext: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srftempmode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfuf: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfdeid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfsourcekey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
subject: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
activityid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
};
}
\ No newline at end of file
......@@ -93,42 +93,42 @@ export class MainEditFormBase extends EditFormControlBase {
* @memberof MainEditFormBase
*/
public detailsModel: any = {
group1: new FormGroupPanelModel({ caption: 'campaignactivity基本信息', detailType: 'GROUPPANEL', name: 'group1', visible: true, isShowCaption: true, form: this, showMoreMode: 0, uiActionGroup: { caption: '', langbase: 'entities.campaignactivity.main_form', extractMode: 'ITEM', details: [] } }),
formpage1: new FormPageModel({ caption: '基本信息', detailType: 'FORMPAGE', name: 'formpage1', visible: true, isShowCaption: true, form: this }),
group2: new FormGroupPanelModel({ caption: '操作信息', detailType: 'GROUPPANEL', name: 'group2', visible: true, isShowCaption: true, form: this, showMoreMode: 0, uiActionGroup: { caption: '', langbase: 'entities.campaignactivity.main_form', extractMode: 'ITEM', details: [] } }),
formpage2: new FormPageModel({ caption: '其它', detailType: 'FORMPAGE', name: 'formpage2', visible: true, isShowCaption: true, form: this }),
srfupdatedate: new FormItemModel({ caption: '更新时间', detailType: 'FORMITEM', name: 'srfupdatedate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
srforikey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srforikey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfkey: new FormItemModel({ caption: '市场活动项目', detailType: 'FORMITEM', name: 'srfkey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfmajortext: new FormItemModel({ caption: '主题', detailType: 'FORMITEM', name: 'srfmajortext', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srftempmode: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srftempmode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfuf: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfuf', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfdeid: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfdeid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfsourcekey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfsourcekey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
subject: new FormItemModel({ caption: '主题', detailType: 'FORMITEM', name: 'subject', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
createman: new FormItemModel({ caption: '建立人', detailType: 'FORMITEM', name: 'createman', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
createdate: new FormItemModel({ caption: '建立时间', detailType: 'FORMITEM', name: 'createdate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
updateman: new FormItemModel({ caption: '更新人', detailType: 'FORMITEM', name: 'updateman', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
updatedate: new FormItemModel({ caption: '更新时间', detailType: 'FORMITEM', name: 'updatedate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
activityid: new FormItemModel({ caption: '市场活动项目', detailType: 'FORMITEM', name: 'activityid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
group1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
formpage1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
group2: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
formpage2: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfupdatedate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srforikey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfkey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfmajortext: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srftempmode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfuf: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfdeid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfsourcekey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
subject: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
createman: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
createdate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
updateman: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
updatedate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
activityid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
form: new FormTabPanelModel({ caption: 'form', detailType: 'TABPANEL', name: 'form', visible: true, isShowCaption: true, form: this, tabPages: [{ name: 'formpage1', index: 0, visible: true }, { name: 'formpage2', index: 1, visible: true }] }),
};
}
\ No newline at end of file
......@@ -99,50 +99,50 @@ export class QuickCreateEditFormBase extends EditFormControlBase {
* @memberof QuickCreateEditFormBase
*/
public detailsModel: any = {
group1: new FormGroupPanelModel({ caption: 'campaignactivity基本信息', detailType: 'GROUPPANEL', name: 'group1', visible: true, isShowCaption: false, form: this, showMoreMode: 0, uiActionGroup: { caption: '', langbase: 'entities.campaignactivity.quickcreate_form', extractMode: 'ITEM', details: [] } }),
formpage1: new FormPageModel({ caption: '基本信息', detailType: 'FORMPAGE', name: 'formpage1', visible: true, isShowCaption: true, form: this }),
srfupdatedate: new FormItemModel({ caption: '更新时间', detailType: 'FORMITEM', name: 'srfupdatedate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
srforikey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srforikey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfkey: new FormItemModel({ caption: '市场活动项目', detailType: 'FORMITEM', name: 'srfkey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfmajortext: new FormItemModel({ caption: '主题', detailType: 'FORMITEM', name: 'srfmajortext', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srftempmode: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srftempmode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfuf: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfuf', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfdeid: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfdeid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfsourcekey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfsourcekey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
subject: new FormItemModel({ caption: '主题', detailType: 'FORMITEM', name: 'subject', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
category: new FormItemModel({ caption: '类别', detailType: 'FORMITEM', name: 'category', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
channeltypecode: new FormItemModel({ caption: '渠道', detailType: 'FORMITEM', name: 'channeltypecode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
description: new FormItemModel({ caption: '说明', detailType: 'FORMITEM', name: 'description', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
scheduledstart: new FormItemModel({ caption: '计划开始时间', detailType: 'FORMITEM', name: 'scheduledstart', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
scheduledend: new FormItemModel({ caption: '计划结束时间', detailType: 'FORMITEM', name: 'scheduledend', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
actualstart: new FormItemModel({ caption: '实际开始时间', detailType: 'FORMITEM', name: 'actualstart', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
actualend: new FormItemModel({ caption: '实际结束时间', detailType: 'FORMITEM', name: 'actualend', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
budgetedcost: new FormItemModel({ caption: '预算分配', detailType: 'FORMITEM', name: 'budgetedcost', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
actualcost: new FormItemModel({ caption: '实际成本', detailType: 'FORMITEM', name: 'actualcost', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
regardingobjectid: new FormItemModel({ caption: '关于', detailType: 'FORMITEM', name: 'regardingobjectid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
activityid: new FormItemModel({ caption: '市场活动项目', detailType: 'FORMITEM', name: 'activityid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
group1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
formpage1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfupdatedate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srforikey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfkey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfmajortext: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srftempmode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfuf: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfdeid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfsourcekey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
subject: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
category: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
channeltypecode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
description: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
scheduledstart: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
scheduledend: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
actualstart: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
actualend: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
budgetedcost: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
actualcost: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
regardingobjectid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
activityid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
};
/**
......
......@@ -84,32 +84,32 @@ export class MainEditFormBase extends EditFormControlBase {
* @memberof MainEditFormBase
*/
public detailsModel: any = {
group1: new FormGroupPanelModel({ caption: '市场活动-营销列表基本信息', detailType: 'GROUPPANEL', name: 'group1', visible: true, isShowCaption: true, form: this, showMoreMode: 0, uiActionGroup: { caption: '', langbase: 'entities.campaignlist.main_form', extractMode: 'ITEM', details: [] } }),
formpage1: new FormPageModel({ caption: '基本信息', detailType: 'FORMPAGE', name: 'formpage1', visible: true, isShowCaption: true, form: this }),
group2: new FormGroupPanelModel({ caption: '操作信息', detailType: 'GROUPPANEL', name: 'group2', visible: true, isShowCaption: true, form: this, showMoreMode: 0, uiActionGroup: { caption: '', langbase: 'entities.campaignlist.main_form', extractMode: 'ITEM', details: [] } }),
formpage2: new FormPageModel({ caption: '其它', detailType: 'FORMPAGE', name: 'formpage2', visible: true, isShowCaption: true, form: this }),
srfupdatedate: new FormItemModel({ caption: '更新时间', detailType: 'FORMITEM', name: 'srfupdatedate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
srforikey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srforikey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfkey: new FormItemModel({ caption: '关系标识', detailType: 'FORMITEM', name: 'srfkey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfmajortext: new FormItemModel({ caption: '关系名称', detailType: 'FORMITEM', name: 'srfmajortext', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srftempmode: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srftempmode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfuf: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfuf', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfdeid: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfdeid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfsourcekey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfsourcekey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
relationshipsid: new FormItemModel({ caption: '关系标识', detailType: 'FORMITEM', name: 'relationshipsid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
group1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
formpage1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
group2: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
formpage2: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfupdatedate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srforikey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfkey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfmajortext: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srftempmode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfuf: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfdeid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfsourcekey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
relationshipsid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
form: new FormTabPanelModel({ caption: 'form', detailType: 'TABPANEL', name: 'form', visible: true, isShowCaption: true, form: this, tabPages: [{ name: 'formpage1', index: 0, visible: true }, { name: 'formpage2', index: 1, visible: true }] }),
};
}
\ No newline at end of file
......@@ -93,42 +93,42 @@ export class MainEditFormBase extends EditFormControlBase {
* @memberof MainEditFormBase
*/
public detailsModel: any = {
group1: new FormGroupPanelModel({ caption: 'campaignresponse基本信息', detailType: 'GROUPPANEL', name: 'group1', visible: true, isShowCaption: true, form: this, showMoreMode: 0, uiActionGroup: { caption: '', langbase: 'entities.campaignresponse.main_form', extractMode: 'ITEM', details: [] } }),
formpage1: new FormPageModel({ caption: '基本信息', detailType: 'FORMPAGE', name: 'formpage1', visible: true, isShowCaption: true, form: this }),
group2: new FormGroupPanelModel({ caption: '操作信息', detailType: 'GROUPPANEL', name: 'group2', visible: true, isShowCaption: true, form: this, showMoreMode: 0, uiActionGroup: { caption: '', langbase: 'entities.campaignresponse.main_form', extractMode: 'ITEM', details: [] } }),
formpage2: new FormPageModel({ caption: '其它', detailType: 'FORMPAGE', name: 'formpage2', visible: true, isShowCaption: true, form: this }),
srfupdatedate: new FormItemModel({ caption: '更新时间', detailType: 'FORMITEM', name: 'srfupdatedate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
srforikey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srforikey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfkey: new FormItemModel({ caption: '市场活动响应', detailType: 'FORMITEM', name: 'srfkey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfmajortext: new FormItemModel({ caption: '主题', detailType: 'FORMITEM', name: 'srfmajortext', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srftempmode: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srftempmode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfuf: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfuf', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfdeid: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfdeid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfsourcekey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfsourcekey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
subject: new FormItemModel({ caption: '主题', detailType: 'FORMITEM', name: 'subject', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
createman: new FormItemModel({ caption: '建立人', detailType: 'FORMITEM', name: 'createman', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
createdate: new FormItemModel({ caption: '建立时间', detailType: 'FORMITEM', name: 'createdate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
updateman: new FormItemModel({ caption: '更新人', detailType: 'FORMITEM', name: 'updateman', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
updatedate: new FormItemModel({ caption: '更新时间', detailType: 'FORMITEM', name: 'updatedate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
activityid: new FormItemModel({ caption: '市场活动响应', detailType: 'FORMITEM', name: 'activityid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
group1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
formpage1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
group2: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
formpage2: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfupdatedate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srforikey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfkey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfmajortext: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srftempmode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfuf: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfdeid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfsourcekey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
subject: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
createman: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
createdate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
updateman: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
updatedate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
activityid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
form: new FormTabPanelModel({ caption: 'form', detailType: 'TABPANEL', name: 'form', visible: true, isShowCaption: true, form: this, tabPages: [{ name: 'formpage1', index: 0, visible: true }, { name: 'formpage2', index: 1, visible: true }] }),
};
}
\ No newline at end of file
......@@ -90,32 +90,32 @@ export class QuickCreateEditFormBase extends EditFormControlBase {
* @memberof QuickCreateEditFormBase
*/
public detailsModel: any = {
group1: new FormGroupPanelModel({ caption: 'campaignresponse基本信息', detailType: 'GROUPPANEL', name: 'group1', visible: true, isShowCaption: false, form: this, showMoreMode: 0, uiActionGroup: { caption: '', langbase: 'entities.campaignresponse.quickcreate_form', extractMode: 'ITEM', details: [] } }),
formpage1: new FormPageModel({ caption: '基本信息', detailType: 'FORMPAGE', name: 'formpage1', visible: true, isShowCaption: true, form: this }),
srfupdatedate: new FormItemModel({ caption: '更新时间', detailType: 'FORMITEM', name: 'srfupdatedate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
srforikey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srforikey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfkey: new FormItemModel({ caption: '市场活动响应', detailType: 'FORMITEM', name: 'srfkey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfmajortext: new FormItemModel({ caption: '主题', detailType: 'FORMITEM', name: 'srfmajortext', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srftempmode: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srftempmode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfuf: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfuf', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfdeid: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfdeid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfsourcekey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfsourcekey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
subject: new FormItemModel({ caption: '主题', detailType: 'FORMITEM', name: 'subject', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
regardingobjectid: new FormItemModel({ caption: '关于', detailType: 'FORMITEM', name: 'regardingobjectid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
activityid: new FormItemModel({ caption: '市场活动响应', detailType: 'FORMITEM', name: 'activityid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
group1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
formpage1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfupdatedate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srforikey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfkey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfmajortext: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srftempmode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfuf: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfdeid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfsourcekey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
subject: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
regardingobjectid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
activityid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
};
/**
......
......@@ -92,35 +92,35 @@ export class Edit_HeadEditFormBase extends EditFormControlBase {
* @memberof Edit_HeadEditFormBase
*/
public detailsModel: any = {
grouppanel4: new FormGroupPanelModel({ caption: '分组面板', detailType: 'GROUPPANEL', name: 'grouppanel4', visible: true, isShowCaption: false, form: this, showMoreMode: 0, uiActionGroup: { caption: '', langbase: 'entities.campaign.edit_head_form', extractMode: 'ITEM', details: [] } }),
formpage1: new FormPageModel({ caption: '基本信息', detailType: 'FORMPAGE', name: 'formpage1', visible: true, isShowCaption: true, form: this }),
srfupdatedate: new FormItemModel({ caption: '更新时间', detailType: 'FORMITEM', name: 'srfupdatedate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
srforikey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srforikey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfkey: new FormItemModel({ caption: '市场活动', detailType: 'FORMITEM', name: 'srfkey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfmajortext: new FormItemModel({ caption: '活动名称', detailType: 'FORMITEM', name: 'srfmajortext', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srftempmode: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srftempmode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfuf: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfuf', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfdeid: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfdeid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfsourcekey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfsourcekey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
template: new FormItemModel({ caption: '模板', detailType: 'FORMITEM', name: 'template', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
expectedrevenue: new FormItemModel({ caption: '估计收入', detailType: 'FORMITEM', name: 'expectedrevenue', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
statuscode: new FormItemModel({ caption: '状态描述', detailType: 'FORMITEM', name: 'statuscode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
owneridyominame: new FormItemModel({ caption: '负责人', detailType: 'FORMITEM', name: 'owneridyominame', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
campaignid: new FormItemModel({ caption: '市场活动', detailType: 'FORMITEM', name: 'campaignid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
grouppanel4: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
formpage1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfupdatedate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srforikey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfkey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfmajortext: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srftempmode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfuf: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfdeid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfsourcekey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
template: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
expectedrevenue: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
statuscode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
owneridyominame: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
campaignid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
};
}
\ No newline at end of file
......@@ -90,39 +90,39 @@ export class Info_CampaginEditFormBase extends EditFormControlBase {
* @memberof Info_CampaginEditFormBase
*/
public detailsModel: any = {
group1: new FormGroupPanelModel({ caption: '市场活动', detailType: 'GROUPPANEL', name: 'group1', visible: true, isShowCaption: false, form: this, showMoreMode: 0, uiActionGroup: { caption: '', langbase: 'entities.campaign.info_campagin_form', extractMode: 'ITEM', details: [] } }),
formpage1: new FormPageModel({ caption: '基本信息', detailType: 'FORMPAGE', name: 'formpage1', visible: true, isShowCaption: true, form: this }),
srfupdatedate: new FormItemModel({ caption: '更新时间', detailType: 'FORMITEM', name: 'srfupdatedate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
srforikey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srforikey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfkey: new FormItemModel({ caption: '市场活动', detailType: 'FORMITEM', name: 'srfkey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfmajortext: new FormItemModel({ caption: '活动名称', detailType: 'FORMITEM', name: 'srfmajortext', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srftempmode: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srftempmode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfuf: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfuf', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfdeid: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfdeid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfsourcekey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfsourcekey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
campaignname: new FormItemModel({ caption: '活动名称', detailType: 'FORMITEM', name: 'campaignname', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
codename: new FormItemModel({ caption: '活动代码', detailType: 'FORMITEM', name: 'codename', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
transactioncurrencyname: new FormItemModel({ caption: '货币', detailType: 'FORMITEM', name: 'transactioncurrencyname', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
typecode: new FormItemModel({ caption: '活动类型', detailType: 'FORMITEM', name: 'typecode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
expectedresponse: new FormItemModel({ caption: '预期响应百分比', detailType: 'FORMITEM', name: 'expectedresponse', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
objective: new FormItemModel({ caption: '活动内容', detailType: 'FORMITEM', name: 'objective', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
campaignid: new FormItemModel({ caption: '市场活动', detailType: 'FORMITEM', name: 'campaignid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
group1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
formpage1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfupdatedate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srforikey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfkey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfmajortext: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srftempmode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfuf: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfdeid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfsourcekey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
campaignname: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
codename: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
transactioncurrencyname: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
typecode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
expectedresponse: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
objective: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
campaignid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
};
}
\ No newline at end of file
......@@ -88,35 +88,35 @@ export class Info_ManagerEditFormBase extends EditFormControlBase {
* @memberof Info_ManagerEditFormBase
*/
public detailsModel: any = {
group1: new FormGroupPanelModel({ caption: '管理信息', detailType: 'GROUPPANEL', name: 'group1', visible: true, isShowCaption: false, form: this, showMoreMode: 0, uiActionGroup: { caption: '', langbase: 'entities.campaign.info_manager_form', extractMode: 'ITEM', details: [] } }),
formpage1: new FormPageModel({ caption: '基本信息', detailType: 'FORMPAGE', name: 'formpage1', visible: true, isShowCaption: true, form: this }),
srfupdatedate: new FormItemModel({ caption: '更新时间', detailType: 'FORMITEM', name: 'srfupdatedate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
srforikey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srforikey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfkey: new FormItemModel({ caption: '市场活动', detailType: 'FORMITEM', name: 'srfkey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfmajortext: new FormItemModel({ caption: '活动名称', detailType: 'FORMITEM', name: 'srfmajortext', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srftempmode: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srftempmode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfuf: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfuf', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfdeid: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfdeid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfsourcekey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfsourcekey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
budgetedcost: new FormItemModel({ caption: '预算分配', detailType: 'FORMITEM', name: 'budgetedcost', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
othercost: new FormItemModel({ caption: '其他费用', detailType: 'FORMITEM', name: 'othercost', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
totalactualcost: new FormItemModel({ caption: '市场活动总费用', detailType: 'FORMITEM', name: 'totalactualcost', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
owneridyominame: new FormItemModel({ caption: '负责人', detailType: 'FORMITEM', name: 'owneridyominame', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
campaignid: new FormItemModel({ caption: '市场活动', detailType: 'FORMITEM', name: 'campaignid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
group1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
formpage1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfupdatedate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srforikey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfkey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfmajortext: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srftempmode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfuf: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfdeid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfsourcekey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
budgetedcost: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
othercost: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
totalactualcost: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
owneridyominame: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
campaignid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
};
}
\ No newline at end of file
......@@ -88,35 +88,35 @@ export class Info_ScheduleEditFormBase extends EditFormControlBase {
* @memberof Info_ScheduleEditFormBase
*/
public detailsModel: any = {
group1: new FormGroupPanelModel({ caption: '日程安排', detailType: 'GROUPPANEL', name: 'group1', visible: true, isShowCaption: false, form: this, showMoreMode: 0, uiActionGroup: { caption: '', langbase: 'entities.campaign.info_schedule_form', extractMode: 'ITEM', details: [] } }),
formpage1: new FormPageModel({ caption: '基本信息', detailType: 'FORMPAGE', name: 'formpage1', visible: true, isShowCaption: true, form: this }),
srfupdatedate: new FormItemModel({ caption: '更新时间', detailType: 'FORMITEM', name: 'srfupdatedate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
srforikey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srforikey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfkey: new FormItemModel({ caption: '市场活动', detailType: 'FORMITEM', name: 'srfkey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfmajortext: new FormItemModel({ caption: '活动名称', detailType: 'FORMITEM', name: 'srfmajortext', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srftempmode: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srftempmode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfuf: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfuf', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfdeid: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfdeid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfsourcekey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfsourcekey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
proposedstart: new FormItemModel({ caption: '拟定日期', detailType: 'FORMITEM', name: 'proposedstart', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
proposedend: new FormItemModel({ caption: '拟定结束日期', detailType: 'FORMITEM', name: 'proposedend', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
actualstart: new FormItemModel({ caption: '实际开始日期', detailType: 'FORMITEM', name: 'actualstart', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
actualend: new FormItemModel({ caption: '实际结束日期', detailType: 'FORMITEM', name: 'actualend', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
campaignid: new FormItemModel({ caption: '市场活动', detailType: 'FORMITEM', name: 'campaignid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
group1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
formpage1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfupdatedate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srforikey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfkey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfmajortext: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srftempmode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfuf: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfdeid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfsourcekey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
proposedstart: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
proposedend: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
actualstart: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
actualend: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
campaignid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
};
}
\ No newline at end of file
......@@ -98,39 +98,39 @@ export class QuickCreateEditFormBase extends EditFormControlBase {
* @memberof QuickCreateEditFormBase
*/
public detailsModel: any = {
group1: new FormGroupPanelModel({ caption: '市场活动基本信息', detailType: 'GROUPPANEL', name: 'group1', visible: true, isShowCaption: false, form: this, showMoreMode: 0, uiActionGroup: { caption: '', langbase: 'entities.campaign.quickcreate_form', extractMode: 'ITEM', details: [] } }),
formpage1: new FormPageModel({ caption: '基本信息', detailType: 'FORMPAGE', name: 'formpage1', visible: true, isShowCaption: true, form: this }),
srfupdatedate: new FormItemModel({ caption: '更新时间', detailType: 'FORMITEM', name: 'srfupdatedate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
srforikey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srforikey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfkey: new FormItemModel({ caption: '市场活动', detailType: 'FORMITEM', name: 'srfkey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfmajortext: new FormItemModel({ caption: '活动名称', detailType: 'FORMITEM', name: 'srfmajortext', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srftempmode: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srftempmode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfuf: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfuf', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfdeid: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfdeid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfsourcekey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfsourcekey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
campaignname: new FormItemModel({ caption: '活动名称', detailType: 'FORMITEM', name: 'campaignname', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
codename: new FormItemModel({ caption: '活动代码', detailType: 'FORMITEM', name: 'codename', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
transactioncurrencyname: new FormItemModel({ caption: '货币', detailType: 'FORMITEM', name: 'transactioncurrencyname', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
typecode: new FormItemModel({ caption: '活动类型', detailType: 'FORMITEM', name: 'typecode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
expectedresponse: new FormItemModel({ caption: '预期响应', detailType: 'FORMITEM', name: 'expectedresponse', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
transactioncurrencyid: new FormItemModel({ caption: '货币', detailType: 'FORMITEM', name: 'transactioncurrencyid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
campaignid: new FormItemModel({ caption: '市场活动', detailType: 'FORMITEM', name: 'campaignid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
group1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
formpage1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfupdatedate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srforikey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfkey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfmajortext: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srftempmode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfuf: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfdeid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfsourcekey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
campaignname: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
codename: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
transactioncurrencyname: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
typecode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
expectedresponse: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
transactioncurrencyid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
campaignid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
};
}
\ No newline at end of file
......@@ -88,35 +88,35 @@ export class Edit_CompProEditFormBase extends EditFormControlBase {
* @memberof Edit_CompProEditFormBase
*/
public detailsModel: any = {
group1: new FormGroupPanelModel({ caption: '竞争对手产品基本信息', detailType: 'GROUPPANEL', name: 'group1', visible: true, isShowCaption: false, form: this, showMoreMode: 0, uiActionGroup: { caption: '', langbase: 'entities.competitorproduct.edit_comppro_form', extractMode: 'ITEM', details: [] } }),
formpage1: new FormPageModel({ caption: '基本信息', detailType: 'FORMPAGE', name: 'formpage1', visible: true, isShowCaption: true, form: this }),
srfupdatedate: new FormItemModel({ caption: '更新时间', detailType: 'FORMITEM', name: 'srfupdatedate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srforikey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srforikey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfkey: new FormItemModel({ caption: '关系标识', detailType: 'FORMITEM', name: 'srfkey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfmajortext: new FormItemModel({ caption: '关系名称', detailType: 'FORMITEM', name: 'srfmajortext', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srftempmode: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srftempmode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfuf: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfuf', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfdeid: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfdeid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfsourcekey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfsourcekey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
entityid: new FormItemModel({ caption: '竞争对手', detailType: 'FORMITEM', name: 'entityid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
entity2name: new FormItemModel({ caption: '产品', detailType: 'FORMITEM', name: 'entity2name', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
productnumber: new FormItemModel({ caption: '产品ID', detailType: 'FORMITEM', name: 'productnumber', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
entity2id: new FormItemModel({ caption: '产品', detailType: 'FORMITEM', name: 'entity2id', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
relationshipsid: new FormItemModel({ caption: '关系标识', detailType: 'FORMITEM', name: 'relationshipsid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
group1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
formpage1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfupdatedate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srforikey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfkey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfmajortext: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srftempmode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfuf: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfdeid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfsourcekey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
entityid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
entity2name: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
productnumber: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
entity2id: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
relationshipsid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
};
}
\ No newline at end of file
......@@ -87,33 +87,33 @@ export class SalLitCompEditFormBase extends EditFormControlBase {
* @memberof SalLitCompEditFormBase
*/
public detailsModel: any = {
group1: new FormGroupPanelModel({ caption: '竞争对手宣传资料基本信息', detailType: 'GROUPPANEL', name: 'group1', visible: true, isShowCaption: false, form: this, showMoreMode: 0, uiActionGroup: { caption: '', langbase: 'entities.competitorsalesliterature.sallitcomp_form', extractMode: 'ITEM', details: [] } }),
formpage1: new FormPageModel({ caption: '基本信息', detailType: 'FORMPAGE', name: 'formpage1', visible: true, isShowCaption: true, form: this }),
srfupdatedate: new FormItemModel({ caption: '更新时间', detailType: 'FORMITEM', name: 'srfupdatedate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
srforikey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srforikey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfkey: new FormItemModel({ caption: '关系标识', detailType: 'FORMITEM', name: 'srfkey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfmajortext: new FormItemModel({ caption: '关系名称', detailType: 'FORMITEM', name: 'srfmajortext', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srftempmode: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srftempmode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfuf: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfuf', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfdeid: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfdeid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfsourcekey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfsourcekey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
entity2id: new FormItemModel({ caption: '销售宣传资料', detailType: 'FORMITEM', name: 'entity2id', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
entityname: new FormItemModel({ caption: '竞争对手', detailType: 'FORMITEM', name: 'entityname', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
relationshipsid: new FormItemModel({ caption: '关系标识', detailType: 'FORMITEM', name: 'relationshipsid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
entityid: new FormItemModel({ caption: '竞争对手', detailType: 'FORMITEM', name: 'entityid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
group1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
formpage1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfupdatedate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srforikey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfkey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfmajortext: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srftempmode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfuf: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfdeid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfsourcekey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
entity2id: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
entityname: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
relationshipsid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
entityid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
};
}
\ No newline at end of file
......@@ -86,31 +86,31 @@ export class DataPanelEditFormBase extends EditFormControlBase {
* @memberof DataPanelEditFormBase
*/
public detailsModel: any = {
group1: new FormGroupPanelModel({ caption: '竞争对手基本信息', detailType: 'GROUPPANEL', name: 'group1', visible: true, isShowCaption: false, form: this, showMoreMode: 0, uiActionGroup: { caption: '', langbase: 'entities.competitor.datapanel_form', extractMode: 'ITEM', details: [] } }),
formpage1: new FormPageModel({ caption: '基本信息', detailType: 'FORMPAGE', name: 'formpage1', visible: true, isShowCaption: true, form: this }),
srfupdatedate: new FormItemModel({ caption: '更新时间', detailType: 'FORMITEM', name: 'srfupdatedate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
srforikey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srforikey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfkey: new FormItemModel({ caption: '竞争对手', detailType: 'FORMITEM', name: 'srfkey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfmajortext: new FormItemModel({ caption: '竞争对手名称', detailType: 'FORMITEM', name: 'srfmajortext', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srftempmode: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srftempmode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfuf: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfuf', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfdeid: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfdeid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfsourcekey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfsourcekey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
reportedrevenue: new FormItemModel({ caption: '报告收入', detailType: 'FORMITEM', name: 'reportedrevenue', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
websiteurl: new FormItemModel({ caption: '网站', detailType: 'FORMITEM', name: 'websiteurl', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
competitorid: new FormItemModel({ caption: '竞争对手', detailType: 'FORMITEM', name: 'competitorid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
group1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
formpage1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfupdatedate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srforikey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfkey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfmajortext: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srftempmode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfuf: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfdeid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfsourcekey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
reportedrevenue: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
websiteurl: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
competitorid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
};
}
\ No newline at end of file
......@@ -97,45 +97,45 @@ export class QuickCreateEditFormBase extends EditFormControlBase {
* @memberof QuickCreateEditFormBase
*/
public detailsModel: any = {
group1: new FormGroupPanelModel({ caption: '竞争对手基本信息', detailType: 'GROUPPANEL', name: 'group1', visible: true, isShowCaption: false, form: this, showMoreMode: 0, uiActionGroup: { caption: '', langbase: 'entities.competitor.quickcreate_form', extractMode: 'ITEM', details: [] } }),
formpage1: new FormPageModel({ caption: '基本信息', detailType: 'FORMPAGE', name: 'formpage1', visible: true, isShowCaption: true, form: this }),
srfupdatedate: new FormItemModel({ caption: '更新时间', detailType: 'FORMITEM', name: 'srfupdatedate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
srforikey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srforikey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfkey: new FormItemModel({ caption: '竞争对手', detailType: 'FORMITEM', name: 'srfkey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfmajortext: new FormItemModel({ caption: '竞争对手名称', detailType: 'FORMITEM', name: 'srfmajortext', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srftempmode: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srftempmode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfuf: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfuf', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfdeid: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfdeid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfsourcekey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfsourcekey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
competitorname: new FormItemModel({ caption: '竞争对手名称', detailType: 'FORMITEM', name: 'competitorname', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
websiteurl: new FormItemModel({ caption: '网站', detailType: 'FORMITEM', name: 'websiteurl', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
transactioncurrencyname: new FormItemModel({ caption: '货币', detailType: 'FORMITEM', name: 'transactioncurrencyname', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
address1_postalcode: new FormItemModel({ caption: '邮政编码', detailType: 'FORMITEM', name: 'address1_postalcode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
address1_country: new FormItemModel({ caption: '国家/地区', detailType: 'FORMITEM', name: 'address1_country', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
address1_stateorprovince: new FormItemModel({ caption: '省/直辖市/自治区', detailType: 'FORMITEM', name: 'address1_stateorprovince', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
address1_city: new FormItemModel({ caption: '市/县', detailType: 'FORMITEM', name: 'address1_city', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
address1_line1: new FormItemModel({ caption: '街道', detailType: 'FORMITEM', name: 'address1_line1', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
transactioncurrencyid: new FormItemModel({ caption: '货币', detailType: 'FORMITEM', name: 'transactioncurrencyid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
competitorid: new FormItemModel({ caption: '竞争对手', detailType: 'FORMITEM', name: 'competitorid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
group1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
formpage1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfupdatedate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srforikey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfkey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfmajortext: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srftempmode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfuf: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfdeid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfsourcekey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
competitorname: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
websiteurl: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
transactioncurrencyname: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
address1_postalcode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
address1_country: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
address1_stateorprovince: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
address1_city: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
address1_line1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
transactioncurrencyid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
competitorid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
};
}
\ No newline at end of file
......@@ -89,37 +89,37 @@ export class AddressEditEditFormBase extends EditFormControlBase {
* @memberof AddressEditEditFormBase
*/
public detailsModel: any = {
group1: new FormGroupPanelModel({ caption: '联系人基本信息', detailType: 'GROUPPANEL', name: 'group1', visible: true, isShowCaption: false, form: this, showMoreMode: 0, uiActionGroup: { caption: '', langbase: 'entities.contact.addressedit_form', extractMode: 'ITEM', details: [] } }),
formpage1: new FormPageModel({ caption: '基本信息', detailType: 'FORMPAGE', name: 'formpage1', visible: true, isShowCaption: true, form: this }),
srfupdatedate: new FormItemModel({ caption: '更新时间', detailType: 'FORMITEM', name: 'srfupdatedate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
srforikey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srforikey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfkey: new FormItemModel({ caption: '联系人', detailType: 'FORMITEM', name: 'srfkey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfmajortext: new FormItemModel({ caption: '全名', detailType: 'FORMITEM', name: 'srfmajortext', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srftempmode: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srftempmode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfuf: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfuf', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfdeid: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfdeid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfsourcekey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfsourcekey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
address1_country: new FormItemModel({ caption: '国家/地区', detailType: 'FORMITEM', name: 'address1_country', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
address1_stateorprovince: new FormItemModel({ caption: '省/市/自治区', detailType: 'FORMITEM', name: 'address1_stateorprovince', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
address1_city: new FormItemModel({ caption: '市/县', detailType: 'FORMITEM', name: 'address1_city', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
address1_line1: new FormItemModel({ caption: '街道', detailType: 'FORMITEM', name: 'address1_line1', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
address1_postalcode: new FormItemModel({ caption: '邮政编码', detailType: 'FORMITEM', name: 'address1_postalcode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
contactid: new FormItemModel({ caption: '联系人', detailType: 'FORMITEM', name: 'contactid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
group1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
formpage1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfupdatedate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srforikey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfkey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfmajortext: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srftempmode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfuf: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfdeid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfsourcekey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
address1_country: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
address1_stateorprovince: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
address1_city: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
address1_line1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
address1_postalcode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
contactid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
};
}
\ No newline at end of file
......@@ -89,37 +89,37 @@ export class BookEditEditFormBase extends EditFormControlBase {
* @memberof BookEditEditFormBase
*/
public detailsModel: any = {
grouppanel2: new FormGroupPanelModel({ caption: '记账', detailType: 'GROUPPANEL', name: 'grouppanel2', visible: true, isShowCaption: false, form: this, showMoreMode: 0, uiActionGroup: { caption: '', langbase: 'entities.contact.bookedit_form', extractMode: 'ITEM', details: [] } }),
formpage1: new FormPageModel({ caption: '基本信息', detailType: 'FORMPAGE', name: 'formpage1', visible: true, isShowCaption: true, form: this }),
srfupdatedate: new FormItemModel({ caption: '更新时间', detailType: 'FORMITEM', name: 'srfupdatedate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
srforikey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srforikey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfkey: new FormItemModel({ caption: '联系人', detailType: 'FORMITEM', name: 'srfkey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfmajortext: new FormItemModel({ caption: '全名', detailType: 'FORMITEM', name: 'srfmajortext', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srftempmode: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srftempmode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfuf: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfuf', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfdeid: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfdeid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfsourcekey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfsourcekey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
transactioncurrencyname: new FormItemModel({ caption: '货币', detailType: 'FORMITEM', name: 'transactioncurrencyname', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
creditlimit: new FormItemModel({ caption: '信用额度', detailType: 'FORMITEM', name: 'creditlimit', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
creditonhold: new FormItemModel({ caption: '信用冻结', detailType: 'FORMITEM', name: 'creditonhold', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
paymenttermscode: new FormItemModel({ caption: '付款方式', detailType: 'FORMITEM', name: 'paymenttermscode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
transactioncurrencyid: new FormItemModel({ caption: '货币', detailType: 'FORMITEM', name: 'transactioncurrencyid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
contactid: new FormItemModel({ caption: '联系人', detailType: 'FORMITEM', name: 'contactid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
grouppanel2: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
formpage1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfupdatedate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srforikey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfkey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfmajortext: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srftempmode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfuf: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfdeid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfsourcekey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
transactioncurrencyname: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
creditlimit: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
creditonhold: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
paymenttermscode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
transactioncurrencyid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
contactid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
};
}
\ No newline at end of file
......@@ -116,38 +116,38 @@ export class DatePanelEditFormBase extends EditFormControlBase {
* @memberof DatePanelEditFormBase
*/
public detailsModel: any = {
button1: new FormButtonModel({ caption: '头信息编辑', detailType: 'BUTTON', name: 'button1', visible: true, isShowCaption: false, form: this, uiaction: { type: 'DEUIACTION', tag: 'OpenEdit_DataPanel', actiontarget: 'SINGLEKEY' } }),
grouppanel1: new FormGroupPanelModel({ caption: '分组面板', detailType: 'GROUPPANEL', name: 'grouppanel1', visible: true, isShowCaption: false, form: this, showMoreMode: 0, uiActionGroup: { caption: '', langbase: 'entities.contact.datepanel_form', extractMode: 'ITEM', details: [] } }),
group1: new FormGroupPanelModel({ caption: '联系人基本信息', detailType: 'GROUPPANEL', name: 'group1', visible: true, isShowCaption: false, form: this, showMoreMode: 0, uiActionGroup: { caption: '', langbase: 'entities.contact.datepanel_form', extractMode: 'ITEM', details: [] } }),
formpage1: new FormPageModel({ caption: '基本信息', detailType: 'FORMPAGE', name: 'formpage1', visible: true, isShowCaption: true, form: this }),
srfupdatedate: new FormItemModel({ caption: '更新时间', detailType: 'FORMITEM', name: 'srfupdatedate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
srforikey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srforikey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfkey: new FormItemModel({ caption: '联系人', detailType: 'FORMITEM', name: 'srfkey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfmajortext: new FormItemModel({ caption: '全名', detailType: 'FORMITEM', name: 'srfmajortext', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srftempmode: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srftempmode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfuf: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfuf', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfdeid: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfdeid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfsourcekey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfsourcekey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
customersizecode: new FormItemModel({ caption: '客户规模', detailType: 'FORMITEM', name: 'customersizecode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
statuscode: new FormItemModel({ caption: '状态', detailType: 'FORMITEM', name: 'statuscode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
owneridyominame: new FormItemModel({ caption: '负责人', detailType: 'FORMITEM', name: 'owneridyominame', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
contactid: new FormItemModel({ caption: '联系人', detailType: 'FORMITEM', name: 'contactid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
button1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
grouppanel1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
group1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
formpage1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfupdatedate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srforikey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfkey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfmajortext: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srftempmode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfuf: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfdeid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfsourcekey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
customersizecode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
statuscode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
owneridyominame: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
contactid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
};
/**
......
......@@ -91,33 +91,33 @@ export class Edit_DataPanelEditFormBase extends EditFormControlBase {
* @memberof Edit_DataPanelEditFormBase
*/
public detailsModel: any = {
group1: new FormGroupPanelModel({ caption: '联系人基本信息', detailType: 'GROUPPANEL', name: 'group1', visible: true, isShowCaption: false, form: this, showMoreMode: 0, uiActionGroup: { caption: '', langbase: 'entities.contact.edit_datapanel_form', extractMode: 'ITEM', details: [] } }),
formpage1: new FormPageModel({ caption: '基本信息', detailType: 'FORMPAGE', name: 'formpage1', visible: true, isShowCaption: true, form: this }),
srfupdatedate: new FormItemModel({ caption: '更新时间', detailType: 'FORMITEM', name: 'srfupdatedate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
srforikey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srforikey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfkey: new FormItemModel({ caption: '联系人', detailType: 'FORMITEM', name: 'srfkey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfmajortext: new FormItemModel({ caption: '全名', detailType: 'FORMITEM', name: 'srfmajortext', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srftempmode: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srftempmode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfuf: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfuf', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfdeid: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfdeid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfsourcekey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfsourcekey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
customersizecode: new FormItemModel({ caption: '客户规模', detailType: 'FORMITEM', name: 'customersizecode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
statuscode: new FormItemModel({ caption: '状态', detailType: 'FORMITEM', name: 'statuscode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
owneridyominame: new FormItemModel({ caption: '负责人', detailType: 'FORMITEM', name: 'owneridyominame', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
contactid: new FormItemModel({ caption: '联系人', detailType: 'FORMITEM', name: 'contactid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
group1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
formpage1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfupdatedate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srforikey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfkey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfmajortext: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srftempmode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfuf: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfdeid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfsourcekey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
customersizecode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
statuscode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
owneridyominame: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
contactid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
};
}
\ No newline at end of file
......@@ -89,37 +89,37 @@ export class MarketEditEditFormBase extends EditFormControlBase {
* @memberof MarketEditEditFormBase
*/
public detailsModel: any = {
group1: new FormGroupPanelModel({ caption: '联系人基本信息', detailType: 'GROUPPANEL', name: 'group1', visible: true, isShowCaption: false, form: this, showMoreMode: 0, uiActionGroup: { caption: '', langbase: 'entities.contact.marketedit_form', extractMode: 'ITEM', details: [] } }),
formpage1: new FormPageModel({ caption: '基本信息', detailType: 'FORMPAGE', name: 'formpage1', visible: true, isShowCaption: true, form: this }),
srfupdatedate: new FormItemModel({ caption: '更新时间', detailType: 'FORMITEM', name: 'srfupdatedate', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 0 }),
srforikey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srforikey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfkey: new FormItemModel({ caption: '联系人', detailType: 'FORMITEM', name: 'srfkey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfmajortext: new FormItemModel({ caption: '全名', detailType: 'FORMITEM', name: 'srfmajortext', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srftempmode: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srftempmode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfuf: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfuf', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfdeid: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfdeid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
srfsourcekey: new FormItemModel({ caption: '', detailType: 'FORMITEM', name: 'srfsourcekey', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
originatingleadname: new FormItemModel({ caption: '原始潜在顾客', detailType: 'FORMITEM', name: 'originatingleadname', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
lastusedincampaign: new FormItemModel({ caption: '上次参与市场活动的日期', detailType: 'FORMITEM', name: 'lastusedincampaign', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
donotsendmm: new FormItemModel({ caption: '发送市场营销资料', detailType: 'FORMITEM', name: 'donotsendmm', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
shippingmethodcode: new FormItemModel({ caption: '送货方式', detailType: 'FORMITEM', name: 'shippingmethodcode', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
originatingleadid: new FormItemModel({ caption: '原始潜在顾客', detailType: 'FORMITEM', name: 'originatingleadid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
contactid: new FormItemModel({ caption: '联系人', detailType: 'FORMITEM', name: 'contactid', visible: true, isShowCaption: true, form: this, disabled: false, enableCond: 3 }),
group1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
formpage1: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfupdatedate: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srforikey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfkey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfmajortext: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srftempmode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfuf: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfdeid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
srfsourcekey: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
originatingleadname: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
lastusedincampaign: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
donotsendmm: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
shippingmethodcode: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
originatingleadid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
contactid: !!!!模版产生代码错误:Syntax error in template "TEMPLCODE_zh_CN" in line 20, column 2:
Unknown directive: #assing. Help (latest version): http://freemarker.org/docs/ref_directive_alphaidx.html; you're using FreeMarker 2.3.23.
};
}
\ No newline at end of file
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册