biz9-logic 4.8.200 → 4.8.201
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 +19 -8
- package/package.json +1 -1
package/biz9_config
CHANGED
package/index.js
CHANGED
|
@@ -7,16 +7,27 @@ Description: BiZ9 Framework: Logic-JS
|
|
|
7
7
|
const moment = require('moment'); const { get_new_item_main,get_data_config_main,get_cloud_url_main,get_biz_item_main,get_cloud_filter_obj_main,get_new_full_item_main } = require('./main');
|
|
8
8
|
const { Log,Str,DateTime,Num,Obj } = require('/home/think2/www/doqbox/biz9-framework/biz9-utility/code');
|
|
9
9
|
class Message {
|
|
10
|
-
static SUCCESS="
|
|
10
|
+
static SUCCESS="Success";
|
|
11
11
|
static LOGIN_GOOD="Login Success";
|
|
12
12
|
static LOGIN_BAD="Login Incorrect";
|
|
13
|
-
|
|
14
|
-
static
|
|
15
|
-
static
|
|
16
|
-
|
|
17
|
-
static
|
|
18
|
-
static
|
|
19
|
-
|
|
13
|
+
|
|
14
|
+
static ERROR_TITLE_NOT_VALID="Please Enter A Valid Title.";
|
|
15
|
+
static ERROR_TITLE_NOT_UNIQUE="Title Not Availble. Please Choose Another.";
|
|
16
|
+
|
|
17
|
+
static ERROR_USERNAME_NOT_VALID="Please Enter A Valid Username";
|
|
18
|
+
static ERROR_USERNAME_NOT_UNIQUE="Username Not Availble. Please Choose Another.";
|
|
19
|
+
|
|
20
|
+
static ERROR_EMAIL_NOT_VALID="Please Enter A Valid Email.";
|
|
21
|
+
static ERROR_EMAIL_NOT_UNIQUE="E-mail Not Availble. Please Choose Another.";
|
|
22
|
+
|
|
23
|
+
static DATA_NOT_FOUND="Data Not Found.";
|
|
24
|
+
static SYSTEM_NOT_FOUND="System Not Found.";
|
|
25
|
+
|
|
26
|
+
static FAVORITE_ADD_SUCCESS="Favorite Add Success.";
|
|
27
|
+
static FAVORITE_REMOVE_SUCCESS="Favorite Remove Success.";
|
|
28
|
+
|
|
29
|
+
static REVIEW_ADD_SUCCESS="Review Add Success.";
|
|
30
|
+
static REVIEW_REMOVE_SUCCESS="Review Remove Success.";
|
|
20
31
|
}
|
|
21
32
|
class TemplateType {
|
|
22
33
|
static PRIMARY='primary';
|