@chevre/domain 20.2.0-alpha.8 → 20.2.0
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/example/src/chevre/aggregateEventReservation.ts +37 -0
- package/example/src/chevre/aggregation/aggregateSystem.ts +116 -0
- package/example/src/chevre/attendIfNotAttended.ts +22 -0
- package/example/src/chevre/createManyEventsIfNotExist.ts +209 -0
- package/example/src/chevre/findByOrderNumberAndReservationId.ts +20 -0
- package/example/src/chevre/findScreeningRoomsByBranchCode.ts +27 -0
- package/example/src/chevre/importEventsFromCOA.ts +8 -1
- package/example/src/chevre/migrateEventOffersItemOfferedAvailableChannel.ts +2 -1
- package/example/src/chevre/migrateOwnershipInfos2newUserPool.ts +1 -1
- package/example/src/chevre/migrateProjectSubscription.ts +51 -0
- package/example/src/chevre/ownershipInfosCsv2peopleJson.ts +2 -2
- package/example/src/chevre/processReserve.ts +2 -0
- package/example/src/chevre/searchEventIds.ts +24 -0
- package/example/src/chevre/searchEventTicketOffers.ts +5 -4
- package/example/src/chevre/searchEvents.ts +20 -41
- package/example/src/chevre/searchOffersByCatalog.ts +27 -0
- package/example/src/chevre/updateTransaction.ts +38 -0
- package/lib/chevre/factory/event.d.ts +2 -0
- package/lib/chevre/factory/event.js +2 -0
- package/lib/chevre/repo/action.d.ts +77 -1
- package/lib/chevre/repo/action.js +249 -6
- package/lib/chevre/repo/aggregation.d.ts +38 -0
- package/lib/chevre/repo/aggregation.js +68 -0
- package/lib/chevre/repo/assetTransaction.d.ts +32 -0
- package/lib/chevre/repo/assetTransaction.js +148 -0
- package/lib/chevre/repo/code.d.ts +13 -16
- package/lib/chevre/repo/code.js +33 -19
- package/lib/chevre/repo/creativeWork.js +13 -12
- package/lib/chevre/repo/event.d.ts +64 -17
- package/lib/chevre/repo/event.js +456 -156
- package/lib/chevre/repo/mongoose/model/aggregation.d.ts +7 -0
- package/lib/chevre/repo/mongoose/model/aggregation.js +47 -0
- package/lib/chevre/repo/mongoose/model/event.js +4 -3
- package/lib/chevre/repo/mongoose/model/offer.js +2 -1
- package/lib/chevre/repo/mongoose/model/project.js +7 -1
- package/lib/chevre/repo/mongoose/model/telemetry.js +4 -28
- package/lib/chevre/repo/offer.d.ts +10 -0
- package/lib/chevre/repo/offer.js +47 -16
- package/lib/chevre/repo/order.d.ts +6 -0
- package/lib/chevre/repo/order.js +53 -7
- package/lib/chevre/repo/place.d.ts +26 -1
- package/lib/chevre/repo/place.js +216 -12
- package/lib/chevre/repo/product.d.ts +1 -0
- package/lib/chevre/repo/product.js +5 -0
- package/lib/chevre/repo/project.d.ts +7 -1
- package/lib/chevre/repo/project.js +15 -6
- package/lib/chevre/repo/reservation.d.ts +7 -8
- package/lib/chevre/repo/reservation.js +181 -76
- package/lib/chevre/repo/task.d.ts +31 -4
- package/lib/chevre/repo/task.js +146 -33
- package/lib/chevre/repo/transaction.d.ts +57 -5
- package/lib/chevre/repo/transaction.js +228 -34
- package/lib/chevre/repo/trip.js +33 -27
- package/lib/chevre/repository.d.ts +3 -0
- package/lib/chevre/repository.js +5 -1
- package/lib/chevre/service/aggregation/event/aggregateScreeningEvent.js +86 -68
- package/lib/chevre/service/aggregation/event/aggregateUseActionsOnEvent.js +5 -8
- package/lib/chevre/service/aggregation/system.d.ts +100 -0
- package/lib/chevre/service/aggregation/system.js +409 -0
- package/lib/chevre/service/aggregation.d.ts +2 -0
- package/lib/chevre/service/aggregation.js +3 -1
- package/lib/chevre/service/assetTransaction/pay/movieTicket/validation.js +5 -1
- package/lib/chevre/service/assetTransaction/pay/potentialActions.js +2 -4
- package/lib/chevre/service/assetTransaction/pay.d.ts +19 -4
- package/lib/chevre/service/assetTransaction/pay.js +65 -32
- package/lib/chevre/service/assetTransaction/registerService.js +4 -1
- package/lib/chevre/service/assetTransaction/reserve/factory.d.ts +3 -0
- package/lib/chevre/service/assetTransaction/reserve/factory.js +33 -2
- package/lib/chevre/service/assetTransaction/reserve/validateStartRequest.d.ts +16 -0
- package/lib/chevre/service/assetTransaction/reserve/validateStartRequest.js +84 -0
- package/lib/chevre/service/assetTransaction/reserve.d.ts +38 -6
- package/lib/chevre/service/assetTransaction/reserve.js +120 -94
- package/lib/chevre/service/assetTransaction.d.ts +1 -1
- package/lib/chevre/service/code.d.ts +2 -3
- package/lib/chevre/service/delivery/factory.d.ts +1 -1
- package/lib/chevre/service/delivery/product/factory.js +9 -3
- package/lib/chevre/service/event.d.ts +2 -4
- package/lib/chevre/service/event.js +35 -14
- package/lib/chevre/service/offer/event/authorize.d.ts +4 -7
- package/lib/chevre/service/offer/event/authorize.js +33 -87
- package/lib/chevre/service/offer/event/cancel.js +0 -1
- package/lib/chevre/service/offer/event/factory.d.ts +3 -2
- package/lib/chevre/service/offer/event/searchEventTicketOffers.d.ts +14 -7
- package/lib/chevre/service/offer/event/searchEventTicketOffers.js +95 -53
- package/lib/chevre/service/offer/event/voidTransaction.js +0 -2
- package/lib/chevre/service/offer/eventServiceByCOA/factory.d.ts +2 -1
- package/lib/chevre/service/offer/eventServiceByCOA.js +10 -2
- package/lib/chevre/service/offer/factory.js +10 -3
- package/lib/chevre/service/offer/product/searchProductOffers.d.ts +1 -0
- package/lib/chevre/service/offer/product/searchProductOffers.js +1 -1
- package/lib/chevre/service/offer/product.d.ts +1 -0
- package/lib/chevre/service/offer/product.js +7 -2
- package/lib/chevre/service/offer.d.ts +13 -2
- package/lib/chevre/service/offer.js +68 -46
- package/lib/chevre/service/order/onOrderStatusChanged/factory.js +25 -27
- package/lib/chevre/service/order/onOrderStatusChanged.js +2 -1
- package/lib/chevre/service/order/placeOrder.js +16 -0
- package/lib/chevre/service/order/returnOrder.js +6 -4
- package/lib/chevre/service/order/sendOrder.js +4 -2
- package/lib/chevre/service/payment/any.d.ts +9 -0
- package/lib/chevre/service/payment/any.js +16 -1
- package/lib/chevre/service/payment/movieTicket.d.ts +2 -2
- package/lib/chevre/service/payment/movieTicket.js +8 -2
- package/lib/chevre/service/product.js +5 -3
- package/lib/chevre/service/report/telemetry.js +1 -1
- package/lib/chevre/service/reserve/checkInReservation.js +2 -2
- package/lib/chevre/service/reserve/confirmReservation.js +7 -10
- package/lib/chevre/service/reserve/potentialActions/onReservationCanceled.js +2 -1
- package/lib/chevre/service/reserve/potentialActions/onReservationCheckedIn.js +2 -1
- package/lib/chevre/service/reserve/potentialActions/onReservationConfirmed.js +2 -1
- package/lib/chevre/service/reserve/potentialActions/onReservationUsed.js +32 -35
- package/lib/chevre/service/reserve/useReservation.d.ts +0 -3
- package/lib/chevre/service/reserve/useReservation.js +58 -32
- package/lib/chevre/service/task/confirmPayTransaction.js +20 -1
- package/lib/chevre/service/task/confirmReserveTransaction.d.ts +4 -0
- package/lib/chevre/service/task/confirmReserveTransaction.js +5 -5
- package/lib/chevre/service/task/importEventsFromCOA.js +3 -1
- package/lib/chevre/service/task/returnPayTransaction.js +10 -4
- package/lib/chevre/service/task.js +6 -9
- package/lib/chevre/service/transaction/moneyTransfer.js +9 -1
- package/lib/chevre/service/transaction/orderProgramMembership/findPaymentCardPermit.d.ts +1 -1
- package/lib/chevre/service/transaction/orderProgramMembership.js +6 -6
- package/lib/chevre/service/transaction/placeOrder.js +5 -3
- package/lib/chevre/service/transaction/placeOrderInProgress/factory.d.ts +1 -1
- package/lib/chevre/service/transaction/placeOrderInProgress/potentialActions.d.ts +0 -2
- package/lib/chevre/service/transaction/placeOrderInProgress/potentialActions.js +2 -11
- package/lib/chevre/service/transaction/placeOrderInProgress/validation/validateSeller.d.ts +1 -1
- package/lib/chevre/service/transaction/placeOrderInProgress.d.ts +3 -8
- package/lib/chevre/service/transaction/placeOrderInProgress.js +92 -107
- package/lib/chevre/service/transaction/returnOrder.js +8 -6
- package/lib/chevre/settings.d.ts +2 -0
- package/lib/chevre/settings.js +20 -12
- package/package.json +3 -3
- package/CHANGELOG.md +0 -2030
- package/example/.gitignore +0 -1
- package/example/src/chevre/.gitignore +0 -1
- package/example/src/chevre/aggregateReservationOnProject.ts +0 -32
- package/example/src/chevre/migratePlaceAdditionalProperties.ts +0 -162
- package/lib/chevre/service/transaction/placeOrderInProgress/potentialActions/confirmPay.d.ts +0 -6
- package/lib/chevre/service/transaction/placeOrderInProgress/potentialActions/confirmPay.js +0 -65
|
@@ -28,7 +28,10 @@ exports.POINT_AWARD_IDENTIFIER_NAME = 'pointAwardIdentifiers';
|
|
|
28
28
|
function start(params) {
|
|
29
29
|
return (repos) => __awaiter(this, void 0, void 0, function* () {
|
|
30
30
|
var _a;
|
|
31
|
-
const seller = yield repos.seller.findById({ id: params.seller.id }
|
|
31
|
+
const seller = yield repos.seller.findById({ id: params.seller.id }, {
|
|
32
|
+
hasMerchantReturnPolicy: 0,
|
|
33
|
+
paymentAccepted: 0
|
|
34
|
+
});
|
|
32
35
|
let makesOfferFromClient;
|
|
33
36
|
// 販売者オファー検証(2022-10-14~)
|
|
34
37
|
if (params.validateSeller === true) {
|
|
@@ -68,13 +71,13 @@ exports.start = start;
|
|
|
68
71
|
*/
|
|
69
72
|
function confirm(params) {
|
|
70
73
|
return (repos) => __awaiter(this, void 0, void 0, function* () {
|
|
71
|
-
var _a
|
|
74
|
+
var _a;
|
|
72
75
|
// 確認番号を事前発行
|
|
73
76
|
yield publishConfirmationNumberIfNotExist({
|
|
74
77
|
id: params.id,
|
|
75
78
|
object: { orderDate: params.result.order.orderDate }
|
|
76
79
|
})(repos);
|
|
77
|
-
|
|
80
|
+
const transaction = yield repos.transaction.findById({
|
|
78
81
|
typeOf: factory.transactionType.PlaceOrder,
|
|
79
82
|
id: params.id
|
|
80
83
|
});
|
|
@@ -95,10 +98,11 @@ function confirm(params) {
|
|
|
95
98
|
transaction.object.authorizeActions = yield searchAuthorizeActions(params)(repos);
|
|
96
99
|
// 注文番号を発行
|
|
97
100
|
const orderNumber = yield publishOrderNumberIfNotExist({
|
|
101
|
+
project: { id: transaction.project.id },
|
|
98
102
|
id: transaction.id,
|
|
99
103
|
object: { orderDate: params.result.order.orderDate }
|
|
100
104
|
})(repos);
|
|
101
|
-
const result =
|
|
105
|
+
const result = createResult(Object.assign(Object.assign({}, params), { orderNumber, transaction: transaction }));
|
|
102
106
|
// デフォルトEメールメッセージを検索
|
|
103
107
|
let emailMessageOnOrderSent;
|
|
104
108
|
if (repos.emailMessage !== undefined) {
|
|
@@ -115,13 +119,11 @@ function confirm(params) {
|
|
|
115
119
|
order: result.order,
|
|
116
120
|
potentialActions: params.potentialActions,
|
|
117
121
|
transaction: transaction,
|
|
118
|
-
emailMessage: emailMessageOnOrderSent
|
|
119
|
-
createConfirmPayActions: params.createConfirmPayActions,
|
|
120
|
-
createConfirmReserveActions: params.createConfirmReserveActions
|
|
122
|
+
emailMessage: emailMessageOnOrderSent
|
|
121
123
|
});
|
|
122
124
|
// ステータス変更
|
|
123
125
|
try {
|
|
124
|
-
|
|
126
|
+
yield repos.transaction.confirm({
|
|
125
127
|
typeOf: transaction.typeOf,
|
|
126
128
|
id: transaction.id,
|
|
127
129
|
authorizeActions: transaction.object.authorizeActions,
|
|
@@ -140,10 +142,10 @@ function confirm(params) {
|
|
|
140
142
|
throw error;
|
|
141
143
|
}
|
|
142
144
|
// 万が一処理が想定通りでない場合orderNumberが存在しない
|
|
143
|
-
if (typeof
|
|
144
|
-
|
|
145
|
-
}
|
|
146
|
-
return
|
|
145
|
+
// if (typeof transaction.result?.order.typeOf !== 'string') {
|
|
146
|
+
// throw new factory.errors.ServiceUnavailable('transaction.result not found');
|
|
147
|
+
// }
|
|
148
|
+
return result;
|
|
147
149
|
});
|
|
148
150
|
}
|
|
149
151
|
exports.confirm = confirm;
|
|
@@ -152,33 +154,27 @@ exports.confirm = confirm;
|
|
|
152
154
|
*/
|
|
153
155
|
function publishConfirmationNumberIfNotExist(params) {
|
|
154
156
|
return (repos) => __awaiter(this, void 0, void 0, function* () {
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
id: params.id
|
|
158
|
-
});
|
|
157
|
+
// 最適化(2023-02-03~)
|
|
158
|
+
let confirmationNumber = yield repos.transaction.findInProgressConfirmationNumberById({ id: params.id });
|
|
159
159
|
// すでに発行済であれば何もしない
|
|
160
|
-
if (typeof
|
|
161
|
-
return
|
|
160
|
+
if (typeof confirmationNumber === 'string') {
|
|
161
|
+
return confirmationNumber;
|
|
162
162
|
}
|
|
163
163
|
// 確認番号を発行
|
|
164
|
-
|
|
165
|
-
orderDate: params.object.orderDate
|
|
166
|
-
})).toString();
|
|
164
|
+
confirmationNumber = yield repos.confirmationNumber.publish({ orderDate: params.object.orderDate });
|
|
167
165
|
// 取引に存在しなければ保管
|
|
168
166
|
yield repos.transaction.saveConfirmationNumberIfNotExist({
|
|
169
|
-
id:
|
|
167
|
+
id: params.id,
|
|
170
168
|
confirmationNumber
|
|
171
169
|
});
|
|
172
170
|
// 確認番号を取引から再取得
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
id: params.id
|
|
176
|
-
});
|
|
171
|
+
// 最適化(2023-02-03~)
|
|
172
|
+
confirmationNumber = yield repos.transaction.findInProgressConfirmationNumberById({ id: params.id });
|
|
177
173
|
// 万が一処理が想定通りでない場合confirmationNumberが存在しない
|
|
178
|
-
if (typeof
|
|
174
|
+
if (typeof confirmationNumber !== 'string') {
|
|
179
175
|
throw new factory.errors.ServiceUnavailable('transaction.object.confirmationNumber not found');
|
|
180
176
|
}
|
|
181
|
-
return
|
|
177
|
+
return confirmationNumber;
|
|
182
178
|
});
|
|
183
179
|
}
|
|
184
180
|
exports.publishConfirmationNumberIfNotExist = publishConfirmationNumberIfNotExist;
|
|
@@ -187,75 +183,66 @@ exports.publishConfirmationNumberIfNotExist = publishConfirmationNumberIfNotExis
|
|
|
187
183
|
*/
|
|
188
184
|
function publishOrderNumberIfNotExist(params) {
|
|
189
185
|
return (repos) => __awaiter(this, void 0, void 0, function* () {
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
id: params.id
|
|
193
|
-
});
|
|
186
|
+
// 最適化(2023-02-03~)
|
|
187
|
+
let orderNumber = yield repos.transaction.findInProgressOrderNumberById({ id: params.id });
|
|
194
188
|
// すでに発行済であれば何もしない
|
|
195
|
-
if (typeof
|
|
196
|
-
return
|
|
189
|
+
if (typeof orderNumber === 'string') {
|
|
190
|
+
return orderNumber;
|
|
197
191
|
}
|
|
198
192
|
// 注文番号を発行
|
|
199
|
-
const
|
|
200
|
-
if (typeof
|
|
193
|
+
const { alternateName } = yield repos.project.findAlternateNameById({ id: params.project.id });
|
|
194
|
+
if (typeof alternateName !== 'string') {
|
|
201
195
|
throw new factory.errors.NotFound('project.alternateName');
|
|
202
196
|
}
|
|
203
|
-
|
|
204
|
-
project: { alternateName
|
|
197
|
+
orderNumber = yield repos.orderNumber.publishByTimestamp({
|
|
198
|
+
project: { alternateName },
|
|
205
199
|
orderDate: params.object.orderDate
|
|
206
200
|
});
|
|
207
201
|
// 取引に存在しなければ保管
|
|
208
|
-
yield repos.transaction.saveOrderNumberIfNotExist({
|
|
209
|
-
id: transaction.id,
|
|
210
|
-
orderNumber
|
|
211
|
-
});
|
|
202
|
+
yield repos.transaction.saveOrderNumberIfNotExist({ id: params.id, orderNumber });
|
|
212
203
|
// 注文番号を取引から再取得
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
id: params.id
|
|
216
|
-
});
|
|
204
|
+
// 最適化(2023-02-03~)
|
|
205
|
+
orderNumber = yield repos.transaction.findInProgressOrderNumberById({ id: params.id });
|
|
217
206
|
// 万が一処理が想定通りでない場合orderNumberが存在しない
|
|
218
|
-
if (typeof
|
|
207
|
+
if (typeof orderNumber !== 'string') {
|
|
219
208
|
throw new factory.errors.ServiceUnavailable('transaction.object.orderNumber not found');
|
|
220
209
|
}
|
|
221
|
-
return
|
|
210
|
+
return orderNumber;
|
|
222
211
|
});
|
|
223
212
|
}
|
|
224
213
|
exports.publishOrderNumberIfNotExist = publishOrderNumberIfNotExist;
|
|
225
214
|
function createResult(params) {
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
isGift: false
|
|
237
|
-
});
|
|
238
|
-
(0, validation_1.validateEventOffers)({
|
|
239
|
-
transaction: transaction,
|
|
240
|
-
order: order
|
|
241
|
-
});
|
|
242
|
-
// 注文アイテム数制限確認
|
|
243
|
-
(0, validation_1.validateNumItems)({
|
|
244
|
-
order: order,
|
|
245
|
-
result: params.result
|
|
246
|
-
});
|
|
247
|
-
(0, validation_1.validatePaymentMethods)({ order });
|
|
248
|
-
// 確認番号を発行
|
|
249
|
-
const { confirmationNumber, identifier, url } = yield createConfirmationNumber({
|
|
250
|
-
order: order,
|
|
251
|
-
transaction: transaction,
|
|
252
|
-
result: params.result
|
|
253
|
-
})();
|
|
254
|
-
order.confirmationNumber = confirmationNumber;
|
|
255
|
-
order.identifier = identifier;
|
|
256
|
-
order.url = url;
|
|
257
|
-
return { order };
|
|
215
|
+
const transaction = params.transaction;
|
|
216
|
+
// 取引の確定条件が全て整っているかどうか確認
|
|
217
|
+
(0, validation_1.validateTransaction)(transaction);
|
|
218
|
+
// 注文作成
|
|
219
|
+
const order = (0, result_1.createOrder)({
|
|
220
|
+
orderNumber: params.orderNumber,
|
|
221
|
+
transaction: transaction,
|
|
222
|
+
orderDate: params.result.order.orderDate,
|
|
223
|
+
orderStatus: factory.orderStatus.OrderProcessing,
|
|
224
|
+
isGift: false
|
|
258
225
|
});
|
|
226
|
+
(0, validation_1.validateEventOffers)({
|
|
227
|
+
transaction: transaction,
|
|
228
|
+
order: order
|
|
229
|
+
});
|
|
230
|
+
// 注文アイテム数制限確認
|
|
231
|
+
(0, validation_1.validateNumItems)({
|
|
232
|
+
order: order,
|
|
233
|
+
result: params.result
|
|
234
|
+
});
|
|
235
|
+
(0, validation_1.validatePaymentMethods)({ order });
|
|
236
|
+
// 確認番号を発行
|
|
237
|
+
const { confirmationNumber, identifier, url } = createConfirmationNumber({
|
|
238
|
+
order: order,
|
|
239
|
+
transaction: transaction,
|
|
240
|
+
result: params.result
|
|
241
|
+
});
|
|
242
|
+
order.confirmationNumber = confirmationNumber;
|
|
243
|
+
order.identifier = identifier;
|
|
244
|
+
order.url = url;
|
|
245
|
+
return { order };
|
|
259
246
|
}
|
|
260
247
|
function searchAuthorizeActions(params) {
|
|
261
248
|
return (repos) => __awaiter(this, void 0, void 0, function* () {
|
|
@@ -273,34 +260,32 @@ function searchAuthorizeActions(params) {
|
|
|
273
260
|
});
|
|
274
261
|
}
|
|
275
262
|
function createConfirmationNumber(params) {
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
263
|
+
const confirmationNumber = params.transaction.object.confirmationNumber;
|
|
264
|
+
let url = '';
|
|
265
|
+
let identifier = [];
|
|
266
|
+
// 取引に確認番号が保管されていなければ、確認番号を発行
|
|
267
|
+
if (typeof confirmationNumber !== 'string') {
|
|
268
|
+
// 事前に発行済なはずなので、ありえないフロー
|
|
269
|
+
throw new factory.errors.ServiceUnavailable('object.confirmationNumber undefined');
|
|
270
|
+
}
|
|
271
|
+
// URLの指定があれば上書き
|
|
272
|
+
// tslint:disable-next-line:no-single-line-block-comment
|
|
273
|
+
/* istanbul ignore if */
|
|
274
|
+
if (typeof params.result.order.url === 'string') {
|
|
275
|
+
url = params.result.order.url;
|
|
276
|
+
}
|
|
277
|
+
else /* istanbul ignore next */ if (typeof params.result.order.url === 'function') {
|
|
286
278
|
// tslint:disable-next-line:no-single-line-block-comment
|
|
287
|
-
/* istanbul ignore
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
identifier = [
|
|
298
|
-
...(Array.isArray(params.result.order.identifier)) ? params.result.order.identifier : [],
|
|
299
|
-
// 取引に指定があれば追加
|
|
300
|
-
...(Array.isArray(params.transaction.object.identifier)) ? params.transaction.object.identifier : []
|
|
301
|
-
];
|
|
302
|
-
return { confirmationNumber, url, identifier };
|
|
303
|
-
});
|
|
279
|
+
/* istanbul ignore next */
|
|
280
|
+
url = params.result.order.url(params.order);
|
|
281
|
+
}
|
|
282
|
+
// 識別子の指定があれば上書き
|
|
283
|
+
identifier = [
|
|
284
|
+
...(Array.isArray(params.result.order.identifier)) ? params.result.order.identifier : [],
|
|
285
|
+
// 取引に指定があれば追加
|
|
286
|
+
...(Array.isArray(params.transaction.object.identifier)) ? params.transaction.object.identifier : []
|
|
287
|
+
];
|
|
288
|
+
return { confirmationNumber, url, identifier };
|
|
304
289
|
}
|
|
305
290
|
/**
|
|
306
291
|
* インセンティブ承認
|
|
@@ -306,7 +306,7 @@ function validateAppliedReturnPolicy(params) {
|
|
|
306
306
|
function confirm(params) {
|
|
307
307
|
return (repos) => __awaiter(this, void 0, void 0, function* () {
|
|
308
308
|
var _a;
|
|
309
|
-
|
|
309
|
+
const transaction = yield repos.transaction.findById({ typeOf: factory.transactionType.ReturnOrder, id: params.id });
|
|
310
310
|
if (transaction.status === factory.transactionStatusType.Confirmed) {
|
|
311
311
|
// すでに確定済の場合
|
|
312
312
|
return transaction.result;
|
|
@@ -356,14 +356,14 @@ function confirm(params) {
|
|
|
356
356
|
// useConfirmRefund: params.useConfirmRefund
|
|
357
357
|
});
|
|
358
358
|
// ステータス変更
|
|
359
|
-
|
|
359
|
+
yield repos.transaction.confirm({
|
|
360
360
|
typeOf: transaction.typeOf,
|
|
361
361
|
id: transaction.id,
|
|
362
362
|
authorizeActions: [],
|
|
363
363
|
result: result,
|
|
364
364
|
potentialActions: potentialActions
|
|
365
365
|
});
|
|
366
|
-
return
|
|
366
|
+
return result;
|
|
367
367
|
});
|
|
368
368
|
}
|
|
369
369
|
exports.confirm = confirm;
|
|
@@ -386,9 +386,11 @@ function exportTasksById(params) {
|
|
|
386
386
|
transaction,
|
|
387
387
|
runsAt: taskRunsAt
|
|
388
388
|
});
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
389
|
+
// saveManyに変更(2023-02-01~)
|
|
390
|
+
yield repos.task.saveMany(taskAttributes);
|
|
391
|
+
// await Promise.all(taskAttributes.map(async (taskAttribute) => {
|
|
392
|
+
// await repos.task.save(taskAttribute);
|
|
393
|
+
// }));
|
|
392
394
|
});
|
|
393
395
|
}
|
|
394
396
|
exports.exportTasksById = exportTasksById;
|
package/lib/chevre/settings.d.ts
CHANGED
|
@@ -23,6 +23,8 @@ export declare type ISettings = factory.project.ISettings & {
|
|
|
23
23
|
maxNumCreditCardPaymentMethod?: number;
|
|
24
24
|
};
|
|
25
25
|
export declare const DEFAULT_PAYMENT_METHOD_TYPE_FOR_CREDIT_CARD: string;
|
|
26
|
+
export declare const USE_ASSET_TRANSACTION_SYNC_PROCESSING: boolean;
|
|
27
|
+
export declare const USE_PAY_ASSET_TRANSACTION_SYNC_PROCESSING: boolean;
|
|
26
28
|
/**
|
|
27
29
|
* グローバル設定
|
|
28
30
|
*/
|
package/lib/chevre/settings.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.settings = exports.DEFAULT_PAYMENT_METHOD_TYPE_FOR_CREDIT_CARD = exports.DEFAULT_SENDER_EMAIL = exports.TRANSACTION_CANCELED_STORAGE_PERIOD_IN_DAYS = exports.TRANSACTION_CONFIRMED_STORAGE_PERIOD_IN_DAYS = exports.ASSET_TRANSACTION_STORAGE_PERIOD_IN_DAYS = exports.ABORTED_TASKS_WITHOUT_REPORT = void 0;
|
|
3
|
+
exports.settings = exports.USE_PAY_ASSET_TRANSACTION_SYNC_PROCESSING = exports.USE_ASSET_TRANSACTION_SYNC_PROCESSING = exports.DEFAULT_PAYMENT_METHOD_TYPE_FOR_CREDIT_CARD = exports.DEFAULT_SENDER_EMAIL = exports.TRANSACTION_CANCELED_STORAGE_PERIOD_IN_DAYS = exports.TRANSACTION_CONFIRMED_STORAGE_PERIOD_IN_DAYS = exports.ASSET_TRANSACTION_STORAGE_PERIOD_IN_DAYS = exports.ABORTED_TASKS_WITHOUT_REPORT = void 0;
|
|
4
4
|
const factory = require("./factory");
|
|
5
5
|
const transactionWebhookUrls = (typeof process.env.INFORM_TRANSACTION_URL === 'string')
|
|
6
6
|
? process.env.INFORM_TRANSACTION_URL.split(',')
|
|
@@ -14,9 +14,9 @@ const informOrderUrls = (typeof process.env.INFORM_ORDER_URL === 'string')
|
|
|
14
14
|
const informReservationUrls = (typeof process.env.INFORM_RESERVATION_URL === 'string')
|
|
15
15
|
? process.env.INFORM_RESERVATION_URL.split(',')
|
|
16
16
|
: [];
|
|
17
|
-
const informUseReservationUrls = (typeof process.env.INFORM_USE_RESERVATION_URL === 'string')
|
|
18
|
-
|
|
19
|
-
|
|
17
|
+
// const informUseReservationUrls = (typeof process.env.INFORM_USE_RESERVATION_URL === 'string')
|
|
18
|
+
// ? process.env.INFORM_USE_RESERVATION_URL.split(',')
|
|
19
|
+
// : [];
|
|
20
20
|
// tslint:disable-next-line:no-magic-numbers
|
|
21
21
|
const triggerWebhookTimeout = (process.env.TRIGGER_WEBHOOK_TIMEOUT !== undefined) ? Number(process.env.TRIGGER_WEBHOOK_TIMEOUT) : 15000;
|
|
22
22
|
const MAXIMUM_RESERVATION_GRACE_PERIOD_IN_DAYS = (typeof process.env.MAXIMUM_RESERVATION_GRACE_PERIOD_IN_DAYS === 'string')
|
|
@@ -43,9 +43,14 @@ exports.TRANSACTION_CONFIRMED_STORAGE_PERIOD_IN_DAYS = 365;
|
|
|
43
43
|
/**
|
|
44
44
|
* 取引保管期間(Canceled)
|
|
45
45
|
*/
|
|
46
|
-
exports.TRANSACTION_CANCELED_STORAGE_PERIOD_IN_DAYS =
|
|
46
|
+
exports.TRANSACTION_CANCELED_STORAGE_PERIOD_IN_DAYS = (typeof process.env.TRANSACTION_CANCELED_STORAGE_PERIOD_IN_DAYS === 'string')
|
|
47
|
+
? Number(process.env.TRANSACTION_CANCELED_STORAGE_PERIOD_IN_DAYS)
|
|
48
|
+
// tslint:disable-next-line:no-magic-numbers
|
|
49
|
+
: 7;
|
|
47
50
|
exports.DEFAULT_SENDER_EMAIL = process.env.DEFAULT_SENDER_EMAIL;
|
|
48
51
|
exports.DEFAULT_PAYMENT_METHOD_TYPE_FOR_CREDIT_CARD = String(process.env.DEFAULT_PAYMENT_METHOD_TYPE_FOR_CREDIT_CARD);
|
|
52
|
+
exports.USE_ASSET_TRANSACTION_SYNC_PROCESSING = process.env.USE_ASSET_TRANSACTION_SYNC_PROCESSING === '1';
|
|
53
|
+
exports.USE_PAY_ASSET_TRANSACTION_SYNC_PROCESSING = process.env.USE_PAY_ASSET_TRANSACTION_SYNC_PROCESSING === '1';
|
|
49
54
|
/**
|
|
50
55
|
* グローバル設定
|
|
51
56
|
*/
|
|
@@ -76,13 +81,16 @@ exports.settings = Object.assign({ transactionWebhookUrls, onOrderStatusChanged:
|
|
|
76
81
|
.map((url) => {
|
|
77
82
|
return { recipient: { url } };
|
|
78
83
|
})
|
|
79
|
-
},
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
84
|
+
},
|
|
85
|
+
// 廃止(2023-01-30~)
|
|
86
|
+
// onReservationUsed: {
|
|
87
|
+
// informAction: informUseReservationUrls
|
|
88
|
+
// .filter((url) => url.length > 0)
|
|
89
|
+
// .map((url) => {
|
|
90
|
+
// return { recipient: { url } };
|
|
91
|
+
// })
|
|
92
|
+
// },
|
|
93
|
+
webhook: {
|
|
86
94
|
timeout: triggerWebhookTimeout
|
|
87
95
|
}, maximumReservationGracePeriodInDays: MAXIMUM_RESERVATION_GRACE_PERIOD_IN_DAYS, userPoolIdOld: String(process.env.USERPOOL_ID_OLD), userPoolIdNew: String(process.env.USERPOOL_ID_NEW) }, (typeof MAX_NUM_CREDIT_CARD_PAYMENT_METHOD === 'number')
|
|
88
96
|
? { maxNumCreditCardPaymentMethod: MAX_NUM_CREDIT_CARD_PAYMENT_METHOD }
|
package/package.json
CHANGED
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
}
|
|
10
10
|
],
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@chevre/factory": "4.
|
|
13
|
-
"@cinerino/sdk": "3.
|
|
12
|
+
"@chevre/factory": "4.286.0",
|
|
13
|
+
"@cinerino/sdk": "3.138.1",
|
|
14
14
|
"@motionpicture/coa-service": "9.2.0",
|
|
15
15
|
"@motionpicture/gmo-service": "5.2.0",
|
|
16
16
|
"@sendgrid/mail": "6.4.0",
|
|
@@ -120,5 +120,5 @@
|
|
|
120
120
|
"postversion": "git push origin --tags",
|
|
121
121
|
"prepublishOnly": "npm run clean && npm run build && npm test && npm run doc"
|
|
122
122
|
},
|
|
123
|
-
"version": "20.2.0
|
|
123
|
+
"version": "20.2.0"
|
|
124
124
|
}
|