primary_care_admin_binder 0.1.195 → 0.1.196
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/dist/index.cjs.js +8 -9
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -17404,9 +17404,10 @@ var queries$m = {
|
|
|
17404
17404
|
OrderCategory: function OrderCategory() {
|
|
17405
17405
|
return {
|
|
17406
17406
|
appcode: dbName,
|
|
17407
|
+
requestid: "05b16081-f0f7-4f6a-a8bb-731192b6799e",
|
|
17407
17408
|
filter: {
|
|
17408
|
-
|
|
17409
|
-
|
|
17409
|
+
status: true,
|
|
17410
|
+
sortField: "shortdesc"
|
|
17410
17411
|
}
|
|
17411
17412
|
};
|
|
17412
17413
|
},
|
|
@@ -17575,7 +17576,7 @@ var ORDERCATEGORYMASTER = createAsyncThunk("ordertypeSlice/orderCategoryMaster",
|
|
|
17575
17576
|
case 2:
|
|
17576
17577
|
data = _context2.v;
|
|
17577
17578
|
arry = [];
|
|
17578
|
-
data.
|
|
17579
|
+
(data || []).map(function (val) {
|
|
17579
17580
|
if (val.activestatus && val.status) {
|
|
17580
17581
|
arry.push({
|
|
17581
17582
|
label: val.shortdesc,
|
|
@@ -18089,12 +18090,10 @@ var queries$k = {
|
|
|
18089
18090
|
appcode: dbName,
|
|
18090
18091
|
filter: {
|
|
18091
18092
|
search: search || "",
|
|
18092
|
-
|
|
18093
|
+
page: page,
|
|
18094
|
+
perPage: perPage
|
|
18093
18095
|
},
|
|
18094
|
-
|
|
18095
|
-
offset: page,
|
|
18096
|
-
count: perPage
|
|
18097
|
-
}
|
|
18096
|
+
requestid: "b3994064-6ef8-4eb4-b309-b9953839cbe1"
|
|
18098
18097
|
};
|
|
18099
18098
|
},
|
|
18100
18099
|
orderCategoryInsert: function orderCategoryInsert(data) {
|
|
@@ -18268,7 +18267,7 @@ var GET_ALL_ORDER_CATEGORY = createAsyncThunk("orderMaster/getAllOrderCategory",
|
|
|
18268
18267
|
}, __readQdmQueries__);
|
|
18269
18268
|
case 2:
|
|
18270
18269
|
data = _context.v;
|
|
18271
|
-
list = (data
|
|
18270
|
+
list = (data || []).map(function (v) {
|
|
18272
18271
|
return {
|
|
18273
18272
|
total_count: v === null || v === void 0 ? void 0 : v.TotalCount,
|
|
18274
18273
|
category: v === null || v === void 0 ? void 0 : v.ordercategory,
|