biz9-logic 3.2.5 → 3.2.6
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 +3 -4
- package/package.json +1 -1
package/biz9_config
CHANGED
package/index.js
CHANGED
|
@@ -62,12 +62,11 @@ class DataItem {
|
|
|
62
62
|
}
|
|
63
63
|
class BiZ_Url {
|
|
64
64
|
static get_item = (biz9_config,item) => {
|
|
65
|
-
let action_url= "main/biz_item/get/"+item.data_type + "/" + item.id;
|
|
65
|
+
let action_url= "main/biz_item/get/"+item.data_type + "/" + item.id ;
|
|
66
66
|
return get_cloud_url_main(biz9_config.APP_TITLE_ID,biz9_config.URL,action_url,null);
|
|
67
67
|
};
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
let action_url= "main/biz_item/get_full/"+item.data_type + "/" + item.id;
|
|
68
|
+
static get_full_item = (biz9_config,item,parent_item,top_item) => {
|
|
69
|
+
let action_url= "main/biz_item/get_full/"+item.data_type + "/" + parent_item.id +"/"+parent_item.data_type + "/" + item.id +"/"+top_item.data_type + "/" + top_item.id;
|
|
71
70
|
return get_cloud_url_main(biz9_config.APP_TITLE_ID,biz9_config.URL,action_url,null);
|
|
72
71
|
};
|
|
73
72
|
}
|