@pisell/pisellos 0.0.569 → 0.10.2
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/core/index.js +10 -6
- package/dist/index.d.ts +0 -1
- package/dist/index.js +0 -3
- package/dist/model/strategy/adapter/promotion/index.js +9 -0
- package/dist/model/strategy/adapter/walletPass/evaluator.js +7 -5
- package/dist/model/strategy/adapter/walletPass/example.js +26 -3
- package/dist/model/strategy/adapter/walletPass/index.js +5 -5
- package/dist/model/strategy/adapter/walletPass/type.d.ts +0 -3
- package/dist/model/strategy/adapter/walletPass/utils.d.ts +0 -26
- package/dist/model/strategy/adapter/walletPass/utils.js +17 -92
- package/dist/model/strategy/strategy-example.js +19 -5
- package/dist/modules/BaseModule.d.ts +1 -1
- package/dist/modules/BaseModule.js +8 -10
- package/dist/modules/Cart/index.js +3 -0
- package/dist/modules/Cart/utils/cartProduct.js +1 -0
- package/dist/modules/Cart/utils/cartResource.js +0 -2
- package/dist/modules/Cart/utils/changePrice.js +9 -16
- package/dist/modules/Date/index.js +5 -1
- package/dist/modules/Discount/index.d.ts +0 -1
- package/dist/modules/Discount/index.js +7 -22
- package/dist/modules/Discount/types.d.ts +0 -1
- package/dist/modules/OpenData/index.js +2 -0
- package/dist/modules/Order/index.js +70 -40
- package/dist/modules/Payment/index.js +162 -97
- package/dist/modules/Payment/types.d.ts +4 -8
- package/dist/modules/Payment/walletpass.d.ts +0 -2
- package/dist/modules/Payment/walletpass.js +5 -4
- package/dist/modules/ProductList/index.d.ts +1 -1
- package/dist/modules/ProductList/index.js +3 -12
- package/dist/modules/ProductList/types.d.ts +0 -1
- package/dist/modules/Rules/index.js +126 -427
- package/dist/modules/SalesSummary/utils.js +1 -2
- package/dist/modules/Schedule/getDateIsInSchedule.js +0 -5
- package/dist/modules/Schedule/index.js +1 -0
- package/dist/modules/Schedule/utils.js +1 -0
- package/dist/modules/Step/index.js +1 -0
- package/dist/modules/Summary/utils.js +22 -43
- package/dist/plugins/request.js +4 -1
- package/dist/plugins/window.js +6 -2
- package/dist/server/index.js +129 -97
- package/dist/server/modules/menu/index.js +41 -32
- package/dist/server/modules/order/index.js +4 -2
- package/dist/server/modules/products/index.js +42 -24
- package/dist/server/modules/quotation/index.js +38 -29
- package/dist/server/modules/resource/index.js +4 -3
- package/dist/server/modules/schedule/index.js +35 -27
- package/dist/server/utils/product.js +1 -0
- package/dist/solution/BaseSales/index.js +41 -38
- package/dist/solution/BookingByStep/index.d.ts +1 -1
- package/dist/solution/BookingByStep/index.js +60 -11
- package/dist/solution/BookingByStep/utils/capacity.js +11 -1
- package/dist/solution/BookingByStep/utils/resources.js +3 -1
- package/dist/solution/BookingByStep/utils/timeslots.js +43 -2
- package/dist/solution/BookingTicket/index.d.ts +1 -1
- package/dist/solution/BookingTicket/index.js +2 -0
- package/dist/solution/BookingTicket/utils/scan/cloudSearch.js +7 -6
- package/dist/solution/BookingTicket/utils/scan/handleScan.js +31 -25
- package/dist/solution/BookingTicket/utils/scan/index.js +10 -6
- package/dist/solution/BuyTickets/index.js +12 -9
- package/dist/solution/Checkout/index.js +252 -177
- package/dist/solution/Checkout/utils/index.js +16 -4
- package/dist/solution/RegisterAndLogin/index.js +76 -30
- package/dist/solution/ScanOrder/index.js +60 -50
- package/dist/solution/ShopDiscount/index.js +14 -15
- package/dist/solution/ShopDiscount/types.d.ts +4 -5
- package/dist/solution/ShopDiscount/utils.d.ts +0 -9
- package/dist/solution/ShopDiscount/utils.js +0 -9
- package/dist/solution/VenueBooking/index.d.ts +3 -31
- package/dist/solution/VenueBooking/index.js +496 -651
- package/dist/solution/VenueBooking/types.d.ts +1 -3
- package/dist/solution/VenueBooking/types.js +0 -1
- package/dist/solution/VenueBooking/utils/dateSummary.d.ts +2 -2
- package/dist/solution/VenueBooking/utils/dateSummary.js +25 -12
- package/dist/solution/VenueBooking/utils/timeSlot.d.ts +0 -2
- package/dist/solution/VenueBooking/utils/timeSlot.js +4 -9
- package/dist/types/index.d.ts +1 -1
- package/dist/utils/task.js +18 -15
- package/dist/utils/watch.js +1 -0
- package/lib/apis/picoding.js +0 -2
- package/lib/core/index.js +132 -130
- package/lib/effects/index.js +57 -46
- package/lib/index.d.ts +0 -1
- package/lib/index.js +50 -92
- package/lib/model/index.js +21 -14
- package/lib/model/strategy/adapter/dataVariant/adapter.js +50 -38
- package/lib/model/strategy/adapter/dataVariant/evaluator.js +236 -162
- package/lib/model/strategy/adapter/dataVariant/examples.js +237 -229
- package/lib/model/strategy/adapter/dataVariant/index.js +34 -39
- package/lib/model/strategy/adapter/dataVariant/type.js +28 -57
- package/lib/model/strategy/adapter/index.js +64 -100
- package/lib/model/strategy/adapter/itemRule/adapter.js +144 -156
- package/lib/model/strategy/adapter/itemRule/evaluator.js +48 -36
- package/lib/model/strategy/adapter/itemRule/examples.js +225 -295
- package/lib/model/strategy/adapter/itemRule/index.js +57 -83
- package/lib/model/strategy/adapter/itemRule/type.js +36 -97
- package/lib/model/strategy/adapter/promotion/adapter.js +63 -84
- package/lib/model/strategy/adapter/promotion/evaluator.js +231 -381
- package/lib/model/strategy/adapter/promotion/examples.js +159 -139
- package/lib/model/strategy/adapter/promotion/index.js +49 -1
- package/lib/model/strategy/adapter/promotion/type.js +35 -199
- package/lib/model/strategy/adapter/type.js +16 -4
- package/lib/model/strategy/adapter/walletPass/evaluator.js +152 -180
- package/lib/model/strategy/adapter/walletPass/example.js +190 -217
- package/lib/model/strategy/adapter/walletPass/index.js +51 -75
- package/lib/model/strategy/adapter/walletPass/locales.js +58 -36
- package/lib/model/strategy/adapter/walletPass/type.d.ts +0 -3
- package/lib/model/strategy/adapter/walletPass/type.js +16 -4
- package/lib/model/strategy/adapter/walletPass/utils.d.ts +0 -26
- package/lib/model/strategy/adapter/walletPass/utils.js +383 -678
- package/lib/model/strategy/engine.js +168 -270
- package/lib/model/strategy/index.js +34 -49
- package/lib/model/strategy/strategy-example.js +239 -243
- package/lib/model/strategy/type.js +40 -100
- package/lib/modules/Account/index.js +53 -39
- package/lib/modules/Account/types.js +33 -20
- package/lib/modules/AccountList/index.js +154 -116
- package/lib/modules/AccountList/types.js +31 -30
- package/lib/modules/AccountList/utils.js +30 -18
- package/lib/modules/BaseModule.d.ts +1 -1
- package/lib/modules/BaseModule.js +46 -25
- package/lib/modules/BookingContext/index.js +136 -158
- package/lib/modules/BookingContext/types.js +32 -46
- package/lib/modules/BookingContext/utils/buildCacheItemFromOrderLine.js +143 -131
- package/lib/modules/BookingContext/utils/buildNormalProductCacheItemFromOrderLine.js +82 -75
- package/lib/modules/BookingContext/utils/cacheItemToBookingInput.js +150 -170
- package/lib/modules/BookingContext/utils/flexible.js +55 -38
- package/lib/modules/BookingContext/utils/formatResourceList.js +34 -19
- package/lib/modules/BookingContext/utils/index.js +41 -124
- package/lib/modules/BookingContext/utils/noResource.js +70 -58
- package/lib/modules/BookingContext/utils/orderLineDisplay.js +41 -14
- package/lib/modules/BookingContext/utils/productExtend.js +155 -202
- package/lib/modules/BookingContext/utils/resourceErrors.js +53 -53
- package/lib/modules/BookingContext/utils/resourceSelection.js +41 -19
- package/lib/modules/BookingContext/utils/resources.js +167 -209
- package/lib/modules/BookingContext/utils/serviceTimes.js +116 -115
- package/lib/modules/BookingContext/utils/timeSlices.js +80 -70
- package/lib/modules/Cart/index.js +124 -170
- package/lib/modules/Cart/types.js +51 -46
- package/lib/modules/Cart/utils/cartAccount.js +39 -40
- package/lib/modules/Cart/utils/cartDate.js +61 -56
- package/lib/modules/Cart/utils/cartDiscount.js +33 -28
- package/lib/modules/Cart/utils/cartNote.js +32 -27
- package/lib/modules/Cart/utils/cartProduct.js +251 -321
- package/lib/modules/Cart/utils/cartRelationForms.js +35 -29
- package/lib/modules/Cart/utils/cartResource.js +78 -72
- package/lib/modules/Cart/utils/changePrice.js +50 -28
- package/lib/modules/Cart/utils/index.js +48 -106
- package/lib/modules/Customer/constants.js +34 -13
- package/lib/modules/Customer/index.js +169 -232
- package/lib/modules/Customer/types.js +35 -38
- package/lib/modules/Date/index.js +115 -116
- package/lib/modules/Date/types.js +28 -16
- package/lib/modules/Date/utils.js +123 -174
- package/lib/modules/Discount/index.d.ts +0 -1
- package/lib/modules/Discount/index.js +128 -130
- package/lib/modules/Discount/types.d.ts +0 -1
- package/lib/modules/Discount/types.js +31 -9
- package/lib/modules/Guests/index.js +56 -30
- package/lib/modules/Guests/types.js +33 -23
- package/lib/modules/Holder/index.js +189 -209
- package/lib/modules/Holder/types.js +16 -4
- package/lib/modules/Holder/utils.js +49 -20
- package/lib/modules/OpenData/index.js +76 -69
- package/lib/modules/OpenData/types.js +16 -4
- package/lib/modules/OpenData/utils.js +78 -44
- package/lib/modules/Order/index.js +1909 -1572
- package/lib/modules/Order/types.js +35 -78
- package/lib/modules/Order/utils/bundleDiscountHydration.js +74 -41
- package/lib/modules/Order/utils/manualProductDiscount.js +123 -124
- package/lib/modules/Order/utils/orderCollectionIdentity.js +210 -148
- package/lib/modules/Order/utils.js +634 -799
- package/lib/modules/Payment/cash.js +33 -20
- package/lib/modules/Payment/cashRecommendationAlgorithm.js +76 -145
- package/lib/modules/Payment/eftpos.js +30 -16
- package/lib/modules/Payment/index.js +378 -518
- package/lib/modules/Payment/mx51.js +0 -1
- package/lib/modules/Payment/types.d.ts +4 -8
- package/lib/modules/Payment/types.js +107 -216
- package/lib/modules/Payment/utils.js +48 -51
- package/lib/modules/Payment/walletpass.d.ts +0 -2
- package/lib/modules/Payment/walletpass.js +211 -226
- package/lib/modules/Product/index.js +46 -51
- package/lib/modules/Product/types.js +16 -4
- package/lib/modules/Product/utils.js +33 -32
- package/lib/modules/ProductList/index.d.ts +1 -1
- package/lib/modules/ProductList/index.js +117 -117
- package/lib/modules/ProductList/types.d.ts +0 -1
- package/lib/modules/ProductList/types.js +31 -9
- package/lib/modules/Quotation/index.js +100 -66
- package/lib/modules/Quotation/types.js +16 -4
- package/lib/modules/Resource/index.js +59 -27
- package/lib/modules/Resource/types.js +32 -22
- package/lib/modules/Resource/utils.js +38 -30
- package/lib/modules/ResourcePlanner/index.js +61 -60
- package/lib/modules/ResourcePlanner/planner.js +384 -346
- package/lib/modules/ResourcePlanner/types.js +16 -4
- package/lib/modules/Rules/index.js +903 -1475
- package/lib/modules/Rules/types.js +40 -17
- package/lib/modules/SalesSummary/index.js +90 -85
- package/lib/modules/SalesSummary/types.js +16 -4
- package/lib/modules/SalesSummary/utils.js +427 -351
- package/lib/modules/ScanOrderLogger/index.js +79 -59
- package/lib/modules/ScanOrderLogger/providers/feishu.js +78 -54
- package/lib/modules/ScanOrderLogger/providers/grafana.js +36 -13
- package/lib/modules/ScanOrderLogger/types.js +16 -4
- package/lib/modules/Schedule/getDateIsInSchedule.js +163 -339
- package/lib/modules/Schedule/index.js +114 -100
- package/lib/modules/Schedule/type.js +16 -4
- package/lib/modules/Schedule/types.js +16 -4
- package/lib/modules/Schedule/utils.js +291 -433
- package/lib/modules/Step/index.js +52 -40
- package/lib/modules/Step/tyeps.js +16 -4
- package/lib/modules/Summary/index.js +71 -66
- package/lib/modules/Summary/types.js +16 -4
- package/lib/modules/Summary/utils.js +418 -791
- package/lib/modules/SurchargeList/index.js +60 -46
- package/lib/modules/SurchargeList/types.js +16 -4
- package/lib/modules/index.js +63 -245
- package/lib/plugins/app.js +16 -4
- package/lib/plugins/index.js +25 -36
- package/lib/plugins/request.js +126 -137
- package/lib/plugins/shopStore.js +16 -4
- package/lib/plugins/user.js +16 -4
- package/lib/plugins/window.js +179 -171
- package/lib/server/index.js +2337 -2675
- package/lib/server/modules/floor-plan/index.js +123 -102
- package/lib/server/modules/floor-plan/types.js +30 -15
- package/lib/server/modules/index.js +68 -106
- package/lib/server/modules/menu/index.js +122 -146
- package/lib/server/modules/menu/types.js +31 -18
- package/lib/server/modules/order/index.js +642 -567
- package/lib/server/modules/order/types.js +32 -117
- package/lib/server/modules/order/utils/filterBookings.js +194 -219
- package/lib/server/modules/order/utils/filterOrders.js +92 -118
- package/lib/server/modules/payment/index.js +83 -59
- package/lib/server/modules/payment/types.js +16 -4
- package/lib/server/modules/products/index.js +459 -575
- package/lib/server/modules/products/types.js +34 -44
- package/lib/server/modules/quotation/index.js +172 -137
- package/lib/server/modules/quotation/types.js +31 -21
- package/lib/server/modules/resource/index.js +184 -213
- package/lib/server/modules/resource/types.js +33 -42
- package/lib/server/modules/schedule/index.js +123 -135
- package/lib/server/modules/schedule/types.js +21 -14
- package/lib/server/modules/schedule/utils.js +163 -334
- package/lib/server/types.js +16 -4
- package/lib/server/utils/index.js +23 -25
- package/lib/server/utils/product.js +139 -196
- package/lib/server/utils/schedule.js +41 -34
- package/lib/server/utils/small-ticket.js +456 -478
- package/lib/server/utils/time.js +49 -40
- package/lib/solution/BaseSales/index.js +1016 -850
- package/lib/solution/BaseSales/types.js +37 -41
- package/lib/solution/BaseSales/utils/cartPromotion.js +460 -611
- package/lib/solution/BaseSales/utils/parseSalesResponse.js +105 -85
- package/lib/solution/BaseSales/utils/quotationPrice.js +114 -56
- package/lib/solution/BaseSales/utils/transformBaseProductToOrderProduct.js +143 -102
- package/lib/solution/BaseSales/utils.js +140 -155
- package/lib/solution/BookingByStep/index.d.ts +1 -1
- package/lib/solution/BookingByStep/index.js +1340 -1530
- package/lib/solution/BookingByStep/types.js +99 -40
- package/lib/solution/BookingByStep/utils/capacity.js +160 -192
- package/lib/solution/BookingByStep/utils/products.js +52 -42
- package/lib/solution/BookingByStep/utils/resources.js +330 -527
- package/lib/solution/BookingByStep/utils/stock.js +44 -65
- package/lib/solution/BookingByStep/utils/timeslots.js +131 -129
- package/lib/solution/BookingTicket/index.d.ts +1 -1
- package/lib/solution/BookingTicket/index.js +459 -543
- package/lib/solution/BookingTicket/types.js +77 -99
- package/lib/solution/BookingTicket/utils/addProductDecision.js +184 -219
- package/lib/solution/BookingTicket/utils/addTimeAvailability.js +89 -58
- package/lib/solution/BookingTicket/utils/bookingStatus.js +78 -107
- package/lib/solution/BookingTicket/utils/cartView.js +94 -110
- package/lib/solution/BookingTicket/utils/exampleData.js +0 -185
- package/lib/solution/BookingTicket/utils/orderCustomer.js +41 -18
- package/lib/solution/BookingTicket/utils/resolveBestAddTimePlan.js +86 -219
- package/lib/solution/BookingTicket/utils/scan/applyGlobalScan.js +93 -144
- package/lib/solution/BookingTicket/utils/scan/cloudSearch.js +91 -79
- package/lib/solution/BookingTicket/utils/scan/formatGlobalScan.js +41 -54
- package/lib/solution/BookingTicket/utils/scan/handleScan.js +81 -84
- package/lib/solution/BookingTicket/utils/scan/index.js +104 -98
- package/lib/solution/BookingTicket/utils/scan/scanCache.js +43 -90
- package/lib/solution/BookingTicket/utils/scan/scanProductValues.js +64 -52
- package/lib/solution/BookingTicket/utils/sessionCatalogStale.js +58 -56
- package/lib/solution/BuyTickets/index.js +70 -67
- package/lib/solution/BuyTickets/types.js +38 -22
- package/lib/solution/Checkout/index.js +1158 -1451
- package/lib/solution/Checkout/types.js +61 -91
- package/lib/solution/Checkout/utils/index.js +156 -228
- package/lib/solution/PlaceOrder/index.js +0 -55
- package/lib/solution/RegisterAndLogin/config.js +460 -493
- package/lib/solution/RegisterAndLogin/index.js +630 -633
- package/lib/solution/RegisterAndLogin/types.js +76 -189
- package/lib/solution/RegisterAndLogin/utils.js +125 -183
- package/lib/solution/Sales/index.js +320 -317
- package/lib/solution/Sales/types.js +33 -27
- package/lib/solution/ScanOrder/index.js +862 -831
- package/lib/solution/ScanOrder/types.js +34 -33
- package/lib/solution/ScanOrder/utils.js +371 -406
- package/lib/solution/ShopDiscount/index.js +233 -235
- package/lib/solution/ShopDiscount/types.d.ts +4 -5
- package/lib/solution/ShopDiscount/types.js +37 -15
- package/lib/solution/ShopDiscount/utils.d.ts +0 -9
- package/lib/solution/ShopDiscount/utils.js +172 -309
- package/lib/solution/UnifiedBookingSales/index.js +405 -379
- package/lib/solution/UnifiedBookingSales/types.js +31 -12
- package/lib/solution/VenueBooking/index.d.ts +3 -31
- package/lib/solution/VenueBooking/index.js +916 -967
- package/lib/solution/VenueBooking/types.d.ts +1 -3
- package/lib/solution/VenueBooking/types.js +39 -20
- package/lib/solution/VenueBooking/utils/dateSummary.d.ts +2 -2
- package/lib/solution/VenueBooking/utils/dateSummary.js +62 -25
- package/lib/solution/VenueBooking/utils/resource.js +54 -31
- package/lib/solution/VenueBooking/utils/slotMerge.js +107 -94
- package/lib/solution/VenueBooking/utils/timeSlot.d.ts +0 -2
- package/lib/solution/VenueBooking/utils/timeSlot.js +133 -138
- package/lib/solution/VenueBooking/utils.js +67 -130
- package/lib/solution/index.js +41 -124
- package/lib/store/createStore.js +29 -32
- package/lib/types/index.d.ts +1 -1
- package/lib/types/index.js +16 -4
- package/lib/utils/task.js +36 -36
- package/lib/utils/watch.js +47 -81
- package/package.json +2 -4
- package/dist/solution/VenueBooking/utils/smartPricing.d.ts +0 -70
- package/dist/solution/VenueBooking/utils/smartPricing.js +0 -233
- package/lib/solution/VenueBooking/utils/smartPricing.d.ts +0 -70
- package/lib/solution/VenueBooking/utils/smartPricing.js +0 -192
|
@@ -1,55 +1,70 @@
|
|
|
1
|
-
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
2
18
|
|
|
3
|
-
|
|
4
|
-
|
|
19
|
+
// src/modules/AccountList/index.ts
|
|
20
|
+
var AccountList_exports = {};
|
|
21
|
+
__export(AccountList_exports, {
|
|
22
|
+
AccountListModule: () => AccountListModule
|
|
5
23
|
});
|
|
6
|
-
exports
|
|
7
|
-
var
|
|
8
|
-
var
|
|
9
|
-
var
|
|
10
|
-
var
|
|
11
|
-
var
|
|
12
|
-
|
|
13
|
-
defaultName = 'accountList';
|
|
14
|
-
defaultVersion = '1.0.0';
|
|
15
|
-
store = {
|
|
16
|
-
accountList: [],
|
|
17
|
-
// 账号的纯数据列表
|
|
18
|
-
accounts: [],
|
|
19
|
-
// 账号的 module 列表
|
|
20
|
-
isLoading: false,
|
|
21
|
-
error: null
|
|
22
|
-
};
|
|
23
|
-
request;
|
|
24
|
-
cacheId;
|
|
25
|
-
openCache = false;
|
|
26
|
-
fatherModule;
|
|
24
|
+
module.exports = __toCommonJS(AccountList_exports);
|
|
25
|
+
var import_lodash_es = require("lodash-es");
|
|
26
|
+
var import_Account = require("../Account");
|
|
27
|
+
var import_BaseModule = require("../BaseModule");
|
|
28
|
+
var import_types = require("./types");
|
|
29
|
+
var import_utils = require("./utils");
|
|
30
|
+
var AccountListModule = class extends import_BaseModule.BaseModule {
|
|
27
31
|
constructor(name, version) {
|
|
28
32
|
super(name, version);
|
|
33
|
+
this.defaultName = "accountList";
|
|
34
|
+
this.defaultVersion = "1.0.0";
|
|
35
|
+
this.store = {
|
|
36
|
+
accountList: [],
|
|
37
|
+
// 账号的纯数据列表
|
|
38
|
+
accounts: [],
|
|
39
|
+
// 账号的 module 列表
|
|
40
|
+
isLoading: false,
|
|
41
|
+
error: null
|
|
42
|
+
};
|
|
43
|
+
this.openCache = false;
|
|
29
44
|
}
|
|
30
45
|
async initialize(core, options) {
|
|
46
|
+
var _a, _b, _c;
|
|
31
47
|
this.core = core;
|
|
32
|
-
this.store = options
|
|
33
|
-
this.request = this.core.getPlugin(
|
|
34
|
-
if (Array.isArray(options
|
|
35
|
-
const recordList = (0,
|
|
48
|
+
this.store = options == null ? void 0 : options.store;
|
|
49
|
+
this.request = this.core.getPlugin("request");
|
|
50
|
+
if (Array.isArray((_a = options == null ? void 0 : options.initialState) == null ? void 0 : _a.accountList)) {
|
|
51
|
+
const recordList = (0, import_lodash_es.cloneDeep)(options.initialState.accountList || []);
|
|
36
52
|
this.store.accounts = [];
|
|
37
|
-
recordList.forEach(account => {
|
|
53
|
+
recordList.forEach((account) => {
|
|
38
54
|
this.addAccount(account);
|
|
39
55
|
});
|
|
40
56
|
} else {
|
|
41
57
|
this.store.accounts = [];
|
|
42
58
|
this.store.accountList = [];
|
|
43
59
|
}
|
|
44
|
-
if (options
|
|
60
|
+
if ((_b = options == null ? void 0 : options.otherParams) == null ? void 0 : _b.cacheId) {
|
|
45
61
|
this.openCache = options.otherParams.openCache;
|
|
46
62
|
this.cacheId = options.otherParams.cacheId;
|
|
47
63
|
}
|
|
48
|
-
if (options
|
|
64
|
+
if ((_c = options == null ? void 0 : options.otherParams) == null ? void 0 : _c.fatherModule) {
|
|
49
65
|
this.fatherModule = options.otherParams.fatherModule;
|
|
50
66
|
}
|
|
51
67
|
}
|
|
52
|
-
|
|
53
68
|
/**
|
|
54
69
|
* 创建账号并添加到列表中
|
|
55
70
|
* @param account 账号信息
|
|
@@ -57,28 +72,32 @@ class AccountListModule extends _BaseModule.BaseModule {
|
|
|
57
72
|
* @param type 添加类型
|
|
58
73
|
*/
|
|
59
74
|
async createAccountAndAdd(account, needEmit = true, type) {
|
|
60
|
-
const tempAccountModule = this.store.accounts.find(
|
|
61
|
-
|
|
75
|
+
const tempAccountModule = this.store.accounts.find(
|
|
76
|
+
(a) => a.getId() === account.id
|
|
77
|
+
);
|
|
62
78
|
if (tempAccountModule) {
|
|
63
79
|
return tempAccountModule;
|
|
64
80
|
}
|
|
65
|
-
const newAccountList = [...
|
|
66
|
-
if (type ===
|
|
81
|
+
const newAccountList = [...this.store.accountList || []];
|
|
82
|
+
if (type === "unshift") {
|
|
67
83
|
newAccountList.unshift(account);
|
|
68
84
|
} else {
|
|
69
85
|
newAccountList.push(account);
|
|
70
86
|
}
|
|
71
87
|
this.store.accountList = newAccountList;
|
|
72
|
-
const accountModule = new
|
|
88
|
+
const accountModule = new import_Account.AccountModule(`account_${account.id}`);
|
|
73
89
|
this.core.registerModule(accountModule);
|
|
74
90
|
accountModule.setAccountInfo(account);
|
|
75
|
-
if (type ===
|
|
76
|
-
this.store.accounts = [accountModule, ...
|
|
91
|
+
if (type === "unshift") {
|
|
92
|
+
this.store.accounts = [accountModule, ...this.store.accounts || []];
|
|
77
93
|
} else {
|
|
78
|
-
this.store.accounts = [...
|
|
94
|
+
this.store.accounts = [...this.store.accounts || [], accountModule];
|
|
79
95
|
}
|
|
80
96
|
if (needEmit) {
|
|
81
|
-
await this.core.effects.emit(
|
|
97
|
+
await this.core.effects.emit(
|
|
98
|
+
import_types.AccountListHooks.OnAccountListUpdate,
|
|
99
|
+
this.store
|
|
100
|
+
);
|
|
82
101
|
}
|
|
83
102
|
return accountModule;
|
|
84
103
|
}
|
|
@@ -87,24 +106,32 @@ class AccountListModule extends _BaseModule.BaseModule {
|
|
|
87
106
|
try {
|
|
88
107
|
this.store.isLoading = true;
|
|
89
108
|
this.store.error = null;
|
|
90
|
-
if (this.store.accounts.some(a => a.getId() === account.id)) {
|
|
91
|
-
currentAccountModule = this.store.accounts.find(
|
|
109
|
+
if (this.store.accounts.some((a) => a.getId() === account.id)) {
|
|
110
|
+
currentAccountModule = this.store.accounts.find(
|
|
111
|
+
(n) => n.getId() === account.id
|
|
112
|
+
);
|
|
92
113
|
throw new Error(`Account with id ${account.id} already exists`);
|
|
93
114
|
}
|
|
94
115
|
this.store.accountList.push(account);
|
|
95
|
-
const accountModule = new
|
|
116
|
+
const accountModule = new import_Account.AccountModule(`account_${account.id}`);
|
|
96
117
|
this.core.registerModule(accountModule);
|
|
97
118
|
accountModule.setAccountInfo(account);
|
|
98
|
-
this.store.accounts = [...
|
|
119
|
+
this.store.accounts = [...this.store.accounts || [], accountModule];
|
|
99
120
|
if (this.store.accounts.length === 1) {
|
|
100
121
|
this.setActiveAccount(accountModule.getId());
|
|
101
122
|
}
|
|
102
123
|
currentAccountModule = accountModule;
|
|
103
|
-
await this.core.effects.emit(
|
|
124
|
+
await this.core.effects.emit(
|
|
125
|
+
import_types.AccountListHooks.OnAccountListUpdate,
|
|
126
|
+
this.store
|
|
127
|
+
);
|
|
104
128
|
} catch (error) {
|
|
105
129
|
console.error(error);
|
|
106
|
-
this.store.error = error instanceof Error ? error.message :
|
|
107
|
-
await this.core.effects.emit(
|
|
130
|
+
this.store.error = error instanceof Error ? error.message : "Failed to add account";
|
|
131
|
+
await this.core.effects.emit(
|
|
132
|
+
import_types.AccountListHooks.OnAccountListError,
|
|
133
|
+
this.store.error
|
|
134
|
+
);
|
|
108
135
|
} finally {
|
|
109
136
|
this.store.isLoading = false;
|
|
110
137
|
return currentAccountModule;
|
|
@@ -119,80 +146,99 @@ class AccountListModule extends _BaseModule.BaseModule {
|
|
|
119
146
|
throw new Error(`Account with id ${id} not found`);
|
|
120
147
|
}
|
|
121
148
|
account.setAccountInfo(updates);
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
// }
|
|
126
|
-
// })
|
|
127
|
-
const index = this.store.accountList.findIndex(account => account.id === id);
|
|
149
|
+
const index = this.store.accountList.findIndex(
|
|
150
|
+
(account2) => account2.id === id
|
|
151
|
+
);
|
|
128
152
|
if (index !== -1) {
|
|
129
153
|
this.store.accountList[index] = updates;
|
|
130
154
|
}
|
|
131
|
-
await this.core.effects.emit(
|
|
155
|
+
await this.core.effects.emit(
|
|
156
|
+
import_types.AccountListHooks.OnAccountListUpdate,
|
|
157
|
+
this.store
|
|
158
|
+
);
|
|
132
159
|
} catch (error) {
|
|
133
|
-
this.store.error = error instanceof Error ? error.message :
|
|
134
|
-
await this.core.effects.emit(
|
|
160
|
+
this.store.error = error instanceof Error ? error.message : "Failed to update account";
|
|
161
|
+
await this.core.effects.emit(
|
|
162
|
+
import_types.AccountListHooks.OnAccountListError,
|
|
163
|
+
this.store.error
|
|
164
|
+
);
|
|
135
165
|
} finally {
|
|
136
166
|
this.store.isLoading = false;
|
|
137
167
|
}
|
|
138
168
|
}
|
|
139
169
|
async updateAccountListById(id, updates) {
|
|
140
|
-
this.store.accountList = this.store.accountList.map(account => {
|
|
170
|
+
this.store.accountList = this.store.accountList.map((account) => {
|
|
141
171
|
if (account.id === id) {
|
|
142
172
|
return updates;
|
|
143
173
|
}
|
|
144
174
|
return account;
|
|
145
175
|
});
|
|
146
176
|
this.core.effects.emit(`${this.name}:changed`, {
|
|
147
|
-
path:
|
|
177
|
+
path: "accounts",
|
|
148
178
|
value: this.store.accountList
|
|
149
179
|
});
|
|
150
180
|
}
|
|
151
181
|
async removeAccount(id) {
|
|
182
|
+
var _a;
|
|
152
183
|
try {
|
|
153
184
|
this.store.isLoading = true;
|
|
154
185
|
this.store.error = null;
|
|
155
|
-
const index = this.store.accounts.findIndex(a => a.getId() === id);
|
|
186
|
+
const index = this.store.accounts.findIndex((a) => a.getId() === id);
|
|
156
187
|
if (index === -1) {
|
|
157
188
|
throw new Error(`Account with id ${id} not found`);
|
|
158
189
|
}
|
|
159
190
|
this.store.accounts[index].destroy();
|
|
160
|
-
this.store.accounts = [
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
191
|
+
this.store.accounts = [
|
|
192
|
+
...(this.store.accounts || []).slice(0, index),
|
|
193
|
+
...(this.store.accounts || []).slice(index + 1)
|
|
194
|
+
];
|
|
195
|
+
this.store.accountList = this.store.accountList.filter(
|
|
196
|
+
(account) => account.id !== id
|
|
197
|
+
);
|
|
198
|
+
if (!this.getActiveAccount() || ((_a = this.getActiveAccount()) == null ? void 0 : _a.getId()) === id || this.store.accounts.length === 1) {
|
|
165
199
|
this.setActiveAccount(this.store.accounts[0].getId());
|
|
166
200
|
}
|
|
167
|
-
await this.core.effects.emit(
|
|
201
|
+
await this.core.effects.emit(
|
|
202
|
+
import_types.AccountListHooks.OnAccountListUpdate,
|
|
203
|
+
this.store
|
|
204
|
+
);
|
|
168
205
|
} catch (error) {
|
|
169
|
-
this.store.error = error instanceof Error ? error.message :
|
|
170
|
-
await this.core.effects.emit(
|
|
206
|
+
this.store.error = error instanceof Error ? error.message : "Failed to remove account";
|
|
207
|
+
await this.core.effects.emit(
|
|
208
|
+
import_types.AccountListHooks.OnAccountListError,
|
|
209
|
+
this.store.error
|
|
210
|
+
);
|
|
171
211
|
} finally {
|
|
172
212
|
this.store.isLoading = false;
|
|
173
213
|
}
|
|
174
214
|
}
|
|
175
215
|
getAccounts() {
|
|
176
|
-
return [...
|
|
216
|
+
return [...this.store.accounts || []];
|
|
177
217
|
}
|
|
178
218
|
getAccount(id) {
|
|
179
|
-
return this.store.accounts.find(account => account.getId() === id) || null;
|
|
219
|
+
return this.store.accounts.find((account) => account.getId() === id) || null;
|
|
180
220
|
}
|
|
181
221
|
async clearAccounts() {
|
|
182
222
|
try {
|
|
183
223
|
this.store.isLoading = true;
|
|
184
224
|
this.store.error = null;
|
|
185
225
|
this.store.accounts = [];
|
|
186
|
-
await this.core.effects.emit(
|
|
226
|
+
await this.core.effects.emit(
|
|
227
|
+
import_types.AccountListHooks.OnAccountListUpdate,
|
|
228
|
+
this.store
|
|
229
|
+
);
|
|
187
230
|
} catch (error) {
|
|
188
|
-
this.store.error = error instanceof Error ? error.message :
|
|
189
|
-
await this.core.effects.emit(
|
|
231
|
+
this.store.error = error instanceof Error ? error.message : "Failed to clear accounts";
|
|
232
|
+
await this.core.effects.emit(
|
|
233
|
+
import_types.AccountListHooks.OnAccountListError,
|
|
234
|
+
this.store.error
|
|
235
|
+
);
|
|
190
236
|
} finally {
|
|
191
237
|
this.store.isLoading = false;
|
|
192
238
|
}
|
|
193
239
|
}
|
|
194
240
|
setActiveAccount(id) {
|
|
195
|
-
this.store.accounts.forEach(account => {
|
|
241
|
+
this.store.accounts.forEach((account) => {
|
|
196
242
|
if (account.getId() === id) {
|
|
197
243
|
account.setActive(true);
|
|
198
244
|
} else {
|
|
@@ -201,93 +247,82 @@ class AccountListModule extends _BaseModule.BaseModule {
|
|
|
201
247
|
});
|
|
202
248
|
}
|
|
203
249
|
getActiveAccount() {
|
|
204
|
-
return this.store.accounts.find(account => account.isActive()) || null;
|
|
250
|
+
return this.store.accounts.find((account) => account.isActive()) || null;
|
|
205
251
|
}
|
|
206
252
|
storeChange() {
|
|
207
253
|
if (this.openCache) {
|
|
208
|
-
const store = (0,
|
|
209
|
-
|
|
210
|
-
|
|
254
|
+
const store = (0, import_lodash_es.cloneDeep)(this.store);
|
|
255
|
+
store.accountList = store.accountList.filter(
|
|
256
|
+
(account, index, self) => index === self.findIndex((t) => t.id === account.id)
|
|
257
|
+
);
|
|
211
258
|
this.checkSaveCache({
|
|
212
259
|
cacheId: this.cacheId,
|
|
213
260
|
fatherModule: this.fatherModule,
|
|
214
261
|
store,
|
|
215
|
-
cacheKey: [
|
|
262
|
+
cacheKey: ["accountList"]
|
|
216
263
|
});
|
|
217
264
|
}
|
|
218
265
|
}
|
|
219
|
-
|
|
220
266
|
/**
|
|
221
267
|
* 批量添加holder类型账号
|
|
222
268
|
*/
|
|
223
269
|
async addHolderAccounts(params) {
|
|
224
|
-
const {
|
|
225
|
-
holders,
|
|
226
|
-
customerId,
|
|
227
|
-
type = 'push'
|
|
228
|
-
} = params;
|
|
270
|
+
const { holders, customerId, type = "push" } = params;
|
|
229
271
|
const accountModules = [];
|
|
230
272
|
for (const holder of holders) {
|
|
231
|
-
const account = (0,
|
|
232
|
-
const accountModule = await this.createAccountAndAdd(
|
|
233
|
-
|
|
273
|
+
const account = (0, import_utils.createHolderAccount)(holder, customerId);
|
|
274
|
+
const accountModule = await this.createAccountAndAdd(
|
|
275
|
+
account,
|
|
276
|
+
false,
|
|
277
|
+
type
|
|
278
|
+
);
|
|
279
|
+
if (type === "unshift") {
|
|
234
280
|
accountModules.unshift(accountModule);
|
|
235
281
|
} else {
|
|
236
282
|
accountModules.push(accountModule);
|
|
237
283
|
}
|
|
238
284
|
}
|
|
239
|
-
await this.core.effects.emit(
|
|
285
|
+
await this.core.effects.emit(
|
|
286
|
+
import_types.AccountListHooks.OnAccountListUpdate,
|
|
287
|
+
this.store
|
|
288
|
+
);
|
|
240
289
|
return accountModules;
|
|
241
290
|
}
|
|
242
|
-
|
|
243
291
|
/**
|
|
244
292
|
* 获取客户列表
|
|
245
293
|
* @param params 查询参数
|
|
246
294
|
* @returns 客户列表
|
|
247
295
|
*/
|
|
248
296
|
async getCustomerList(params = {}) {
|
|
249
|
-
const url =
|
|
250
|
-
const {
|
|
251
|
-
page = 1,
|
|
252
|
-
pageSize = 20,
|
|
253
|
-
keyword,
|
|
254
|
-
...otherParams
|
|
255
|
-
} = params;
|
|
297
|
+
const url = "/customer/es/data";
|
|
298
|
+
const { page = 1, pageSize = 20, keyword, ...otherParams } = params;
|
|
256
299
|
try {
|
|
257
300
|
this.store.isLoading = true;
|
|
258
301
|
this.store.error = null;
|
|
259
302
|
const queryParams = {
|
|
260
303
|
page,
|
|
261
304
|
pageSize,
|
|
262
|
-
...
|
|
263
|
-
keyword
|
|
264
|
-
}),
|
|
305
|
+
...keyword && { keyword },
|
|
265
306
|
...otherParams
|
|
266
307
|
};
|
|
267
308
|
const res = await this.request.get(url, queryParams);
|
|
268
|
-
return res
|
|
309
|
+
return (res == null ? void 0 : res.data) || [];
|
|
269
310
|
} catch (error) {
|
|
270
|
-
console.error(
|
|
271
|
-
this.store.error = error instanceof Error ? error.message :
|
|
311
|
+
console.error("Failed to fetch customer list:", error);
|
|
312
|
+
this.store.error = error instanceof Error ? error.message : "Failed to fetch customer list";
|
|
272
313
|
throw error;
|
|
273
314
|
} finally {
|
|
274
315
|
this.store.isLoading = false;
|
|
275
316
|
}
|
|
276
317
|
}
|
|
277
|
-
|
|
278
318
|
/**
|
|
279
319
|
* 获取holder类型账户列表
|
|
280
320
|
* @param params
|
|
281
321
|
*/
|
|
282
322
|
async fetchHolderAccounts(params) {
|
|
283
|
-
|
|
284
|
-
const
|
|
285
|
-
|
|
286
|
-
shop_id,
|
|
287
|
-
num,
|
|
288
|
-
skip,
|
|
289
|
-
customer_id
|
|
290
|
-
} = params?.query || {};
|
|
323
|
+
var _a, _b;
|
|
324
|
+
const url = params.url || "/account/holder";
|
|
325
|
+
const { form_id, shop_id, num, skip, customer_id } = (params == null ? void 0 : params.query) || {};
|
|
291
326
|
try {
|
|
292
327
|
const res = await this.request.get(url, {
|
|
293
328
|
customer_id,
|
|
@@ -298,7 +333,7 @@ class AccountListModule extends _BaseModule.BaseModule {
|
|
|
298
333
|
});
|
|
299
334
|
this.store.accountList = [];
|
|
300
335
|
this.store.accounts = [];
|
|
301
|
-
if (res
|
|
336
|
+
if ((_b = (_a = res == null ? void 0 : res.data) == null ? void 0 : _a.list) == null ? void 0 : _b.length) {
|
|
302
337
|
await this.addHolderAccounts({
|
|
303
338
|
holders: res.data.list,
|
|
304
339
|
customerId: customer_id
|
|
@@ -309,7 +344,10 @@ class AccountListModule extends _BaseModule.BaseModule {
|
|
|
309
344
|
}
|
|
310
345
|
}
|
|
311
346
|
getLoginAccount() {
|
|
312
|
-
return this.store.accounts.find(n => n.isLogin());
|
|
347
|
+
return this.store.accounts.find((n) => n.isLogin());
|
|
313
348
|
}
|
|
314
|
-
}
|
|
315
|
-
|
|
349
|
+
};
|
|
350
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
351
|
+
0 && (module.exports = {
|
|
352
|
+
AccountListModule
|
|
353
|
+
});
|
|
@@ -1,32 +1,33 @@
|
|
|
1
|
-
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
2
18
|
|
|
3
|
-
|
|
4
|
-
|
|
19
|
+
// src/modules/AccountList/types.ts
|
|
20
|
+
var types_exports = {};
|
|
21
|
+
__export(types_exports, {
|
|
22
|
+
AccountListHooks: () => AccountListHooks
|
|
23
|
+
});
|
|
24
|
+
module.exports = __toCommonJS(types_exports);
|
|
25
|
+
var AccountListHooks = /* @__PURE__ */ ((AccountListHooks2) => {
|
|
26
|
+
AccountListHooks2["OnAccountListUpdate"] = "accountList:onUpdate";
|
|
27
|
+
AccountListHooks2["OnAccountListError"] = "accountList:onError";
|
|
28
|
+
return AccountListHooks2;
|
|
29
|
+
})(AccountListHooks || {});
|
|
30
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
31
|
+
0 && (module.exports = {
|
|
32
|
+
AccountListHooks
|
|
5
33
|
});
|
|
6
|
-
exports.AccountListHooks = void 0;
|
|
7
|
-
let AccountListHooks = exports.AccountListHooks = /*#__PURE__*/function (AccountListHooks) {
|
|
8
|
-
AccountListHooks["OnAccountListUpdate"] = "accountList:onUpdate";
|
|
9
|
-
AccountListHooks["OnAccountListError"] = "accountList:onError";
|
|
10
|
-
return AccountListHooks;
|
|
11
|
-
}({});
|
|
12
|
-
/**
|
|
13
|
-
* 账户列表查询参数
|
|
14
|
-
*/
|
|
15
|
-
/**
|
|
16
|
-
* 账户列表状态
|
|
17
|
-
*/
|
|
18
|
-
/**
|
|
19
|
-
* 账户列表模块 API
|
|
20
|
-
*/
|
|
21
|
-
/**
|
|
22
|
-
* 获取holder类型账户列表参数
|
|
23
|
-
*/
|
|
24
|
-
/**
|
|
25
|
-
* holder类型数据
|
|
26
|
-
*/
|
|
27
|
-
/**
|
|
28
|
-
* 获取客户列表参数
|
|
29
|
-
*/
|
|
30
|
-
/**
|
|
31
|
-
* 客户数据
|
|
32
|
-
*/
|
|
@@ -1,27 +1,39 @@
|
|
|
1
|
-
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __export = (target, all) => {
|
|
6
|
+
for (var name in all)
|
|
7
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
+
};
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
+
for (let key of __getOwnPropNames(from))
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
+
}
|
|
15
|
+
return to;
|
|
16
|
+
};
|
|
17
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
2
18
|
|
|
3
|
-
|
|
4
|
-
|
|
19
|
+
// src/modules/AccountList/utils.ts
|
|
20
|
+
var utils_exports = {};
|
|
21
|
+
__export(utils_exports, {
|
|
22
|
+
createHolderAccount: () => createHolderAccount
|
|
5
23
|
});
|
|
6
|
-
exports
|
|
7
|
-
|
|
8
|
-
* 创建holder类型账号
|
|
9
|
-
* @param holder
|
|
10
|
-
* @param customer_id 账户id
|
|
11
|
-
* @returns
|
|
12
|
-
*/
|
|
13
|
-
const createHolderAccount = (holder, customerId) => {
|
|
24
|
+
module.exports = __toCommonJS(utils_exports);
|
|
25
|
+
var createHolderAccount = (holder, customerId) => {
|
|
14
26
|
const account = {
|
|
15
27
|
id: holder.form_record_id,
|
|
16
28
|
name: holder.main_field,
|
|
17
29
|
username: holder.main_field,
|
|
18
|
-
avatar: holder
|
|
19
|
-
type:
|
|
20
|
-
_origin: {
|
|
21
|
-
...holder,
|
|
22
|
-
customer_id: customerId
|
|
23
|
-
}
|
|
30
|
+
avatar: (holder == null ? void 0 : holder.customer_cover) || "",
|
|
31
|
+
type: "holder",
|
|
32
|
+
_origin: { ...holder, customer_id: customerId }
|
|
24
33
|
};
|
|
25
34
|
return account;
|
|
26
35
|
};
|
|
27
|
-
|
|
36
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
37
|
+
0 && (module.exports = {
|
|
38
|
+
createHolderAccount
|
|
39
|
+
});
|
|
@@ -16,7 +16,7 @@ export declare class BaseModule {
|
|
|
16
16
|
}): void;
|
|
17
17
|
effectsOn(eventType: string, callback: (payload: any) => void): () => void;
|
|
18
18
|
effectsOff(eventType: string, callback: (payload: any) => void): void;
|
|
19
|
-
effectsOnce(eventType: string, callback: (payload: any) => void): void;
|
|
19
|
+
effectsOnce(eventType: string, callback: (payload: any) => void): () => void;
|
|
20
20
|
effectsEmit(eventType: string, payload: any): Promise<{
|
|
21
21
|
status: boolean;
|
|
22
22
|
data: any;
|