biz9-logic 4.8.258 → 4.8.260

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 +19 -19
  3. package/package.json +1 -1
package/biz9_config CHANGED
@@ -1,4 +1,4 @@
1
- VERSION='7.3.8'
1
+ VERSION='7.4.0'
2
2
  TITLE='BiZ9-Logic';
3
3
  REPO='git@github.com:biz9framework/biz9-logic.git';
4
4
  BRANCH='main';
package/index.js CHANGED
@@ -821,18 +821,18 @@ class FieldType {
821
821
  static CART_NUMBER="CA-";
822
822
  static TRANSACTION_ID="TR-";
823
823
 
824
- static PAYMENT_PLAN_1="1 Payment";
825
- static PAYMENT_PLAN_2="2 Payments";
826
- static PAYMENT_PLAN_3="3 Payments";
827
- static PAYMENT_PLAN_4="4 Payments";
824
+ static PAYMENT_PLAN_PENDING="Pending";
825
+ static PAYMENT_PLAN_TYPE_1="1 Payment";
826
+ static PAYMENT_PLAN_TYPE_2="2 Payments";
827
+ static PAYMENT_PLAN_TYPE_3="3 Payments";
828
+ static PAYMENT_PLAN_TYPE_4="4 Payments";
828
829
 
830
+ static ORDER_STATUS_CART="Cart";
829
831
  static ORDER_STATUS_NEW="New";
830
- static ORDER_STATUS_OPEN="Open";
832
+ static ORDER_STATUS_PENDING="Pending";
831
833
  static ORDER_STATUS_PAYMENT="Payment Plan";
832
834
  static ORDER_STATUS_COMPLETE="Complete";
833
835
 
834
- static PAYMENT_PLAN="Open";
835
-
836
836
  static ORDER_PAYMENT_TYPE_STRIPE="Stripe";
837
837
  static ORDER_PAYMENT_TYPE_CASH="Cash";
838
838
  static ORDER_PAYMENT_TYPE_OTHER="Other";
@@ -1220,8 +1220,8 @@ class Dashboard_Url {
1220
1220
  };
1221
1221
  }
1222
1222
  class Blog_Post_Url {
1223
- static get = (app_id,url,key,params) => {
1224
- let action_url="blog_post/get/"+key;
1223
+ static detail = (app_id,url,key,params) => {
1224
+ let action_url="blog_post/detail/"+key;
1225
1225
  return get_cloud_url_main(app_id,url,action_url,params);
1226
1226
  };
1227
1227
  static home = (app_id,url,params) => {
@@ -1262,8 +1262,8 @@ class Order_Url {
1262
1262
  };
1263
1263
  }
1264
1264
  class Product_Url {
1265
- static get = (app_id,url,key,params) => {
1266
- let action_url="product/get/"+key;
1265
+ static detail = (app_id,url,key,params) => {
1266
+ let action_url="product/detail/"+key;
1267
1267
  return get_cloud_url_main(app_id,url,action_url,params);
1268
1268
  };
1269
1269
  static home = (app_id,url,params) => {
@@ -1276,8 +1276,8 @@ class Product_Url {
1276
1276
  };
1277
1277
  }
1278
1278
  class Event_Url {
1279
- static get = (app_id,url,key,params) => {
1280
- let action_url="event/get/"+key;
1279
+ static detail = (app_id,url,key,params) => {
1280
+ let action_url="event/detail/"+key;
1281
1281
  return get_cloud_url_main(app_id,url,action_url,params);
1282
1282
  };
1283
1283
  static home = (app_id,url,params) => {
@@ -1290,8 +1290,8 @@ class Event_Url {
1290
1290
  };
1291
1291
  }
1292
1292
  class Service_Url {
1293
- static get = (app_id,url,key,params) => {
1294
- let action_url="service/get/"+key;
1293
+ static detail = (app_id,url,key,params) => {
1294
+ let action_url="service/detail/"+key;
1295
1295
  return get_cloud_url_main(app_id,url,action_url,params);
1296
1296
  };
1297
1297
  static home = (app_id,url,params) => {
@@ -1304,8 +1304,8 @@ class Service_Url {
1304
1304
  };
1305
1305
  }
1306
1306
  class Gallery_Url {
1307
- static get = (app_id,url,key,params) => {
1308
- let action_url="gallery/get/"+key;
1307
+ static detail = (app_id,url,key,params) => {
1308
+ let action_url="gallery/detail/"+key;
1309
1309
  return get_cloud_url_main(app_id,url,action_url,params);
1310
1310
  };
1311
1311
  static home = (app_id,url,params) => {
@@ -1370,8 +1370,8 @@ class Item_Url {
1370
1370
  };
1371
1371
  }
1372
1372
  class Category_Url {
1373
- static get = (app_id,url,key,params) => {
1374
- let action_url="category/get/"+key;
1373
+ static detail = (app_id,url,key,params) => {
1374
+ let action_url="category/detail/"+key;
1375
1375
  return get_cloud_url_main(app_id,url,action_url,params);
1376
1376
  };
1377
1377
  static home = (app_id,url,params) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "biz9-logic",
3
- "version": "4.8.258",
3
+ "version": "4.8.260",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"