@yolo-croket-dev/amqp-access 0.3.3 → 0.3.4-sj
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/order-server/dto/purchasedinfos/query/index.d.ts +1 -0
- package/order-server/dto/purchasedinfos/query/index.js +1 -0
- package/order-server/dto/purchasedinfos/query/search-unconfirmed-waiting-order-sellers.dto.d.ts +15 -0
- package/order-server/dto/purchasedinfos/query/search-unconfirmed-waiting-order-sellers.dto.js +9 -0
- package/order-server/services/amqp.purchased-info.service.d.ts +2 -1
- package/order-server/services/amqp.purchased-info.service.js +3 -0
- package/package.json +1 -1
|
@@ -4,3 +4,4 @@ export * from './get-partial-refund-processes-by-public-ids.dto';
|
|
|
4
4
|
export * from './reload-p-infos-for-manage-buyer.dto';
|
|
5
5
|
export * from './get-p-nums-for-show-ad-center-inflow.dto';
|
|
6
6
|
export * from './get-p-infos-for-before-delivery-excel.dto';
|
|
7
|
+
export * from './search-unconfirmed-waiting-order-sellers.dto';
|
|
@@ -20,3 +20,4 @@ __exportStar(require("./get-partial-refund-processes-by-public-ids.dto"), export
|
|
|
20
20
|
__exportStar(require("./reload-p-infos-for-manage-buyer.dto"), exports);
|
|
21
21
|
__exportStar(require("./get-p-nums-for-show-ad-center-inflow.dto"), exports);
|
|
22
22
|
__exportStar(require("./get-p-infos-for-before-delivery-excel.dto"), exports);
|
|
23
|
+
__exportStar(require("./search-unconfirmed-waiting-order-sellers.dto"), exports);
|
package/order-server/dto/purchasedinfos/query/search-unconfirmed-waiting-order-sellers.dto.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare class UnconfirmedWaitingOrderSellerInfo {
|
|
2
|
+
username: string;
|
|
3
|
+
buyerId: string;
|
|
4
|
+
storeTitle: string;
|
|
5
|
+
sellerId: string;
|
|
6
|
+
storeId: string;
|
|
7
|
+
pastName: string;
|
|
8
|
+
pOptionNames: string;
|
|
9
|
+
publicId: string;
|
|
10
|
+
paymentDate: string;
|
|
11
|
+
paidPrice: number;
|
|
12
|
+
}
|
|
13
|
+
export declare class SearchUnconfirmedWaitingOrderSellersResult {
|
|
14
|
+
excelDatas: UnconfirmedWaitingOrderSellerInfo[];
|
|
15
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SearchUnconfirmedWaitingOrderSellersResult = exports.UnconfirmedWaitingOrderSellerInfo = void 0;
|
|
4
|
+
class UnconfirmedWaitingOrderSellerInfo {
|
|
5
|
+
}
|
|
6
|
+
exports.UnconfirmedWaitingOrderSellerInfo = UnconfirmedWaitingOrderSellerInfo;
|
|
7
|
+
class SearchUnconfirmedWaitingOrderSellersResult {
|
|
8
|
+
}
|
|
9
|
+
exports.SearchUnconfirmedWaitingOrderSellersResult = SearchUnconfirmedWaitingOrderSellersResult;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ClientProxy } from '@nestjs/microservices';
|
|
2
2
|
import { AbstractParam } from '@yolo-croket-dev/core';
|
|
3
|
-
import { GetPInfoSettleAmountInfoByAtlasPayload, GetPInfoSettleAmountInfoByAtlasResult, GetPInfoAllSettleAmountByAtlasPayload, GetPInfoAllSettleAmountByAtlasResult, GetPInfoLegacySettleLogsByAtlasPayload, GetPInfoLegacySettleLogsByAtlasResult, GetPInfoAccumulatedSettleAmountByAtlasPayload, GetPInfoAccumulatedSettleAmountByAtlasResult, GetPInfoDoneSettleAmountByAtlasPayload, GetPInfoDoneSettleAmountByAtlasResult, GetPInfoExpectSettleAmountByAtlasPayload, GetPInfoExpectSettleAmountByAtlasResult, GetPartialRefundProcessesByPublicIdsPayload, GetPartialRefundProcessesByPublicIdsResult, GetPInfosForManageBuyerByAtlasPayload, GetPInfosForManageBuyerByAtlasResult, GetFacetPInfosForManageBuyerByAtlasPayload, GetFacetPInfosForManageBuyerByAtlasResult, ReloadPInfosForManageBuyerPayload, ReloadPInfosForManageBuyerResult, UpdateAdCenterCouponInfoPayload, UpdateDoneAdCenterCouponInfosPayload, CancelDoneAdCenterCouponInfosPayload, RequestCreateAdCenterCouponSettlePayload, PatchProcessV2ToCheckingStockPayload, PatchProcessV2ToCheckingStockResult, GetItemSaleInfosForSalesTeamByAtlasPayload, GetItemSaleInfosForSalesTeamByAtlasResult, GetItemSaleMergeDataForSalesTeamByAtlasPayload, GetItemSaleMergeDataForSalesTeamByAtlasResult, GetPNumsForShowAdCenterInflowPayload, GetPNumsForShowAdCenterInflowResult, GetPNumsGroupItemIdPayload, GetPNumsGroupItemIdResult, GetPInfoIdsForPredictSettlePayload, GetPInfoIdsForPredictSettleResult, GetPInfosForBeforeDeliveryExcelPayload, GetPInfosForBeforeDeliveryExcelResult } from '../dto/purchasedinfos';
|
|
3
|
+
import { GetPInfoSettleAmountInfoByAtlasPayload, GetPInfoSettleAmountInfoByAtlasResult, GetPInfoAllSettleAmountByAtlasPayload, GetPInfoAllSettleAmountByAtlasResult, GetPInfoLegacySettleLogsByAtlasPayload, GetPInfoLegacySettleLogsByAtlasResult, GetPInfoAccumulatedSettleAmountByAtlasPayload, GetPInfoAccumulatedSettleAmountByAtlasResult, GetPInfoDoneSettleAmountByAtlasPayload, GetPInfoDoneSettleAmountByAtlasResult, GetPInfoExpectSettleAmountByAtlasPayload, GetPInfoExpectSettleAmountByAtlasResult, GetPartialRefundProcessesByPublicIdsPayload, GetPartialRefundProcessesByPublicIdsResult, GetPInfosForManageBuyerByAtlasPayload, GetPInfosForManageBuyerByAtlasResult, GetFacetPInfosForManageBuyerByAtlasPayload, GetFacetPInfosForManageBuyerByAtlasResult, ReloadPInfosForManageBuyerPayload, ReloadPInfosForManageBuyerResult, UpdateAdCenterCouponInfoPayload, UpdateDoneAdCenterCouponInfosPayload, CancelDoneAdCenterCouponInfosPayload, RequestCreateAdCenterCouponSettlePayload, PatchProcessV2ToCheckingStockPayload, PatchProcessV2ToCheckingStockResult, GetItemSaleInfosForSalesTeamByAtlasPayload, GetItemSaleInfosForSalesTeamByAtlasResult, GetItemSaleMergeDataForSalesTeamByAtlasPayload, GetItemSaleMergeDataForSalesTeamByAtlasResult, GetPNumsForShowAdCenterInflowPayload, GetPNumsForShowAdCenterInflowResult, GetPNumsGroupItemIdPayload, GetPNumsGroupItemIdResult, GetPInfoIdsForPredictSettlePayload, GetPInfoIdsForPredictSettleResult, GetPInfosForBeforeDeliveryExcelPayload, GetPInfosForBeforeDeliveryExcelResult, SearchUnconfirmedWaitingOrderSellersResult } from '../dto/purchasedinfos';
|
|
4
4
|
export declare class AmqpPurchasedInfoService {
|
|
5
5
|
private readonly client;
|
|
6
6
|
private readonly amqpManager;
|
|
@@ -28,4 +28,5 @@ export declare class AmqpPurchasedInfoService {
|
|
|
28
28
|
getPInfoIdsForPredictSettle(payload: GetPInfoIdsForPredictSettlePayload, param: AbstractParam): Promise<GetPInfoIdsForPredictSettleResult>;
|
|
29
29
|
getPInfosForBeforeDeliveryExcel(payload: GetPInfosForBeforeDeliveryExcelPayload, param: AbstractParam): Promise<GetPInfosForBeforeDeliveryExcelResult[]>;
|
|
30
30
|
migrationPayTryLogIdV2(param: AbstractParam): Promise<void>;
|
|
31
|
+
searchUnconfirmedWaitingOrderSellers(param: AbstractParam): Promise<SearchUnconfirmedWaitingOrderSellersResult>;
|
|
31
32
|
}
|
|
@@ -90,6 +90,9 @@ let AmqpPurchasedInfoService = class AmqpPurchasedInfoService {
|
|
|
90
90
|
async migrationPayTryLogIdV2(param) {
|
|
91
91
|
return this.amqpManager.call('payTrylogId_v2 데이터 마이그레이션', 'purchased-info.migration.pay-try-log-id-v2', {}, param, { isErrorThrowing: true });
|
|
92
92
|
}
|
|
93
|
+
async searchUnconfirmedWaitingOrderSellers(param) {
|
|
94
|
+
return this.amqpManager.call('주문확인중 2일 이상 미확인 셀러 조회', 'purchased-info.get.unconfirmed-waiting-order-sellers', {}, param, { isErrorThrowing: true });
|
|
95
|
+
}
|
|
93
96
|
};
|
|
94
97
|
exports.AmqpPurchasedInfoService = AmqpPurchasedInfoService;
|
|
95
98
|
exports.AmqpPurchasedInfoService = AmqpPurchasedInfoService = __decorate([
|