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.
Files changed (3) hide show
  1. package/biz9_config +1 -1
  2. package/index.js +2 -2
  3. package/package.json +1 -1
package/biz9_config CHANGED
@@ -1,4 +1,4 @@
1
- VERSION='5.5.5'
1
+ VERSION='5.5.7'
2
2
  TITLE='BiZ9-Logic';
3
3
  REPO='git@github.com:biz9framework/biz9-logic.git';
4
4
  BRANCH='main';
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/update_item_delete_cache/"+data_type + "/" + id;
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)) ? !Str.check_is_null(window.localStorage.getItem(key)): null;
1472
+ return JSON.parse(window.localStorage.getItem(key));
1473
1473
  }else{
1474
1474
  return null;
1475
1475
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "biz9-logic",
3
- "version": "4.8.75",
3
+ "version": "4.8.77",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"