biz9-logic 3.5.23 → 3.5.24
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 -3
- package/package.json +1 -1
package/biz9_config
CHANGED
package/index.js
CHANGED
|
@@ -296,7 +296,7 @@ class Stock {
|
|
|
296
296
|
return r_list;
|
|
297
297
|
};
|
|
298
298
|
static get_event_stock_by_value = (stock_val) => {
|
|
299
|
-
switch(
|
|
299
|
+
switch(stock_val)
|
|
300
300
|
{
|
|
301
301
|
case "0":
|
|
302
302
|
return 'Sold Out';
|
|
@@ -322,7 +322,7 @@ class Stock {
|
|
|
322
322
|
return r_list;
|
|
323
323
|
};
|
|
324
324
|
static get_service_stock_by_value = (stock_val) => {
|
|
325
|
-
switch(
|
|
325
|
+
switch(stock_val)
|
|
326
326
|
{
|
|
327
327
|
case "0":
|
|
328
328
|
return 'No Sessions Availble';
|
|
@@ -346,7 +346,7 @@ class Stock {
|
|
|
346
346
|
return r_list;
|
|
347
347
|
};
|
|
348
348
|
static get_product_stock_by_value = (stock_val) => {
|
|
349
|
-
switch(
|
|
349
|
+
switch(stock_val)
|
|
350
350
|
{
|
|
351
351
|
case "0":
|
|
352
352
|
return 'Out of Stock';
|