biz9-logic 4.8.75 → 4.8.77
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 +2 -2
- package/package.json +1 -1
package/biz9_config
CHANGED
package/index.js
CHANGED
|
@@ -1153,7 +1153,7 @@ class Url{
|
|
|
1153
1153
|
return get_cloud_url_main(biz9_config.APP_ID,biz9_config.URL,action_url,null);
|
|
1154
1154
|
};
|
|
1155
1155
|
static update_delete_cache = (biz9_config,data_type,id) => {
|
|
1156
|
-
let action_url = "main/crud/
|
|
1156
|
+
let action_url = "main/crud/update_delete_cache/"+data_type + "/" + id;
|
|
1157
1157
|
return get_cloud_url_main(biz9_config.APP_ID,biz9_config.URL,action_url,null);
|
|
1158
1158
|
};
|
|
1159
1159
|
static update_list = (biz9_config,data_type) => {
|
|
@@ -1469,7 +1469,7 @@ class Schedule {
|
|
|
1469
1469
|
class Storage {
|
|
1470
1470
|
static get = (window,key) => {
|
|
1471
1471
|
if(window){
|
|
1472
|
-
return JSON.parse(window.localStorage.getItem(key))
|
|
1472
|
+
return JSON.parse(window.localStorage.getItem(key));
|
|
1473
1473
|
}else{
|
|
1474
1474
|
return null;
|
|
1475
1475
|
}
|