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

jackwang 部署微服务应用

上级 79fc76d7
...@@ -85,4 +85,12 @@ export interface HROrgAddress { ...@@ -85,4 +85,12 @@ export interface HROrgAddress {
* @memberof HROrgAddress * @memberof HROrgAddress
*/ */
mainaddress?: any; mainaddress?: any;
/**
* 组织
*
* @returns {*}
* @memberof HROrgAddress
*/
hrorganizationid?: any;
} }
\ No newline at end of file
...@@ -77,4 +77,12 @@ export interface HROrgContact { ...@@ -77,4 +77,12 @@ export interface HROrgContact {
* @memberof HROrgContact * @memberof HROrgContact
*/ */
maincontact?: any; maincontact?: any;
/**
* 组织
*
* @returns {*}
* @memberof HROrgContact
*/
hrorganizationid?: any;
} }
\ No newline at end of file
...@@ -62,6 +62,7 @@ export default { ...@@ -62,6 +62,7 @@ export default {
orgcode: "组织编码", orgcode: "组织编码",
shortname: "组织简称", shortname: "组织简称",
showorder: "排序号", showorder: "排序号",
organizationtype: "组织类型",
bank: "开户行", bank: "开户行",
bankaccount: "银行账号", bankaccount: "银行账号",
uscc: "统一社会信用代码", uscc: "统一社会信用代码",
......
...@@ -61,6 +61,7 @@ export default { ...@@ -61,6 +61,7 @@ export default {
orgcode: "组织编码", orgcode: "组织编码",
shortname: "组织简称", shortname: "组织简称",
showorder: "排序号", showorder: "排序号",
organizationtype: "组织类型",
bank: "开户行", bank: "开户行",
bankaccount: "银行账号", bankaccount: "银行账号",
uscc: "统一社会信用代码", uscc: "统一社会信用代码",
......
...@@ -11,6 +11,7 @@ export default { ...@@ -11,6 +11,7 @@ export default {
postcode: "邮政编码", postcode: "邮政编码",
uses: "用途", uses: "用途",
mainaddress: "主要", mainaddress: "主要",
hrorganizationid: "组织",
}, },
views: { views: {
gridview: { gridview: {
......
...@@ -10,6 +10,7 @@ export default { ...@@ -10,6 +10,7 @@ export default {
postcode: "邮政编码", postcode: "邮政编码",
uses: "用途", uses: "用途",
mainaddress: "主要", mainaddress: "主要",
hrorganizationid: "组织",
}, },
views: { views: {
gridview: { gridview: {
......
...@@ -10,6 +10,7 @@ export default { ...@@ -10,6 +10,7 @@ export default {
contacttype: "类型", contacttype: "类型",
contactinfo: "联系信息", contactinfo: "联系信息",
maincontact: "主要", maincontact: "主要",
hrorganizationid: "组织",
}, },
views: { views: {
editview: { editview: {
......
...@@ -9,6 +9,7 @@ export default { ...@@ -9,6 +9,7 @@ export default {
contacttype: "类型", contacttype: "类型",
contactinfo: "联系信息", contactinfo: "联系信息",
maincontact: "主要", maincontact: "主要",
hrorganizationid: "组织",
}, },
views: { views: {
editview: { editview: {
......
...@@ -87,6 +87,35 @@ mock.onDelete(new RegExp(/^\/hrorgaddresses\/batch$/)).reply((config: any) => { ...@@ -87,6 +87,35 @@ mock.onDelete(new RegExp(/^\/hrorgaddresses\/batch$/)).reply((config: any) => {
}); });
// Select
mock.onGet(new RegExp(/^\/hrorganizations\/([a-zA-Z0-9\-\;]{1,35})\/hrorgaddresses\/([a-zA-Z0-9\-\;]{1,35})\/select$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgaddress 方法: Select");
console.table({url:config.url, method: config.method, data:config.data});
let status = MockAdapter.mockStatus(config);
if (status !== 200) {
return [status, null];
}
const paramArray:Array<any> = ['organizationid','hrorgaddressid'];
const matchArray:any = new RegExp(/^\/hrorganizations\/([a-zA-Z0-9\-\;]{1,35})\/hrorgaddresses\/([a-zA-Z0-9\-\;]{1,35})\/select$/).exec(config.url);
let tempValue: any = {};
if(matchArray && matchArray.length >1 && paramArray && paramArray.length >0){
paramArray.forEach((item: any, index: number) => {
Object.defineProperty(tempValue, item, {
enumerable: true,
value: matchArray[index + 1]
});
});
}
let items = mockDatas ? mockDatas : [];
let _items = items.find((item: any) => Object.is(item.hrorgaddressid, tempValue.hrorgaddressid));
console.groupCollapsed("response数据 status: "+status+" data: ");
console.table(_items);
console.groupEnd();
console.groupEnd();
return [status, _items];
});
// Select // Select
mock.onGet(new RegExp(/^\/hrorgaddresses\/([a-zA-Z0-9\-\;]{1,35})\/select$/)).reply((config: any) => { mock.onGet(new RegExp(/^\/hrorgaddresses\/([a-zA-Z0-9\-\;]{1,35})\/select$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgaddress 方法: Select"); console.groupCollapsed("实体:hrorgaddress 方法: Select");
...@@ -115,6 +144,33 @@ mock.onGet(new RegExp(/^\/hrorgaddresses\/([a-zA-Z0-9\-\;]{1,35})\/select$/)).re ...@@ -115,6 +144,33 @@ mock.onGet(new RegExp(/^\/hrorgaddresses\/([a-zA-Z0-9\-\;]{1,35})\/select$/)).re
return [status, _items]; return [status, _items];
}); });
// Create
mock.onPost(new RegExp(/^\/hrorganizations\/([a-zA-Z0-9\-\;]{1,35})\/hrorgaddresses\/([a-zA-Z0-9\-\;]{1,35})$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgaddress 方法: Create");
console.table({url:config.url, method: config.method, data:config.data});
let status = MockAdapter.mockStatus(config);
if (status !== 200) {
return [status, null];
}
const paramArray:Array<any> = ['organizationid','hrorgaddressid'];
const matchArray:any = new RegExp(/^\/hrorganizations\/([a-zA-Z0-9\-\;]{1,35})\/hrorgaddresses\/([a-zA-Z0-9\-\;]{1,35})$/).exec(config.url);
let tempValue: any = {};
if(matchArray && matchArray.length >1 && paramArray && paramArray.length >0){
paramArray.forEach((item: any, index: number) => {
Object.defineProperty(tempValue, item, {
enumerable: true,
value: matchArray[index + 1]
});
});
}
console.groupCollapsed("response数据 status: "+status+" data: ");
console.table({});
console.groupEnd();
console.groupEnd();
return [status, {}];
});
// Create // Create
mock.onPost(new RegExp(/^\/hrorgaddresses\/?([a-zA-Z0-9\-\;]{0,35})$/)).reply((config: any) => { mock.onPost(new RegExp(/^\/hrorgaddresses\/?([a-zA-Z0-9\-\;]{0,35})$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgaddress 方法: Create"); console.groupCollapsed("实体:hrorgaddress 方法: Create");
...@@ -141,6 +197,33 @@ mock.onPost(new RegExp(/^\/hrorgaddresses\/?([a-zA-Z0-9\-\;]{0,35})$/)).reply((c ...@@ -141,6 +197,33 @@ mock.onPost(new RegExp(/^\/hrorgaddresses\/?([a-zA-Z0-9\-\;]{0,35})$/)).reply((c
return [status, mockDatas[0]]; return [status, mockDatas[0]];
}); });
// Update
mock.onPut(new RegExp(/^\/hrorganizations\/([a-zA-Z0-9\-\;]{1,35})\/hrorgaddresses\/([a-zA-Z0-9\-\;]{1,35})$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgaddress 方法: Update");
console.table({url:config.url, method: config.method, data:config.data});
let status = MockAdapter.mockStatus(config);
if (status !== 200) {
return [status, null];
}
const paramArray:Array<any> = ['organizationid','hrorgaddressid'];
const matchArray:any = new RegExp(/^\/hrorganizations\/([a-zA-Z0-9\-\;]{1,35})\/hrorgaddresses\/([a-zA-Z0-9\-\;]{1,35})$/).exec(config.url);
let tempValue: any = {};
if(matchArray && matchArray.length >1 && paramArray && paramArray.length >0){
paramArray.forEach((item: any, index: number) => {
Object.defineProperty(tempValue, item, {
enumerable: true,
value: matchArray[index + 1]
});
});
}
console.groupCollapsed("response数据 status: "+status+" data: ");
console.table({});
console.groupEnd();
console.groupEnd();
return [status, {}];
});
// Update // Update
mock.onPut(new RegExp(/^\/hrorgaddresses\/?([a-zA-Z0-9\-\;]{0,35})$/)).reply((config: any) => { mock.onPut(new RegExp(/^\/hrorgaddresses\/?([a-zA-Z0-9\-\;]{0,35})$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgaddress 方法: Update"); console.groupCollapsed("实体:hrorgaddress 方法: Update");
...@@ -179,6 +262,25 @@ mock.onPut(new RegExp(/^\/hrorgaddresses\/?([a-zA-Z0-9\-\;]{0,35})$/)).reply((co ...@@ -179,6 +262,25 @@ mock.onPut(new RegExp(/^\/hrorgaddresses\/?([a-zA-Z0-9\-\;]{0,35})$/)).reply((co
return [status, data]; return [status, data];
}); });
// GetDraft
mock.onGet(new RegExp(/^\/hrorganizations\/([a-zA-Z0-9\-\;]{1,35})\/hrorgaddresses\/getdraft$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgaddress 方法: GetDraft");
console.table({url:config.url, method: config.method, data:config.data});
// GetDraft
let status = MockAdapter.mockStatus(config);
if (status !== 200) {
return [status, null];
}
console.groupCollapsed("response数据 status: "+status+" data: ");
console.table({});
console.groupEnd();
console.groupEnd();
return [status, {}];
});
// GetDraft // GetDraft
mock.onGet(new RegExp(/^\/hrorgaddresses\/getdraft$/)).reply((config: any) => { mock.onGet(new RegExp(/^\/hrorgaddresses\/getdraft$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgaddress 方法: GetDraft"); console.groupCollapsed("实体:hrorgaddress 方法: GetDraft");
...@@ -195,6 +297,33 @@ mock.onGet(new RegExp(/^\/hrorgaddresses\/getdraft$/)).reply((config: any) => { ...@@ -195,6 +297,33 @@ mock.onGet(new RegExp(/^\/hrorgaddresses\/getdraft$/)).reply((config: any) => {
return [status, {}]; return [status, {}];
}); });
// CheckKey
mock.onPost(new RegExp(/^\/hrorganizations\/([a-zA-Z0-9\-\;]{1,35})\/hrorgaddresses\/([a-zA-Z0-9\-\;]{1,35})\/checkkey$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgaddress 方法: CheckKey");
console.table({url:config.url, method: config.method, data:config.data});
let status = MockAdapter.mockStatus(config);
if (status !== 200) {
return [status, null];
}
const paramArray:Array<any> = ['organizationid','hrorgaddressid'];
const matchArray:any = new RegExp(/^\/hrorganizations\/([a-zA-Z0-9\-\;]{1,35})\/hrorgaddresses\/([a-zA-Z0-9\-\;]{1,35})\/checkkey$/).exec(config.url);
let tempValue: any = {};
if(matchArray && matchArray.length >1 && paramArray && paramArray.length >0){
paramArray.forEach((item: any, index: number) => {
Object.defineProperty(tempValue, item, {
enumerable: true,
value: matchArray[index + 1]
});
});
}
console.groupCollapsed("response数据 status: "+status+" data: ");
console.table({});
console.groupEnd();
console.groupEnd();
return [status, {}];
});
// CheckKey // CheckKey
mock.onPost(new RegExp(/^\/hrorgaddresses\/?([a-zA-Z0-9\-\;]{0,35})\/checkkey$/)).reply((config: any) => { mock.onPost(new RegExp(/^\/hrorgaddresses\/?([a-zA-Z0-9\-\;]{0,35})\/checkkey$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgaddress 方法: CheckKey"); console.groupCollapsed("实体:hrorgaddress 方法: CheckKey");
...@@ -233,6 +362,33 @@ mock.onPost(new RegExp(/^\/hrorgaddresses\/?([a-zA-Z0-9\-\;]{0,35})\/checkkey$/) ...@@ -233,6 +362,33 @@ mock.onPost(new RegExp(/^\/hrorgaddresses\/?([a-zA-Z0-9\-\;]{0,35})\/checkkey$/)
return [status, data]; return [status, data];
}); });
// Save
mock.onPost(new RegExp(/^\/hrorganizations\/([a-zA-Z0-9\-\;]{1,35})\/hrorgaddresses\/([a-zA-Z0-9\-\;]{1,35})\/save$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgaddress 方法: Save");
console.table({url:config.url, method: config.method, data:config.data});
let status = MockAdapter.mockStatus(config);
if (status !== 200) {
return [status, null];
}
const paramArray:Array<any> = ['organizationid','hrorgaddressid'];
const matchArray:any = new RegExp(/^\/hrorganizations\/([a-zA-Z0-9\-\;]{1,35})\/hrorgaddresses\/([a-zA-Z0-9\-\;]{1,35})\/save$/).exec(config.url);
let tempValue: any = {};
if(matchArray && matchArray.length >1 && paramArray && paramArray.length >0){
paramArray.forEach((item: any, index: number) => {
Object.defineProperty(tempValue, item, {
enumerable: true,
value: matchArray[index + 1]
});
});
}
console.groupCollapsed("response数据 status: "+status+" data: ");
console.table({});
console.groupEnd();
console.groupEnd();
return [status, {}];
});
// Save // Save
mock.onPost(new RegExp(/^\/hrorgaddresses\/?([a-zA-Z0-9\-\;]{0,35})\/save$/)).reply((config: any) => { mock.onPost(new RegExp(/^\/hrorgaddresses\/?([a-zA-Z0-9\-\;]{0,35})\/save$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgaddress 方法: Save"); console.groupCollapsed("实体:hrorgaddress 方法: Save");
...@@ -271,6 +427,51 @@ mock.onPost(new RegExp(/^\/hrorgaddresses\/?([a-zA-Z0-9\-\;]{0,35})\/save$/)).re ...@@ -271,6 +427,51 @@ mock.onPost(new RegExp(/^\/hrorgaddresses\/?([a-zA-Z0-9\-\;]{0,35})\/save$/)).re
return [status, data]; return [status, data];
}); });
// FetchDefault
mock.onGet(new RegExp(/^\/hrorganizations\/([a-zA-Z0-9\-\;]{1,35})\/hrorgaddresses\/fetchdefault$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgaddress 方法: FetchDefault");
console.table({url:config.url, method: config.method, data:config.data});
let status = MockAdapter.mockStatus(config);
if (status !== 200) {
return [status, null];
}
const paramArray:Array<any> = ['organizationid'];
let tempValue: any = {};
const matchArray:any = new RegExp(/^\/hrorganizations\/([a-zA-Z0-9\-\;]{1,35})\/hrorgaddresses\/fetchdefault$/).exec(config.url);
if(matchArray && matchArray.length >1 && paramArray && paramArray.length >0){
paramArray.forEach((item: any, index: number) => {
Object.defineProperty(tempValue, item, {
enumerable: true,
value: matchArray[index + 1]
});
});
}
let items = mockDatas ? mockDatas : [];
if (items.length > 0 && paramArray.length > 0) {
paramArray.forEach((paramkey: any) => {
if (tempValue[paramkey] && tempValue[paramkey].indexOf(";") > 0) {
let keysGrounp: Array<any> = tempValue[paramkey].split(new RegExp(/[\;]/));
let tempArray: Array<any> = [];
keysGrounp.forEach((singlekey: any) => {
let _items = items.filter((item: any) => { return item[paramkey] == singlekey });
if(_items.length >0){
tempArray.push(..._items);
}
})
items = tempArray;
} else {
items = items.filter((item: any) => { return item[paramkey] == tempValue[paramkey] });
}
})
}
console.groupCollapsed("response数据 status: "+status+" data: ");
console.table(items);
console.groupEnd();
console.groupEnd();
return [status, items];
});
// FetchDefault // FetchDefault
mock.onGet(new RegExp(/^\/hrorgaddresses\/fetchdefault$/)).reply((config: any) => { mock.onGet(new RegExp(/^\/hrorgaddresses\/fetchdefault$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgaddress 方法: FetchDefault"); console.groupCollapsed("实体:hrorgaddress 方法: FetchDefault");
...@@ -314,15 +515,57 @@ mock.onGet(new RegExp(/^\/hrorgaddresses\/fetchdefault(\?[\w-./?%&=,]*)*$/)).rep ...@@ -314,15 +515,57 @@ mock.onGet(new RegExp(/^\/hrorgaddresses\/fetchdefault(\?[\w-./?%&=,]*)*$/)).rep
console.groupEnd(); console.groupEnd();
return [status, records ? records : []]; return [status, records ? records : []];
}); });
// URI参数传递情况未实现
// URI参数传递情况未实现
// URI参数传递情况未实现
// URI参数传递情况未实现
// URI参数传递情况未实现
// URI参数传递情况未实现
// URI参数传递情况未实现 // URI参数传递情况未实现
// URI参数传递情况未实现
// URI参数传递情况未实现 // URI参数传递情况未实现
// URI参数传递情况未实现 // URI参数传递情况未实现
// URI参数传递情况未实现 // URI参数传递情况未实现
// URI参数传递情况未实现 // URI参数传递情况未实现
// URI参数传递情况未实现 // URI参数传递情况未实现
// URI参数传递情况未实现 // URI参数传递情况未实现
// Remove
mock.onDelete(new RegExp(/^\/hrorganizations\/([a-zA-Z0-9\-\;]{1,35})\/hrorgaddresses\/([a-zA-Z0-9\-\;]{1,35})$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgaddress 方法: Remove");
console.table({url:config.url, method: config.method, data:config.data});
let status = MockAdapter.mockStatus(config);
if (status !== 200) {
return [status, null];
}
const paramArray:Array<any> = ['organizationid','hrorgaddressid'];
const matchArray:any = new RegExp(/^\/hrorganizations\/([a-zA-Z0-9\-\;]{1,35})\/hrorgaddresses\/([a-zA-Z0-9\-\;]{1,35})$/).exec(config.url);
let tempValue: any = {};
if(matchArray && matchArray.length >1 && paramArray && paramArray.length >0){
paramArray.forEach((item: any, index: number) => {
Object.defineProperty(tempValue, item, {
enumerable: true,
value: matchArray[index + 1]
});
});
}
let items = mockDatas ? mockDatas : [];
let _items = items.find((item: any) => Object.is(item.hrorgaddressid, tempValue.hrorgaddressid));
console.groupCollapsed("response数据 status: "+status+" data: ");
console.table(_items?_items:{});
console.groupEnd();
console.groupEnd();
return [status, _items?_items:{}];
});
// Remove // Remove
mock.onDelete(new RegExp(/^\/hrorgaddresses\/([a-zA-Z0-9\-\;]{1,35})$/)).reply((config: any) => { mock.onDelete(new RegExp(/^\/hrorgaddresses\/([a-zA-Z0-9\-\;]{1,35})$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgaddress 方法: Remove"); console.groupCollapsed("实体:hrorgaddress 方法: Remove");
...@@ -351,6 +594,34 @@ mock.onDelete(new RegExp(/^\/hrorgaddresses\/([a-zA-Z0-9\-\;]{1,35})$/)).reply(( ...@@ -351,6 +594,34 @@ mock.onDelete(new RegExp(/^\/hrorgaddresses\/([a-zA-Z0-9\-\;]{1,35})$/)).reply((
return [status, _items?_items:{}]; return [status, _items?_items:{}];
}); });
// Get
mock.onGet(new RegExp(/^\/hrorganizations\/([a-zA-Z0-9\-\;]{1,35})\/hrorgaddresses\/([a-zA-Z0-9\-\;]{1,35})$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgaddress 方法: Get");
console.table({url:config.url, method: config.method, data:config.data});
let status = MockAdapter.mockStatus(config);
if (status !== 200) {
return [status, null];
}
const paramArray:Array<any> = ['organizationid','hrorgaddressid'];
const matchArray:any = new RegExp(/^\/hrorganizations\/([a-zA-Z0-9\-\;]{1,35})\/hrorgaddresses\/([a-zA-Z0-9\-\;]{1,35})$/).exec(config.url);
let tempValue: any = {};
if(matchArray && matchArray.length >1 && paramArray && paramArray.length >0){
paramArray.forEach((item: any, index: number) => {
Object.defineProperty(tempValue, item, {
enumerable: true,
value: matchArray[index + 1]
});
});
}
let items = mockDatas ? mockDatas : [];
let _items = items.find((item: any) => Object.is(item.hrorgaddressid, tempValue.hrorgaddressid));
console.groupCollapsed("response数据 status: "+status+" data: ");
console.table(_items?_items:{});
console.groupEnd();
console.groupEnd();
return [status, _items?_items:{}];
});
// Get // Get
mock.onGet(new RegExp(/^\/hrorgaddresses\/([a-zA-Z0-9\-\;]{1,35})$/)).reply((config: any) => { mock.onGet(new RegExp(/^\/hrorgaddresses\/([a-zA-Z0-9\-\;]{1,35})$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgaddress 方法: Get"); console.groupCollapsed("实体:hrorgaddress 方法: Get");
......
...@@ -87,6 +87,35 @@ mock.onDelete(new RegExp(/^\/hrorgcontacts\/batch$/)).reply((config: any) => { ...@@ -87,6 +87,35 @@ mock.onDelete(new RegExp(/^\/hrorgcontacts\/batch$/)).reply((config: any) => {
}); });
// Select
mock.onGet(new RegExp(/^\/hrorganizations\/([a-zA-Z0-9\-\;]{1,35})\/hrorgcontacts\/([a-zA-Z0-9\-\;]{1,35})\/select$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgcontact 方法: Select");
console.table({url:config.url, method: config.method, data:config.data});
let status = MockAdapter.mockStatus(config);
if (status !== 200) {
return [status, null];
}
const paramArray:Array<any> = ['organizationid','hrorgcontactid'];
const matchArray:any = new RegExp(/^\/hrorganizations\/([a-zA-Z0-9\-\;]{1,35})\/hrorgcontacts\/([a-zA-Z0-9\-\;]{1,35})\/select$/).exec(config.url);
let tempValue: any = {};
if(matchArray && matchArray.length >1 && paramArray && paramArray.length >0){
paramArray.forEach((item: any, index: number) => {
Object.defineProperty(tempValue, item, {
enumerable: true,
value: matchArray[index + 1]
});
});
}
let items = mockDatas ? mockDatas : [];
let _items = items.find((item: any) => Object.is(item.hrorgcontactid, tempValue.hrorgcontactid));
console.groupCollapsed("response数据 status: "+status+" data: ");
console.table(_items);
console.groupEnd();
console.groupEnd();
return [status, _items];
});
// Select // Select
mock.onGet(new RegExp(/^\/hrorgcontacts\/([a-zA-Z0-9\-\;]{1,35})\/select$/)).reply((config: any) => { mock.onGet(new RegExp(/^\/hrorgcontacts\/([a-zA-Z0-9\-\;]{1,35})\/select$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgcontact 方法: Select"); console.groupCollapsed("实体:hrorgcontact 方法: Select");
...@@ -115,6 +144,33 @@ mock.onGet(new RegExp(/^\/hrorgcontacts\/([a-zA-Z0-9\-\;]{1,35})\/select$/)).rep ...@@ -115,6 +144,33 @@ mock.onGet(new RegExp(/^\/hrorgcontacts\/([a-zA-Z0-9\-\;]{1,35})\/select$/)).rep
return [status, _items]; return [status, _items];
}); });
// Create
mock.onPost(new RegExp(/^\/hrorganizations\/([a-zA-Z0-9\-\;]{1,35})\/hrorgcontacts\/([a-zA-Z0-9\-\;]{1,35})$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgcontact 方法: Create");
console.table({url:config.url, method: config.method, data:config.data});
let status = MockAdapter.mockStatus(config);
if (status !== 200) {
return [status, null];
}
const paramArray:Array<any> = ['organizationid','hrorgcontactid'];
const matchArray:any = new RegExp(/^\/hrorganizations\/([a-zA-Z0-9\-\;]{1,35})\/hrorgcontacts\/([a-zA-Z0-9\-\;]{1,35})$/).exec(config.url);
let tempValue: any = {};
if(matchArray && matchArray.length >1 && paramArray && paramArray.length >0){
paramArray.forEach((item: any, index: number) => {
Object.defineProperty(tempValue, item, {
enumerable: true,
value: matchArray[index + 1]
});
});
}
console.groupCollapsed("response数据 status: "+status+" data: ");
console.table({});
console.groupEnd();
console.groupEnd();
return [status, {}];
});
// Create // Create
mock.onPost(new RegExp(/^\/hrorgcontacts\/?([a-zA-Z0-9\-\;]{0,35})$/)).reply((config: any) => { mock.onPost(new RegExp(/^\/hrorgcontacts\/?([a-zA-Z0-9\-\;]{0,35})$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgcontact 方法: Create"); console.groupCollapsed("实体:hrorgcontact 方法: Create");
...@@ -141,6 +197,33 @@ mock.onPost(new RegExp(/^\/hrorgcontacts\/?([a-zA-Z0-9\-\;]{0,35})$/)).reply((co ...@@ -141,6 +197,33 @@ mock.onPost(new RegExp(/^\/hrorgcontacts\/?([a-zA-Z0-9\-\;]{0,35})$/)).reply((co
return [status, mockDatas[0]]; return [status, mockDatas[0]];
}); });
// Update
mock.onPut(new RegExp(/^\/hrorganizations\/([a-zA-Z0-9\-\;]{1,35})\/hrorgcontacts\/([a-zA-Z0-9\-\;]{1,35})$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgcontact 方法: Update");
console.table({url:config.url, method: config.method, data:config.data});
let status = MockAdapter.mockStatus(config);
if (status !== 200) {
return [status, null];
}
const paramArray:Array<any> = ['organizationid','hrorgcontactid'];
const matchArray:any = new RegExp(/^\/hrorganizations\/([a-zA-Z0-9\-\;]{1,35})\/hrorgcontacts\/([a-zA-Z0-9\-\;]{1,35})$/).exec(config.url);
let tempValue: any = {};
if(matchArray && matchArray.length >1 && paramArray && paramArray.length >0){
paramArray.forEach((item: any, index: number) => {
Object.defineProperty(tempValue, item, {
enumerable: true,
value: matchArray[index + 1]
});
});
}
console.groupCollapsed("response数据 status: "+status+" data: ");
console.table({});
console.groupEnd();
console.groupEnd();
return [status, {}];
});
// Update // Update
mock.onPut(new RegExp(/^\/hrorgcontacts\/?([a-zA-Z0-9\-\;]{0,35})$/)).reply((config: any) => { mock.onPut(new RegExp(/^\/hrorgcontacts\/?([a-zA-Z0-9\-\;]{0,35})$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgcontact 方法: Update"); console.groupCollapsed("实体:hrorgcontact 方法: Update");
...@@ -179,6 +262,25 @@ mock.onPut(new RegExp(/^\/hrorgcontacts\/?([a-zA-Z0-9\-\;]{0,35})$/)).reply((con ...@@ -179,6 +262,25 @@ mock.onPut(new RegExp(/^\/hrorgcontacts\/?([a-zA-Z0-9\-\;]{0,35})$/)).reply((con
return [status, data]; return [status, data];
}); });
// GetDraft
mock.onGet(new RegExp(/^\/hrorganizations\/([a-zA-Z0-9\-\;]{1,35})\/hrorgcontacts\/getdraft$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgcontact 方法: GetDraft");
console.table({url:config.url, method: config.method, data:config.data});
// GetDraft
let status = MockAdapter.mockStatus(config);
if (status !== 200) {
return [status, null];
}
console.groupCollapsed("response数据 status: "+status+" data: ");
console.table({});
console.groupEnd();
console.groupEnd();
return [status, {}];
});
// GetDraft // GetDraft
mock.onGet(new RegExp(/^\/hrorgcontacts\/getdraft$/)).reply((config: any) => { mock.onGet(new RegExp(/^\/hrorgcontacts\/getdraft$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgcontact 方法: GetDraft"); console.groupCollapsed("实体:hrorgcontact 方法: GetDraft");
...@@ -195,6 +297,33 @@ mock.onGet(new RegExp(/^\/hrorgcontacts\/getdraft$/)).reply((config: any) => { ...@@ -195,6 +297,33 @@ mock.onGet(new RegExp(/^\/hrorgcontacts\/getdraft$/)).reply((config: any) => {
return [status, {}]; return [status, {}];
}); });
// CheckKey
mock.onPost(new RegExp(/^\/hrorganizations\/([a-zA-Z0-9\-\;]{1,35})\/hrorgcontacts\/([a-zA-Z0-9\-\;]{1,35})\/checkkey$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgcontact 方法: CheckKey");
console.table({url:config.url, method: config.method, data:config.data});
let status = MockAdapter.mockStatus(config);
if (status !== 200) {
return [status, null];
}
const paramArray:Array<any> = ['organizationid','hrorgcontactid'];
const matchArray:any = new RegExp(/^\/hrorganizations\/([a-zA-Z0-9\-\;]{1,35})\/hrorgcontacts\/([a-zA-Z0-9\-\;]{1,35})\/checkkey$/).exec(config.url);
let tempValue: any = {};
if(matchArray && matchArray.length >1 && paramArray && paramArray.length >0){
paramArray.forEach((item: any, index: number) => {
Object.defineProperty(tempValue, item, {
enumerable: true,
value: matchArray[index + 1]
});
});
}
console.groupCollapsed("response数据 status: "+status+" data: ");
console.table({});
console.groupEnd();
console.groupEnd();
return [status, {}];
});
// CheckKey // CheckKey
mock.onPost(new RegExp(/^\/hrorgcontacts\/?([a-zA-Z0-9\-\;]{0,35})\/checkkey$/)).reply((config: any) => { mock.onPost(new RegExp(/^\/hrorgcontacts\/?([a-zA-Z0-9\-\;]{0,35})\/checkkey$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgcontact 方法: CheckKey"); console.groupCollapsed("实体:hrorgcontact 方法: CheckKey");
...@@ -233,6 +362,33 @@ mock.onPost(new RegExp(/^\/hrorgcontacts\/?([a-zA-Z0-9\-\;]{0,35})\/checkkey$/)) ...@@ -233,6 +362,33 @@ mock.onPost(new RegExp(/^\/hrorgcontacts\/?([a-zA-Z0-9\-\;]{0,35})\/checkkey$/))
return [status, data]; return [status, data];
}); });
// Save
mock.onPost(new RegExp(/^\/hrorganizations\/([a-zA-Z0-9\-\;]{1,35})\/hrorgcontacts\/([a-zA-Z0-9\-\;]{1,35})\/save$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgcontact 方法: Save");
console.table({url:config.url, method: config.method, data:config.data});
let status = MockAdapter.mockStatus(config);
if (status !== 200) {
return [status, null];
}
const paramArray:Array<any> = ['organizationid','hrorgcontactid'];
const matchArray:any = new RegExp(/^\/hrorganizations\/([a-zA-Z0-9\-\;]{1,35})\/hrorgcontacts\/([a-zA-Z0-9\-\;]{1,35})\/save$/).exec(config.url);
let tempValue: any = {};
if(matchArray && matchArray.length >1 && paramArray && paramArray.length >0){
paramArray.forEach((item: any, index: number) => {
Object.defineProperty(tempValue, item, {
enumerable: true,
value: matchArray[index + 1]
});
});
}
console.groupCollapsed("response数据 status: "+status+" data: ");
console.table({});
console.groupEnd();
console.groupEnd();
return [status, {}];
});
// Save // Save
mock.onPost(new RegExp(/^\/hrorgcontacts\/?([a-zA-Z0-9\-\;]{0,35})\/save$/)).reply((config: any) => { mock.onPost(new RegExp(/^\/hrorgcontacts\/?([a-zA-Z0-9\-\;]{0,35})\/save$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgcontact 方法: Save"); console.groupCollapsed("实体:hrorgcontact 方法: Save");
...@@ -271,6 +427,51 @@ mock.onPost(new RegExp(/^\/hrorgcontacts\/?([a-zA-Z0-9\-\;]{0,35})\/save$/)).rep ...@@ -271,6 +427,51 @@ mock.onPost(new RegExp(/^\/hrorgcontacts\/?([a-zA-Z0-9\-\;]{0,35})\/save$/)).rep
return [status, data]; return [status, data];
}); });
// FetchDefault
mock.onGet(new RegExp(/^\/hrorganizations\/([a-zA-Z0-9\-\;]{1,35})\/hrorgcontacts\/fetchdefault$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgcontact 方法: FetchDefault");
console.table({url:config.url, method: config.method, data:config.data});
let status = MockAdapter.mockStatus(config);
if (status !== 200) {
return [status, null];
}
const paramArray:Array<any> = ['organizationid'];
let tempValue: any = {};
const matchArray:any = new RegExp(/^\/hrorganizations\/([a-zA-Z0-9\-\;]{1,35})\/hrorgcontacts\/fetchdefault$/).exec(config.url);
if(matchArray && matchArray.length >1 && paramArray && paramArray.length >0){
paramArray.forEach((item: any, index: number) => {
Object.defineProperty(tempValue, item, {
enumerable: true,
value: matchArray[index + 1]
});
});
}
let items = mockDatas ? mockDatas : [];
if (items.length > 0 && paramArray.length > 0) {
paramArray.forEach((paramkey: any) => {
if (tempValue[paramkey] && tempValue[paramkey].indexOf(";") > 0) {
let keysGrounp: Array<any> = tempValue[paramkey].split(new RegExp(/[\;]/));
let tempArray: Array<any> = [];
keysGrounp.forEach((singlekey: any) => {
let _items = items.filter((item: any) => { return item[paramkey] == singlekey });
if(_items.length >0){
tempArray.push(..._items);
}
})
items = tempArray;
} else {
items = items.filter((item: any) => { return item[paramkey] == tempValue[paramkey] });
}
})
}
console.groupCollapsed("response数据 status: "+status+" data: ");
console.table(items);
console.groupEnd();
console.groupEnd();
return [status, items];
});
// FetchDefault // FetchDefault
mock.onGet(new RegExp(/^\/hrorgcontacts\/fetchdefault$/)).reply((config: any) => { mock.onGet(new RegExp(/^\/hrorgcontacts\/fetchdefault$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgcontact 方法: FetchDefault"); console.groupCollapsed("实体:hrorgcontact 方法: FetchDefault");
...@@ -314,15 +515,57 @@ mock.onGet(new RegExp(/^\/hrorgcontacts\/fetchdefault(\?[\w-./?%&=,]*)*$/)).repl ...@@ -314,15 +515,57 @@ mock.onGet(new RegExp(/^\/hrorgcontacts\/fetchdefault(\?[\w-./?%&=,]*)*$/)).repl
console.groupEnd(); console.groupEnd();
return [status, records ? records : []]; return [status, records ? records : []];
}); });
// URI参数传递情况未实现
// URI参数传递情况未实现
// URI参数传递情况未实现
// URI参数传递情况未实现
// URI参数传递情况未实现
// URI参数传递情况未实现
// URI参数传递情况未实现 // URI参数传递情况未实现
// URI参数传递情况未实现
// URI参数传递情况未实现 // URI参数传递情况未实现
// URI参数传递情况未实现 // URI参数传递情况未实现
// URI参数传递情况未实现 // URI参数传递情况未实现
// URI参数传递情况未实现 // URI参数传递情况未实现
// URI参数传递情况未实现 // URI参数传递情况未实现
// URI参数传递情况未实现 // URI参数传递情况未实现
// Remove
mock.onDelete(new RegExp(/^\/hrorganizations\/([a-zA-Z0-9\-\;]{1,35})\/hrorgcontacts\/([a-zA-Z0-9\-\;]{1,35})$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgcontact 方法: Remove");
console.table({url:config.url, method: config.method, data:config.data});
let status = MockAdapter.mockStatus(config);
if (status !== 200) {
return [status, null];
}
const paramArray:Array<any> = ['organizationid','hrorgcontactid'];
const matchArray:any = new RegExp(/^\/hrorganizations\/([a-zA-Z0-9\-\;]{1,35})\/hrorgcontacts\/([a-zA-Z0-9\-\;]{1,35})$/).exec(config.url);
let tempValue: any = {};
if(matchArray && matchArray.length >1 && paramArray && paramArray.length >0){
paramArray.forEach((item: any, index: number) => {
Object.defineProperty(tempValue, item, {
enumerable: true,
value: matchArray[index + 1]
});
});
}
let items = mockDatas ? mockDatas : [];
let _items = items.find((item: any) => Object.is(item.hrorgcontactid, tempValue.hrorgcontactid));
console.groupCollapsed("response数据 status: "+status+" data: ");
console.table(_items?_items:{});
console.groupEnd();
console.groupEnd();
return [status, _items?_items:{}];
});
// Remove // Remove
mock.onDelete(new RegExp(/^\/hrorgcontacts\/([a-zA-Z0-9\-\;]{1,35})$/)).reply((config: any) => { mock.onDelete(new RegExp(/^\/hrorgcontacts\/([a-zA-Z0-9\-\;]{1,35})$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgcontact 方法: Remove"); console.groupCollapsed("实体:hrorgcontact 方法: Remove");
...@@ -351,6 +594,34 @@ mock.onDelete(new RegExp(/^\/hrorgcontacts\/([a-zA-Z0-9\-\;]{1,35})$/)).reply((c ...@@ -351,6 +594,34 @@ mock.onDelete(new RegExp(/^\/hrorgcontacts\/([a-zA-Z0-9\-\;]{1,35})$/)).reply((c
return [status, _items?_items:{}]; return [status, _items?_items:{}];
}); });
// Get
mock.onGet(new RegExp(/^\/hrorganizations\/([a-zA-Z0-9\-\;]{1,35})\/hrorgcontacts\/([a-zA-Z0-9\-\;]{1,35})$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgcontact 方法: Get");
console.table({url:config.url, method: config.method, data:config.data});
let status = MockAdapter.mockStatus(config);
if (status !== 200) {
return [status, null];
}
const paramArray:Array<any> = ['organizationid','hrorgcontactid'];
const matchArray:any = new RegExp(/^\/hrorganizations\/([a-zA-Z0-9\-\;]{1,35})\/hrorgcontacts\/([a-zA-Z0-9\-\;]{1,35})$/).exec(config.url);
let tempValue: any = {};
if(matchArray && matchArray.length >1 && paramArray && paramArray.length >0){
paramArray.forEach((item: any, index: number) => {
Object.defineProperty(tempValue, item, {
enumerable: true,
value: matchArray[index + 1]
});
});
}
let items = mockDatas ? mockDatas : [];
let _items = items.find((item: any) => Object.is(item.hrorgcontactid, tempValue.hrorgcontactid));
console.groupCollapsed("response数据 status: "+status+" data: ");
console.table(_items?_items:{});
console.groupEnd();
console.groupEnd();
return [status, _items?_items:{}];
});
// Get // Get
mock.onGet(new RegExp(/^\/hrorgcontacts\/([a-zA-Z0-9\-\;]{1,35})$/)).reply((config: any) => { mock.onGet(new RegExp(/^\/hrorgcontacts\/([a-zA-Z0-9\-\;]{1,35})$/)).reply((config: any) => {
console.groupCollapsed("实体:hrorgcontact 方法: Get"); console.groupCollapsed("实体:hrorgcontact 方法: Get");
......
...@@ -563,7 +563,12 @@ export class HROrgAddressGridViewBase extends GridViewBase { ...@@ -563,7 +563,12 @@ export class HROrgAddressGridViewBase extends GridViewBase {
if(args.length >0){ if(args.length >0){
Object.assign(tempContext,args[0]); Object.assign(tempContext,args[0]);
} }
const deResParameters: any[] = []; let deResParameters: any[] = [];
if(tempContext.hrorganization && true){
deResParameters = [
{ pathName: 'hrorganizations', parameterName: 'hrorganization' },
]
}
const parameters: any[] = [ const parameters: any[] = [
{ pathName: 'hrorgaddresses', parameterName: 'hrorgaddress' }, { pathName: 'hrorgaddresses', parameterName: 'hrorgaddress' },
]; ];
...@@ -609,7 +614,12 @@ export class HROrgAddressGridViewBase extends GridViewBase { ...@@ -609,7 +614,12 @@ export class HROrgAddressGridViewBase extends GridViewBase {
if(args.length >0){ if(args.length >0){
Object.assign(tempContext,args[0]); Object.assign(tempContext,args[0]);
} }
const deResParameters: any[] = []; let deResParameters: any[] = [];
if(tempContext.hrorganization && true){
deResParameters = [
{ pathName: 'hrorganizations', parameterName: 'hrorganization' },
]
}
const parameters: any[] = [ const parameters: any[] = [
{ pathName: 'hrorgaddresses', parameterName: 'hrorgaddress' }, { pathName: 'hrorgaddresses', parameterName: 'hrorgaddress' },
]; ];
......
...@@ -206,7 +206,12 @@ export class HROrgAddressV_001Base extends GridView9Base { ...@@ -206,7 +206,12 @@ export class HROrgAddressV_001Base extends GridView9Base {
if(args.length >0){ if(args.length >0){
Object.assign(tempContext,args[0]); Object.assign(tempContext,args[0]);
} }
const deResParameters: any[] = []; let deResParameters: any[] = [];
if(tempContext.hrorganization && true){
deResParameters = [
{ pathName: 'hrorganizations', parameterName: 'hrorganization' },
]
}
const parameters: any[] = [ const parameters: any[] = [
{ pathName: 'hrorgaddresses', parameterName: 'hrorgaddress' }, { pathName: 'hrorgaddresses', parameterName: 'hrorgaddress' },
]; ];
......
...@@ -563,7 +563,12 @@ export class HROrgContactGridViewBase extends GridViewBase { ...@@ -563,7 +563,12 @@ export class HROrgContactGridViewBase extends GridViewBase {
if(args.length >0){ if(args.length >0){
Object.assign(tempContext,args[0]); Object.assign(tempContext,args[0]);
} }
const deResParameters: any[] = []; let deResParameters: any[] = [];
if(tempContext.hrorganization && true){
deResParameters = [
{ pathName: 'hrorganizations', parameterName: 'hrorganization' },
]
}
const parameters: any[] = [ const parameters: any[] = [
{ pathName: 'hrorgcontacts', parameterName: 'hrorgcontact' }, { pathName: 'hrorgcontacts', parameterName: 'hrorgcontact' },
]; ];
...@@ -609,7 +614,12 @@ export class HROrgContactGridViewBase extends GridViewBase { ...@@ -609,7 +614,12 @@ export class HROrgContactGridViewBase extends GridViewBase {
if(args.length >0){ if(args.length >0){
Object.assign(tempContext,args[0]); Object.assign(tempContext,args[0]);
} }
const deResParameters: any[] = []; let deResParameters: any[] = [];
if(tempContext.hrorganization && true){
deResParameters = [
{ pathName: 'hrorganizations', parameterName: 'hrorganization' },
]
}
const parameters: any[] = [ const parameters: any[] = [
{ pathName: 'hrorgcontacts', parameterName: 'hrorgcontact' }, { pathName: 'hrorgcontacts', parameterName: 'hrorgcontact' },
]; ];
......
...@@ -213,7 +213,12 @@ export class HROrgContactV_001Base extends GridView9Base { ...@@ -213,7 +213,12 @@ export class HROrgContactV_001Base extends GridView9Base {
if(args.length >0){ if(args.length >0){
Object.assign(tempContext,args[0]); Object.assign(tempContext,args[0]);
} }
const deResParameters: any[] = []; let deResParameters: any[] = [];
if(tempContext.hrorganization && true){
deResParameters = [
{ pathName: 'hrorganizations', parameterName: 'hrorganization' },
]
}
const parameters: any[] = [ const parameters: any[] = [
{ pathName: 'hrorgcontacts', parameterName: 'hrorgcontact' }, { pathName: 'hrorgcontacts', parameterName: 'hrorgcontact' },
]; ];
...@@ -259,7 +264,12 @@ export class HROrgContactV_001Base extends GridView9Base { ...@@ -259,7 +264,12 @@ export class HROrgContactV_001Base extends GridView9Base {
if(args.length >0){ if(args.length >0){
Object.assign(tempContext,args[0]); Object.assign(tempContext,args[0]);
} }
const deResParameters: any[] = []; let deResParameters: any[] = [];
if(tempContext.hrorganization && true){
deResParameters = [
{ pathName: 'hrorganizations', parameterName: 'hrorganization' },
]
}
const parameters: any[] = [ const parameters: any[] = [
{ pathName: 'hrorgcontacts', parameterName: 'hrorgcontact' }, { pathName: 'hrorgcontacts', parameterName: 'hrorgcontact' },
]; ];
......
...@@ -85,6 +85,21 @@ const router = new Router({ ...@@ -85,6 +85,21 @@ const router = new Router({
}, },
component: () => import('@pages/base/hrorganization-grid-view/hrorganization-grid-view.vue'), component: () => import('@pages/base/hrorganization-grid-view/hrorganization-grid-view.vue'),
}, },
{
path: 'hrorganizations/:hrorganization?/hrorgcontacts/:hrorgcontact?/editview/:editview?',
meta: {
caption: 'entities.hrorgcontact.views.editview.title',
info:'',
parameters: [
{ pathName: 'pim', parameterName: 'pim' },
{ pathName: 'hrorganizations', parameterName: 'hrorganization' },
{ pathName: 'hrorgcontacts', parameterName: 'hrorgcontact' },
{ pathName: 'editview', parameterName: 'editview' },
],
requireAuth: true,
},
component: () => import('@pages/base/hrorg-contact-edit-view/hrorg-contact-edit-view.vue'),
},
{ {
path: 'hrorgcontacts/:hrorgcontact?/editview/:editview?', path: 'hrorgcontacts/:hrorgcontact?/editview/:editview?',
meta: { meta: {
...@@ -127,6 +142,21 @@ const router = new Router({ ...@@ -127,6 +142,21 @@ const router = new Router({
}, },
component: () => import('@pages/base/hrlegal-v-002/hrlegal-v-002.vue'), component: () => import('@pages/base/hrlegal-v-002/hrlegal-v-002.vue'),
}, },
{
path: 'hrorganizations/:hrorganization?/hrorgaddresses/:hrorgaddress?/editview/:editview?',
meta: {
caption: 'entities.hrorgaddress.views.editview.title',
info:'',
parameters: [
{ pathName: 'pim', parameterName: 'pim' },
{ pathName: 'hrorganizations', parameterName: 'hrorganization' },
{ pathName: 'hrorgaddresses', parameterName: 'hrorgaddress' },
{ pathName: 'editview', parameterName: 'editview' },
],
requireAuth: true,
},
component: () => import('@pages/base/hrorg-address-edit-view/hrorg-address-edit-view.vue'),
},
{ {
path: 'hrorgaddresses/:hrorgaddress?/editview/:editview?', path: 'hrorgaddresses/:hrorgaddress?/editview/:editview?',
meta: { meta: {
...@@ -141,6 +171,21 @@ const router = new Router({ ...@@ -141,6 +171,21 @@ const router = new Router({
}, },
component: () => import('@pages/base/hrorg-address-edit-view/hrorg-address-edit-view.vue'), component: () => import('@pages/base/hrorg-address-edit-view/hrorg-address-edit-view.vue'),
}, },
{
path: 'hrorganizations/:hrorganization?/hrorgcontacts/:hrorgcontact?/gridview/:gridview?',
meta: {
caption: 'entities.hrorgcontact.views.gridview.title',
info:'',
parameters: [
{ pathName: 'pim', parameterName: 'pim' },
{ pathName: 'hrorganizations', parameterName: 'hrorganization' },
{ pathName: 'hrorgcontacts', parameterName: 'hrorgcontact' },
{ pathName: 'gridview', parameterName: 'gridview' },
],
requireAuth: true,
},
component: () => import('@pages/base/hrorg-contact-grid-view/hrorg-contact-grid-view.vue'),
},
{ {
path: 'hrorgcontacts/:hrorgcontact?/gridview/:gridview?', path: 'hrorgcontacts/:hrorgcontact?/gridview/:gridview?',
meta: { meta: {
...@@ -155,6 +200,21 @@ const router = new Router({ ...@@ -155,6 +200,21 @@ const router = new Router({
}, },
component: () => import('@pages/base/hrorg-contact-grid-view/hrorg-contact-grid-view.vue'), component: () => import('@pages/base/hrorg-contact-grid-view/hrorg-contact-grid-view.vue'),
}, },
{
path: 'hrorganizations/:hrorganization?/hrorgaddresses/:hrorgaddress?/gridview/:gridview?',
meta: {
caption: 'entities.hrorgaddress.views.gridview.title',
info:'',
parameters: [
{ pathName: 'pim', parameterName: 'pim' },
{ pathName: 'hrorganizations', parameterName: 'hrorganization' },
{ pathName: 'hrorgaddresses', parameterName: 'hrorgaddress' },
{ pathName: 'gridview', parameterName: 'gridview' },
],
requireAuth: true,
},
component: () => import('@pages/base/hrorg-address-grid-view/hrorg-address-grid-view.vue'),
},
{ {
path: 'hrorgaddresses/:hrorgaddress?/gridview/:gridview?', path: 'hrorgaddresses/:hrorgaddress?/gridview/:gridview?',
meta: { meta: {
...@@ -239,6 +299,21 @@ const router = new Router({ ...@@ -239,6 +299,21 @@ const router = new Router({
}, },
component: () => import('@pages/base/hrlegal-tab-exp-view/hrlegal-tab-exp-view.vue'), component: () => import('@pages/base/hrlegal-tab-exp-view/hrlegal-tab-exp-view.vue'),
}, },
{
path: 'hrorganizations/:hrorganization?/hrorgcontacts/:hrorgcontact?/v_001/:v_001?',
meta: {
caption: 'entities.hrorgcontact.views.v_001.title',
info:'',
parameters: [
{ pathName: 'pim', parameterName: 'pim' },
{ pathName: 'hrorganizations', parameterName: 'hrorganization' },
{ pathName: 'hrorgcontacts', parameterName: 'hrorgcontact' },
{ pathName: 'v_001', parameterName: 'v_001' },
],
requireAuth: true,
},
component: () => import('@pages/base/hrorg-contact-v-001/hrorg-contact-v-001.vue'),
},
{ {
path: 'hrorgcontacts/:hrorgcontact?/v_001/:v_001?', path: 'hrorgcontacts/:hrorgcontact?/v_001/:v_001?',
meta: { meta: {
...@@ -253,6 +328,21 @@ const router = new Router({ ...@@ -253,6 +328,21 @@ const router = new Router({
}, },
component: () => import('@pages/base/hrorg-contact-v-001/hrorg-contact-v-001.vue'), component: () => import('@pages/base/hrorg-contact-v-001/hrorg-contact-v-001.vue'),
}, },
{
path: 'hrorganizations/:hrorganization?/hrorgaddresses/:hrorgaddress?/v_001/:v_001?',
meta: {
caption: 'entities.hrorgaddress.views.v_001.title',
info:'',
parameters: [
{ pathName: 'pim', parameterName: 'pim' },
{ pathName: 'hrorganizations', parameterName: 'hrorganization' },
{ pathName: 'hrorgaddresses', parameterName: 'hrorgaddress' },
{ pathName: 'v_001', parameterName: 'v_001' },
],
requireAuth: true,
},
component: () => import('@pages/base/hrorg-address-v-001/hrorg-address-v-001.vue'),
},
{ {
path: 'hrorgaddresses/:hrorgaddress?/v_001/:v_001?', path: 'hrorgaddresses/:hrorgaddress?/v_001/:v_001?',
meta: { meta: {
......
...@@ -48,6 +48,11 @@ export default class HROrgAddressServiceBase extends EntityService { ...@@ -48,6 +48,11 @@ export default class HROrgAddressServiceBase extends EntityService {
* @memberof HROrgAddressServiceBase * @memberof HROrgAddressServiceBase
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
if(context.hrorganization && context.hrorgaddress){
let res:any = Http.getInstance().get(`/hrorganizations/${context.hrorganization}/hrorgaddresses/${context.hrorgaddress}/select`,isloading);
return res;
}
let res:any = Http.getInstance().get(`/hrorgaddresses/${context.hrorgaddress}/select`,isloading); let res:any = Http.getInstance().get(`/hrorgaddresses/${context.hrorgaddress}/select`,isloading);
return res; return res;
...@@ -63,6 +68,20 @@ export default class HROrgAddressServiceBase extends EntityService { ...@@ -63,6 +68,20 @@ export default class HROrgAddressServiceBase extends EntityService {
* @memberof HROrgAddressServiceBase * @memberof HROrgAddressServiceBase
*/ */
public async Create(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Create(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
if(context.hrorganization && true){
let masterData:any = {};
Object.assign(data,masterData);
if(!data.srffrontuf || data.srffrontuf !== "1"){
data[this.APPDEKEY] = null;
}
if(data.srffrontuf){
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/hrorganizations/${context.hrorganization}/hrorgaddresses`,data,isloading);
return res;
}
let masterData:any = {}; let masterData:any = {};
Object.assign(data,masterData); Object.assign(data,masterData);
if(!data.srffrontuf || data.srffrontuf !== "1"){ if(!data.srffrontuf || data.srffrontuf !== "1"){
...@@ -87,6 +106,13 @@ export default class HROrgAddressServiceBase extends EntityService { ...@@ -87,6 +106,13 @@ export default class HROrgAddressServiceBase extends EntityService {
* @memberof HROrgAddressServiceBase * @memberof HROrgAddressServiceBase
*/ */
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
if(context.hrorganization && context.hrorgaddress){
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/hrorganizations/${context.hrorganization}/hrorgaddresses/${context.hrorgaddress}`,data,isloading);
return res;
}
let masterData:any = {}; let masterData:any = {};
Object.assign(data,masterData); Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/hrorgaddresses/${context.hrorgaddress}`,data,isloading); let res:any = await Http.getInstance().put(`/hrorgaddresses/${context.hrorgaddress}`,data,isloading);
...@@ -104,6 +130,10 @@ export default class HROrgAddressServiceBase extends EntityService { ...@@ -104,6 +130,10 @@ export default class HROrgAddressServiceBase extends EntityService {
* @memberof HROrgAddressServiceBase * @memberof HROrgAddressServiceBase
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
if(context.hrorganization && context.hrorgaddress){
let res:any = Http.getInstance().delete(`/hrorganizations/${context.hrorganization}/hrorgaddresses/${context.hrorgaddress}`,isloading);
return res;
}
let res:any = Http.getInstance().delete(`/hrorgaddresses/${context.hrorgaddress}`,isloading); let res:any = Http.getInstance().delete(`/hrorgaddresses/${context.hrorgaddress}`,isloading);
return res; return res;
} }
...@@ -118,6 +148,11 @@ export default class HROrgAddressServiceBase extends EntityService { ...@@ -118,6 +148,11 @@ export default class HROrgAddressServiceBase extends EntityService {
* @memberof HROrgAddressServiceBase * @memberof HROrgAddressServiceBase
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
if(context.hrorganization && context.hrorgaddress){
let res:any = await Http.getInstance().get(`/hrorganizations/${context.hrorganization}/hrorgaddresses/${context.hrorgaddress}`,isloading);
return res;
}
let res:any = await Http.getInstance().get(`/hrorgaddresses/${context.hrorgaddress}`,isloading); let res:any = await Http.getInstance().get(`/hrorgaddresses/${context.hrorgaddress}`,isloading);
return res; return res;
...@@ -133,6 +168,12 @@ export default class HROrgAddressServiceBase extends EntityService { ...@@ -133,6 +168,12 @@ export default class HROrgAddressServiceBase extends EntityService {
* @memberof HROrgAddressServiceBase * @memberof HROrgAddressServiceBase
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
if(context.hrorganization && true){
let res:any = await Http.getInstance().get(`/hrorganizations/${context.hrorganization}/hrorgaddresses/getdraft`,isloading);
res.data.hrorgaddress = data.hrorgaddress;
return res;
}
let res:any = await Http.getInstance().get(`/hrorgaddresses/getdraft`,isloading); let res:any = await Http.getInstance().get(`/hrorgaddresses/getdraft`,isloading);
res.data.hrorgaddress = data.hrorgaddress; res.data.hrorgaddress = data.hrorgaddress;
...@@ -149,6 +190,13 @@ export default class HROrgAddressServiceBase extends EntityService { ...@@ -149,6 +190,13 @@ export default class HROrgAddressServiceBase extends EntityService {
* @memberof HROrgAddressServiceBase * @memberof HROrgAddressServiceBase
*/ */
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
if(context.hrorganization && context.hrorgaddress){
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/hrorganizations/${context.hrorganization}/hrorgaddresses/${context.hrorgaddress}/checkkey`,data,isloading);
return res;
}
let res:any = Http.getInstance().post(`/hrorgaddresses/${context.hrorgaddress}/checkkey`,data,isloading); let res:any = Http.getInstance().post(`/hrorgaddresses/${context.hrorgaddress}/checkkey`,data,isloading);
return res; return res;
} }
...@@ -163,6 +211,13 @@ export default class HROrgAddressServiceBase extends EntityService { ...@@ -163,6 +211,13 @@ export default class HROrgAddressServiceBase extends EntityService {
* @memberof HROrgAddressServiceBase * @memberof HROrgAddressServiceBase
*/ */
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
if(context.hrorganization && context.hrorgaddress){
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/hrorganizations/${context.hrorganization}/hrorgaddresses/${context.hrorgaddress}/save`,data,isloading);
return res;
}
let masterData:any = {}; let masterData:any = {};
Object.assign(data,masterData); Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/hrorgaddresses/${context.hrorgaddress}/save`,data,isloading); let res:any = await Http.getInstance().post(`/hrorgaddresses/${context.hrorgaddress}/save`,data,isloading);
...@@ -180,6 +235,11 @@ export default class HROrgAddressServiceBase extends EntityService { ...@@ -180,6 +235,11 @@ export default class HROrgAddressServiceBase extends EntityService {
* @memberof HROrgAddressServiceBase * @memberof HROrgAddressServiceBase
*/ */
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
if(context.hrorganization && true){
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/hrorganizations/${context.hrorganization}/hrorgaddresses/fetchdefault`,tempData,isloading);
return res;
}
let tempData:any = JSON.parse(JSON.stringify(data)); let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/hrorgaddresses/fetchdefault`,tempData,isloading); let res:any = Http.getInstance().get(`/hrorgaddresses/fetchdefault`,tempData,isloading);
return res; return res;
......
...@@ -48,6 +48,11 @@ export default class HROrgContactServiceBase extends EntityService { ...@@ -48,6 +48,11 @@ export default class HROrgContactServiceBase extends EntityService {
* @memberof HROrgContactServiceBase * @memberof HROrgContactServiceBase
*/ */
public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Select(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
if(context.hrorganization && context.hrorgcontact){
let res:any = Http.getInstance().get(`/hrorganizations/${context.hrorganization}/hrorgcontacts/${context.hrorgcontact}/select`,isloading);
return res;
}
let res:any = Http.getInstance().get(`/hrorgcontacts/${context.hrorgcontact}/select`,isloading); let res:any = Http.getInstance().get(`/hrorgcontacts/${context.hrorgcontact}/select`,isloading);
return res; return res;
...@@ -63,6 +68,20 @@ export default class HROrgContactServiceBase extends EntityService { ...@@ -63,6 +68,20 @@ export default class HROrgContactServiceBase extends EntityService {
* @memberof HROrgContactServiceBase * @memberof HROrgContactServiceBase
*/ */
public async Create(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Create(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
if(context.hrorganization && true){
let masterData:any = {};
Object.assign(data,masterData);
if(!data.srffrontuf || data.srffrontuf !== "1"){
data[this.APPDEKEY] = null;
}
if(data.srffrontuf){
delete data.srffrontuf;
}
let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/hrorganizations/${context.hrorganization}/hrorgcontacts`,data,isloading);
return res;
}
let masterData:any = {}; let masterData:any = {};
Object.assign(data,masterData); Object.assign(data,masterData);
if(!data.srffrontuf || data.srffrontuf !== "1"){ if(!data.srffrontuf || data.srffrontuf !== "1"){
...@@ -87,6 +106,13 @@ export default class HROrgContactServiceBase extends EntityService { ...@@ -87,6 +106,13 @@ export default class HROrgContactServiceBase extends EntityService {
* @memberof HROrgContactServiceBase * @memberof HROrgContactServiceBase
*/ */
public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Update(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
if(context.hrorganization && context.hrorgcontact){
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/hrorganizations/${context.hrorganization}/hrorgcontacts/${context.hrorgcontact}`,data,isloading);
return res;
}
let masterData:any = {}; let masterData:any = {};
Object.assign(data,masterData); Object.assign(data,masterData);
let res:any = await Http.getInstance().put(`/hrorgcontacts/${context.hrorgcontact}`,data,isloading); let res:any = await Http.getInstance().put(`/hrorgcontacts/${context.hrorgcontact}`,data,isloading);
...@@ -104,6 +130,10 @@ export default class HROrgContactServiceBase extends EntityService { ...@@ -104,6 +130,10 @@ export default class HROrgContactServiceBase extends EntityService {
* @memberof HROrgContactServiceBase * @memberof HROrgContactServiceBase
*/ */
public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Remove(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
if(context.hrorganization && context.hrorgcontact){
let res:any = Http.getInstance().delete(`/hrorganizations/${context.hrorganization}/hrorgcontacts/${context.hrorgcontact}`,isloading);
return res;
}
let res:any = Http.getInstance().delete(`/hrorgcontacts/${context.hrorgcontact}`,isloading); let res:any = Http.getInstance().delete(`/hrorgcontacts/${context.hrorgcontact}`,isloading);
return res; return res;
} }
...@@ -118,6 +148,11 @@ export default class HROrgContactServiceBase extends EntityService { ...@@ -118,6 +148,11 @@ export default class HROrgContactServiceBase extends EntityService {
* @memberof HROrgContactServiceBase * @memberof HROrgContactServiceBase
*/ */
public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Get(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
if(context.hrorganization && context.hrorgcontact){
let res:any = await Http.getInstance().get(`/hrorganizations/${context.hrorganization}/hrorgcontacts/${context.hrorgcontact}`,isloading);
return res;
}
let res:any = await Http.getInstance().get(`/hrorgcontacts/${context.hrorgcontact}`,isloading); let res:any = await Http.getInstance().get(`/hrorgcontacts/${context.hrorgcontact}`,isloading);
return res; return res;
...@@ -133,6 +168,12 @@ export default class HROrgContactServiceBase extends EntityService { ...@@ -133,6 +168,12 @@ export default class HROrgContactServiceBase extends EntityService {
* @memberof HROrgContactServiceBase * @memberof HROrgContactServiceBase
*/ */
public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async GetDraft(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
if(context.hrorganization && true){
let res:any = await Http.getInstance().get(`/hrorganizations/${context.hrorganization}/hrorgcontacts/getdraft`,isloading);
res.data.hrorgcontact = data.hrorgcontact;
return res;
}
let res:any = await Http.getInstance().get(`/hrorgcontacts/getdraft`,isloading); let res:any = await Http.getInstance().get(`/hrorgcontacts/getdraft`,isloading);
res.data.hrorgcontact = data.hrorgcontact; res.data.hrorgcontact = data.hrorgcontact;
...@@ -149,6 +190,13 @@ export default class HROrgContactServiceBase extends EntityService { ...@@ -149,6 +190,13 @@ export default class HROrgContactServiceBase extends EntityService {
* @memberof HROrgContactServiceBase * @memberof HROrgContactServiceBase
*/ */
public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async CheckKey(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
if(context.hrorganization && context.hrorgcontact){
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/hrorganizations/${context.hrorganization}/hrorgcontacts/${context.hrorgcontact}/checkkey`,data,isloading);
return res;
}
let res:any = Http.getInstance().post(`/hrorgcontacts/${context.hrorgcontact}/checkkey`,data,isloading); let res:any = Http.getInstance().post(`/hrorgcontacts/${context.hrorgcontact}/checkkey`,data,isloading);
return res; return res;
} }
...@@ -163,6 +211,13 @@ export default class HROrgContactServiceBase extends EntityService { ...@@ -163,6 +211,13 @@ export default class HROrgContactServiceBase extends EntityService {
* @memberof HROrgContactServiceBase * @memberof HROrgContactServiceBase
*/ */
public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async Save(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
if(context.hrorganization && context.hrorgcontact){
let masterData:any = {};
Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/hrorganizations/${context.hrorganization}/hrorgcontacts/${context.hrorgcontact}/save`,data,isloading);
return res;
}
let masterData:any = {}; let masterData:any = {};
Object.assign(data,masterData); Object.assign(data,masterData);
let res:any = await Http.getInstance().post(`/hrorgcontacts/${context.hrorgcontact}/save`,data,isloading); let res:any = await Http.getInstance().post(`/hrorgcontacts/${context.hrorgcontact}/save`,data,isloading);
...@@ -180,6 +235,11 @@ export default class HROrgContactServiceBase extends EntityService { ...@@ -180,6 +235,11 @@ export default class HROrgContactServiceBase extends EntityService {
* @memberof HROrgContactServiceBase * @memberof HROrgContactServiceBase
*/ */
public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> { public async FetchDefault(context: any = {},data: any = {}, isloading?: boolean): Promise<any> {
if(context.hrorganization && true){
let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/hrorganizations/${context.hrorganization}/hrorgcontacts/fetchdefault`,tempData,isloading);
return res;
}
let tempData:any = JSON.parse(JSON.stringify(data)); let tempData:any = JSON.parse(JSON.stringify(data));
let res:any = Http.getInstance().get(`/hrorgcontacts/fetchdefault`,tempData,isloading); let res:any = Http.getInstance().get(`/hrorgcontacts/fetchdefault`,tempData,isloading);
return res; return res;
......
...@@ -73,6 +73,8 @@ export default class HROrganizationServiceBase extends EntityService { ...@@ -73,6 +73,8 @@ export default class HROrganizationServiceBase extends EntityService {
} }
let tempContext:any = JSON.parse(JSON.stringify(context)); let tempContext:any = JSON.parse(JSON.stringify(context));
let res:any = await Http.getInstance().post(`/hrorganizations`,data,isloading); let res:any = await Http.getInstance().post(`/hrorganizations`,data,isloading);
this.tempStorage.setItem(tempContext.srfsessionkey+'_hrorgaddresses',JSON.stringify(res.data.hrorgaddresses?res.data.hrorgaddresses:[]));
this.tempStorage.setItem(tempContext.srfsessionkey+'_hrorgcontacts',JSON.stringify(res.data.hrorgcontacts?res.data.hrorgcontacts:[]));
return res; return res;
} }
......
...@@ -112,6 +112,7 @@ ...@@ -112,6 +112,7 @@
paramItem='hrlegal' paramItem='hrlegal'
:parentdata='{"srfparentdename":"HRLEGAL","SRFPARENTTYPE":"CUSTOM"}' :parentdata='{"srfparentdename":"HRLEGAL","SRFPARENTTYPE":"CUSTOM"}'
:parameters="[ :parameters="[
{ pathName: 'hrorganizations', parameterName: 'hrorganization' },
]" ]"
:context="context" :context="context"
:viewparams="viewparams" :viewparams="viewparams"
...@@ -146,6 +147,7 @@ ...@@ -146,6 +147,7 @@
paramItem='hrlegal' paramItem='hrlegal'
:parentdata='{"srfparentdename":"HRLEGAL","SRFPARENTTYPE":"CUSTOM"}' :parentdata='{"srfparentdename":"HRLEGAL","SRFPARENTTYPE":"CUSTOM"}'
:parameters="[ :parameters="[
{ pathName: 'hrorganizations', parameterName: 'hrorganization' },
]" ]"
:context="context" :context="context"
:viewparams="viewparams" :viewparams="viewparams"
......
...@@ -77,6 +77,7 @@ export class MainEditFormBase extends EditFormControlBase { ...@@ -77,6 +77,7 @@ export class MainEditFormBase extends EditFormControlBase {
orgcode: null, orgcode: null,
shortname: null, shortname: null,
showorder: null, showorder: null,
organizationtype: null,
bank: null, bank: null,
bankaccount: null, bankaccount: null,
uscc: null, uscc: null,
...@@ -142,6 +143,8 @@ export class MainEditFormBase extends EditFormControlBase { ...@@ -142,6 +143,8 @@ export class MainEditFormBase extends EditFormControlBase {
showorder: new FormItemModel({ caption: '排序号', detailType: 'FORMITEM', name: 'showorder', visible: true, isShowCaption: true, form: this, showMoreMode: 0, disabled: false, enableCond: 3 }), showorder: new FormItemModel({ caption: '排序号', detailType: 'FORMITEM', name: 'showorder', visible: true, isShowCaption: true, form: this, showMoreMode: 0, disabled: false, enableCond: 3 }),
organizationtype: new FormItemModel({ caption: '组织类型', detailType: 'FORMITEM', name: 'organizationtype', visible: true, isShowCaption: true, form: this, showMoreMode: 0, disabled: false, enableCond: 3 }),
bank: new FormItemModel({ caption: '开户行', detailType: 'FORMITEM', name: 'bank', visible: true, isShowCaption: true, form: this, showMoreMode: 0, disabled: false, enableCond: 3 }), bank: new FormItemModel({ caption: '开户行', detailType: 'FORMITEM', name: 'bank', visible: true, isShowCaption: true, form: this, showMoreMode: 0, disabled: false, enableCond: 3 }),
bankaccount: new FormItemModel({ caption: '银行账号', detailType: 'FORMITEM', name: 'bankaccount', visible: true, isShowCaption: true, form: this, showMoreMode: 0, disabled: false, enableCond: 3 }), bankaccount: new FormItemModel({ caption: '银行账号', detailType: 'FORMITEM', name: 'bankaccount', visible: true, isShowCaption: true, form: this, showMoreMode: 0, disabled: false, enableCond: 3 }),
...@@ -153,4 +156,24 @@ export class MainEditFormBase extends EditFormControlBase { ...@@ -153,4 +156,24 @@ export class MainEditFormBase extends EditFormControlBase {
legalid: new FormItemModel({ caption: '法人标识', detailType: 'FORMITEM', name: 'legalid', visible: true, isShowCaption: true, form: this, showMoreMode: 0, disabled: false, enableCond: 3 }), legalid: new FormItemModel({ caption: '法人标识', detailType: 'FORMITEM', name: 'legalid', visible: true, isShowCaption: true, form: this, showMoreMode: 0, disabled: false, enableCond: 3 }),
}; };
/**
* 新建默认值
* @memberof MainEditFormBase
*/
public createDefault(){
if (this.data.hasOwnProperty('organizationtype')) {
this.data['organizationtype'] = 'LEGAL';
}
}
/**
* 更新默认值
* @memberof MainEditFormBase
*/
public updateDefault(){
if (this.data.hasOwnProperty('organizationtype') && !this.data.organizationtype) {
this.data['organizationtype'] = 'LEGAL';
}
}
} }
\ No newline at end of file
...@@ -75,6 +75,11 @@ export default class MainModel { ...@@ -75,6 +75,11 @@ export default class MainModel {
prop: 'showorder', prop: 'showorder',
dataType: 'INHERIT', dataType: 'INHERIT',
}, },
{
name: 'organizationtype',
prop: 'organizationtype',
dataType: 'INHERIT',
},
{ {
name: 'bank', name: 'bank',
prop: 'bank', prop: 'bank',
......
...@@ -36,6 +36,11 @@ export default class MainModel { ...@@ -36,6 +36,11 @@ export default class MainModel {
prop: 'hrorgaddressname', prop: 'hrorgaddressname',
dataType: 'TEXT', dataType: 'TEXT',
}, },
{
name: 'hrorganizationid',
prop: 'hrorganizationid',
dataType: 'PICKUP',
},
{ {
name: 'mainaddress', name: 'mainaddress',
prop: 'mainaddress', prop: 'mainaddress',
......
...@@ -31,6 +31,11 @@ export default class MainModel { ...@@ -31,6 +31,11 @@ export default class MainModel {
prop: 'maincontact', prop: 'maincontact',
dataType: 'YESNO', dataType: 'YESNO',
}, },
{
name: 'hrorganizationid',
prop: 'hrorganizationid',
dataType: 'PICKUP',
},
{ {
name: 'contactinfo', name: 'contactinfo',
prop: 'contactinfo', prop: 'contactinfo',
......
...@@ -37,11 +37,11 @@ ...@@ -37,11 +37,11 @@
git clone -b master $para2 ibizhumanresources/ git clone -b master $para2 ibizhumanresources/
export NODE_OPTIONS=--max-old-space-size=4096 export NODE_OPTIONS=--max-old-space-size=4096
cd ibizhumanresources/ cd ibizhumanresources/
mvn clean package -Phrapi mvn clean package -Ppim
cd humanresource-provider/humanresource-provider-hrapi cd humanresource-app/humanresource-app-pim
mvn -Phrapi docker:build mvn -Ppim docker:build
mvn -Phrapi docker:push mvn -Ppim docker:push
docker -H $para1 stack deploy --compose-file=src/main/docker/humanresource-provider-hrapi.yaml iBizEE --with-registry-auth docker -H $para1 stack deploy --compose-file=src/main/docker/humanresource-app-pim.yaml iBizEE --with-registry-auth
</command> </command>
</hudson.tasks.Shell> </hudson.tasks.Shell>
</builders> </builders>
......
...@@ -12,6 +12,6 @@ CMD echo "The application will start in ${IBIZ_SLEEP}s..." && \ ...@@ -12,6 +12,6 @@ CMD echo "The application will start in ${IBIZ_SLEEP}s..." && \
sleep ${IBIZ_SLEEP} && \ sleep ${IBIZ_SLEEP} && \
java ${JAVA_OPTS} -Djava.security.egd=file:/dev/./urandom -jar /humanresource-app-pim.jar java ${JAVA_OPTS} -Djava.security.egd=file:/dev/./urandom -jar /humanresource-app-pim.jar
EXPOSE 8080 EXPOSE 10327
ADD humanresource-app-pim.jar /humanresource-app-pim.jar ADD humanresource-app-pim.jar /humanresource-app-pim.jar
...@@ -3,9 +3,25 @@ services: ...@@ -3,9 +3,25 @@ services:
humanresource-app-pim: humanresource-app-pim:
image: registry.cn-shanghai.aliyuncs.com/ibizsys/humanresource-app-pim:latest image: registry.cn-shanghai.aliyuncs.com/ibizsys/humanresource-app-pim:latest
ports: ports:
- "8080:8080" - "10327:10327"
networks: networks:
- agent_network - agent_network
environment:
- SPRING_CLOUD_NACOS_DISCOVERY_IP=172.16.240.110
- SERVER_PORT=10327
- SPRING_CLOUD_NACOS_DISCOVERY_SERVER-ADDR=172.16.240.110:8848
- SPRING_REDIS_HOST=172.16.240.110
- SPRING_REDIS_PORT=6379
- SPRING_REDIS_DATABASE=0
- SPRING_DATASOURCE_USERNAME=a_LAB01_e85d8801c
- SPRING_DATASOURCE_PASSWORD=b1@@@772
- SPRING_DATASOURCE_URL=jdbc:mysql://172.16.186.185:3306/a_LAB01_e85d8801c?autoReconnect=true&useUnicode=true&characterEncoding=UTF-8&useOldAliasMetadataBehavior=true&allowMultiQueries=true
- SPRING_DATASOURCE_DRIVER-CLASS-NAME=com.mysql.jdbc.Driver
- SPRING_DATASOURCE_DEFAULTSCHEMA=a_LAB01_e85d8801c
- CAS=https://passport.ibizlab.cn
- NACOS=172.16.240.110:8848
- SEATA_REGISTRY_NACOS_SERVER-ADDR=172.16.240.110:8848
- SEATA_ENABLED=true
deploy: deploy:
resources: resources:
limits: limits:
......
...@@ -12,6 +12,6 @@ CMD echo "The application will start in ${IBIZ_SLEEP}s..." && \ ...@@ -12,6 +12,6 @@ CMD echo "The application will start in ${IBIZ_SLEEP}s..." && \
sleep ${IBIZ_SLEEP} && \ sleep ${IBIZ_SLEEP} && \
java ${JAVA_OPTS} -Djava.security.egd=file:/dev/./urandom -jar /humanresource-provider-hrapi.jar java ${JAVA_OPTS} -Djava.security.egd=file:/dev/./urandom -jar /humanresource-provider-hrapi.jar
EXPOSE 10317 EXPOSE 8081
ADD humanresource-provider-hrapi.jar /humanresource-provider-hrapi.jar ADD humanresource-provider-hrapi.jar /humanresource-provider-hrapi.jar
...@@ -3,25 +3,9 @@ services: ...@@ -3,25 +3,9 @@ services:
humanresource-provider-hrapi: humanresource-provider-hrapi:
image: registry.cn-shanghai.aliyuncs.com/ibizsys/humanresource-provider-hrapi:latest image: registry.cn-shanghai.aliyuncs.com/ibizsys/humanresource-provider-hrapi:latest
ports: ports:
- "10317:10317" - "8081:8081"
networks: networks:
- agent_network - agent_network
environment:
- SPRING_CLOUD_NACOS_DISCOVERY_IP=172.16.240.110
- SERVER_PORT=10317
- SPRING_CLOUD_NACOS_DISCOVERY_SERVER-ADDR=172.16.240.110:8848
- SPRING_REDIS_HOST=172.16.240.110
- SPRING_REDIS_PORT=6379
- SPRING_REDIS_DATABASE=0
- SPRING_DATASOURCE_USERNAME=a_LAB01_e85d8801c
- SPRING_DATASOURCE_PASSWORD=b1@@@772
- SPRING_DATASOURCE_URL=jdbc:mysql://172.16.186.185:3306/a_LAB01_e85d8801c?autoReconnect=true&useUnicode=true&characterEncoding=UTF-8&useOldAliasMetadataBehavior=true&allowMultiQueries=true
- SPRING_DATASOURCE_DRIVER-CLASS-NAME=com.mysql.jdbc.Driver
- SPRING_DATASOURCE_DEFAULTSCHEMA=a_LAB01_e85d8801c
- CAS=https://passport.ibizlab.cn
- NACOS=172.16.240.110:8848
- SEATA_REGISTRY_NACOS_SERVER-ADDR=172.16.240.110:8848
- SEATA_ENABLED=true
deploy: deploy:
resources: resources:
limits: limits:
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册