biz9-logic 3.5.35 → 3.5.38
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 -1
- package/package.json +1 -1
package/biz9_config
CHANGED
package/index.js
CHANGED
|
@@ -384,7 +384,7 @@ class Schedule {
|
|
|
384
384
|
static get_start_date_time_by_list = (list) =>{
|
|
385
385
|
for(let a=0;a<list.length;a++){
|
|
386
386
|
if(!list[a].date){
|
|
387
|
-
|
|
387
|
+
list[a].date = new Date();
|
|
388
388
|
}
|
|
389
389
|
if(!list[a].time){
|
|
390
390
|
list[a].time = new Date();
|
|
@@ -399,6 +399,7 @@ class Schedule {
|
|
|
399
399
|
class Storage {
|
|
400
400
|
static KEY_ADMIN="key_admin";
|
|
401
401
|
static KEY_USER="key_user";
|
|
402
|
+
static KEY_BUSINESS="key_business";
|
|
402
403
|
static KEY_GUEST="key_guest";
|
|
403
404
|
static get = (window,key) => {
|
|
404
405
|
return JSON.parse(window.localStorage.getItem(key));
|