biz9-logic 3.0.8 → 3.0.9
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 +6 -5
- package/package.json +1 -1
package/biz9_config
CHANGED
package/index.js
CHANGED
|
@@ -16,15 +16,16 @@ class DataType {
|
|
|
16
16
|
static DT_GALLERY='gallery_biz';
|
|
17
17
|
static DT_ITEM_MAP='item_map_biz';
|
|
18
18
|
static DT_ITEM='item_biz';
|
|
19
|
+
static DT_ORDER="order_biz";
|
|
20
|
+
static DT_ORDER_ITEM="order_item_biz";
|
|
21
|
+
static DT_PROJECT='project_biz';
|
|
22
|
+
static DT_PRODUCT='product_biz';
|
|
19
23
|
static DT_PHOTO='photo_biz';
|
|
24
|
+
static DT_PAGE='page_biz';
|
|
20
25
|
static DT_REVIEW='review_biz';
|
|
21
26
|
static DT_SERVICE='service_biz';
|
|
22
27
|
static DT_USER='user_biz';
|
|
23
|
-
|
|
24
|
-
static DT_PRODUCT='product_biz';
|
|
25
|
-
static DT_ORDER="order_biz";
|
|
26
|
-
static DT_ORDER_ITEM="order_item_biz";
|
|
27
|
-
static DT_VIDEO='video_biz';
|
|
28
|
+
static DT_VIDEO='video_biz';
|
|
28
29
|
}
|
|
29
30
|
class Logic {
|
|
30
31
|
static get_new_item = (data_type,id) => {
|