You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
449 B
9 lines
449 B
let {placetype, dateadded, style, ambiance, area, theme, country, status} = input;
|
|
const {globalFunc} = customJS
|
|
const DataType = 'Place'
|
|
const iArray = [placetype, dateadded, style, ambiance, area, theme, country, status];
|
|
const dArray = ["placetype", "dateadded", "style", "ambiance", "area", "theme", "country", "status"];
|
|
let templacetype = globalFunc.Get1stArg(placetype)
|
|
|
|
return globalFunc.getTable(dv, DataType, dArray, iArray, templacetype)
|