biz9-logic 4.9.124 → 4.9.131
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 +4 -2
- package/package.json +1 -1
package/biz9_config
CHANGED
package/index.js
CHANGED
|
@@ -278,8 +278,10 @@ class Type {
|
|
|
278
278
|
static USER_ROLE_USER='user';
|
|
279
279
|
static USER_ROLE_GUEST='guest';
|
|
280
280
|
//data_source
|
|
281
|
-
static
|
|
281
|
+
static DATA_SOURCE_CLIENT_CACHE="client_cache";
|
|
282
|
+
static DATA_SOURCE_SERVER_CACHE="client_cache";
|
|
282
283
|
static DATA_SOURCE_DATABASE="database";
|
|
284
|
+
static DATA_SOURCE_CLIENT="client";
|
|
283
285
|
static DATA_SOURCE_SERVER="server";
|
|
284
286
|
static DATA_SOURCE_NOT_FOUND="not_found";
|
|
285
287
|
//env
|
|
@@ -1112,7 +1114,7 @@ class Event_Logic {
|
|
|
1112
1114
|
};
|
|
1113
1115
|
}
|
|
1114
1116
|
class Field_Logic {
|
|
1115
|
-
static
|
|
1117
|
+
static get_list_item_max_group_id = (value_id,item) => {
|
|
1116
1118
|
let max_group_id = 0;
|
|
1117
1119
|
let full_prop_str = "";
|
|
1118
1120
|
for(const prop in item){
|