biz9-logic 4.8.229 → 4.8.230
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 +3 -1
- package/package.json +1 -1
package/biz9_config
CHANGED
package/index.js
CHANGED
|
@@ -200,10 +200,12 @@ class Page_Logic {
|
|
|
200
200
|
];
|
|
201
201
|
};
|
|
202
202
|
static get_section_property_type = (section_id,value_id,is_title) =>{
|
|
203
|
+
//section_1_value_1_type
|
|
203
204
|
//page['section_1_value_1_type'] -- / text,note,photo,list
|
|
204
205
|
return !is_title ? 'section_'+section_id + '_value_'+value_id + "_type" : 'Section '+section_id + ' Value '+value_id;
|
|
205
206
|
}
|
|
206
207
|
static get_section_property_type_value = (type,section_id,value_id) =>{
|
|
208
|
+
//section_1_value_1_text_value
|
|
207
209
|
//page['section_1_value_1_[text,note,photo,list]_value']
|
|
208
210
|
let type_str = '';
|
|
209
211
|
switch(type){
|
|
@@ -223,7 +225,7 @@ class Page_Logic {
|
|
|
223
225
|
return 'section_'+section_id + '_value_'+value_id + "_" + type_str + "_value";
|
|
224
226
|
}
|
|
225
227
|
|
|
226
|
-
static
|
|
228
|
+
static get_section_property_type_list = (type,section_id,value_id,row_id) =>{
|
|
227
229
|
//page['section_1_value_1_type'] -- / list
|
|
228
230
|
//page['section_1_value_1_list_field_1']
|
|
229
231
|
//page['section_1_value_1_list_value_1']
|