biz9-logic 4.8.226 → 4.8.228
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/biz9_config +1 -1
- package/index.js +6 -8
- package/package.json +1 -1
- package/test.js +3 -2
package/biz9_config
CHANGED
package/index.js
CHANGED
|
@@ -199,14 +199,12 @@ class Page_Logic {
|
|
|
199
199
|
{value:'list',label:'List'},
|
|
200
200
|
];
|
|
201
201
|
};
|
|
202
|
-
static
|
|
202
|
+
static get_section_property_type = (section_id,value_id,is_title) =>{
|
|
203
203
|
//page['section_1_value_1_type'] -- / text,note,photo,list
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
//page['
|
|
208
|
-
//page['section_1_value_1_list_value_2']
|
|
209
|
-
//page['section_1_value_1_list_value_3']
|
|
204
|
+
return !is_title ? 'section_'+section_id + '_value_'+value_id + "_type" : 'Section '+section_id + ' Value '+value_id;
|
|
205
|
+
}
|
|
206
|
+
static get_section_property_type_value = (type,section_id,value_id) =>{
|
|
207
|
+
//page['section_1_value_1_[text,note,photo,list]_value']
|
|
210
208
|
let type_str = '';
|
|
211
209
|
switch(type){
|
|
212
210
|
case 'text':
|
|
@@ -222,7 +220,7 @@ class Page_Logic {
|
|
|
222
220
|
type_str = 'list';
|
|
223
221
|
break;
|
|
224
222
|
};
|
|
225
|
-
return
|
|
223
|
+
return 'section_'+section_id + '_value_'+value_id + "_" + type_str + "_value";
|
|
226
224
|
}
|
|
227
225
|
|
|
228
226
|
static get_section_property_list = (type,section_id,value_id,row_id) =>{
|
package/package.json
CHANGED
package/test.js
CHANGED
|
@@ -32,8 +32,9 @@ describe("connect", () => {
|
|
|
32
32
|
|
|
33
33
|
function(call) {
|
|
34
34
|
console.log('PAGE-SECTION-START');
|
|
35
|
-
console.log(Page_Logic.get_page_section_type_list());
|
|
36
|
-
|
|
35
|
+
//console.log(Page_Logic.get_page_section_type_list());
|
|
36
|
+
console.log(Page_Logic.get_section_property_type(1,2,true));
|
|
37
|
+
//console.log(Page_Logic.get_section_property_type_value('text',1,2,true));
|
|
37
38
|
//console.log(Page_Logic.get_section_property_list(FieldType.SECTION_PROPERTY_TYPE_LIST_VALUE,1,2,3));
|
|
38
39
|
//console.log(Page_Logic.get_section_property_list(FieldType.SECTION_PROPERTY_TYPE_LIST_FIELD,1,2,3));
|
|
39
40
|
console.log('PAGE-SECTION-END');
|