@aptos-scp/scp-component-store-selling-features-domain-model 1.46.6 → 1.47.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/lib/domain/model/Constants.d.ts +5 -0
- package/lib/domain/model/Constants.js +2 -0
- package/lib/domain/model/account/IPaymentAccountLookupLine.d.ts +12 -0
- package/lib/domain/model/account/IPaymentAccountLookupLine.js +3 -0
- package/lib/domain/model/account/PaymentAccountLookupLine.d.ts +29 -0
- package/lib/domain/model/account/PaymentAccountLookupLine.js +104 -0
- package/lib/domain/model/account/index.d.ts +2 -0
- package/lib/domain/model/account/index.js +7 -0
- package/lib/domain/model/fee/FeeLineExtendedAmountDecorator.d.ts +3 -2
- package/lib/domain/model/fee/FeeLineExtendedAmountDecorator.js +6 -0
- package/lib/domain/model/index.d.ts +1 -0
- package/lib/domain/model/index.js +1 -0
- package/lib/domain/model/shipping/ShippingFeeLineChangeDecorator.d.ts +3 -2
- package/lib/domain/model/shipping/ShippingFeeLineChangeDecorator.js +13 -5
- package/package.json +5 -5
|
@@ -1034,3 +1034,8 @@ export declare enum AssignCustomerForReturnAction {
|
|
|
1034
1034
|
Skip = "Skip"
|
|
1035
1035
|
}
|
|
1036
1036
|
export declare const DELIVERY_CONTACT_UPDATED_EVENT: string;
|
|
1037
|
+
export declare const PAYMENT_ACCOUNT_LOOKUP_EVENT: string;
|
|
1038
|
+
export interface IPaymentAccountLookupEventData {
|
|
1039
|
+
deviceIds: string[];
|
|
1040
|
+
}
|
|
1041
|
+
export declare const DELIVERY_SHIPPING_FEE_UPDATED_EVENT: string;
|
|
@@ -1041,4 +1041,6 @@ var AssignCustomerForReturnAction;
|
|
|
1041
1041
|
AssignCustomerForReturnAction["Skip"] = "Skip";
|
|
1042
1042
|
})(AssignCustomerForReturnAction = exports.AssignCustomerForReturnAction || (exports.AssignCustomerForReturnAction = {}));
|
|
1043
1043
|
exports.DELIVERY_CONTACT_UPDATED_EVENT = "Delivery.ContactUpdated";
|
|
1044
|
+
exports.PAYMENT_ACCOUNT_LOOKUP_EVENT = "PaymentAccount.Lookup";
|
|
1045
|
+
exports.DELIVERY_SHIPPING_FEE_UPDATED_EVENT = "Delivery.ShippingFeeUpdated";
|
|
1044
1046
|
//# sourceMappingURL=Constants.js.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ITransactionLine } from "@aptos-scp/scp-component-store-selling-core";
|
|
2
|
+
import { ICardHolder } from "@aptos-scp/scp-types-commerce-devices";
|
|
3
|
+
import { PaymentAccountLookupResult } from "@aptos-scp/scp-types-commerce-transaction";
|
|
4
|
+
export interface IPaymentAccountLookupLine extends ITransactionLine {
|
|
5
|
+
readonly lookupResult: PaymentAccountLookupResult;
|
|
6
|
+
readonly lookupResultReason?: string;
|
|
7
|
+
readonly cardHolder?: ICardHolder;
|
|
8
|
+
readonly accountNumber?: string;
|
|
9
|
+
readonly cardToken?: string;
|
|
10
|
+
readonly referenceNumber?: string;
|
|
11
|
+
readonly authorizationDeviceId?: string;
|
|
12
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { ITransactionLine, UiBusinessEvent } from "@aptos-scp/scp-component-store-selling-core";
|
|
2
|
+
import { PaymentAccountLookupResult } from "@aptos-scp/scp-types-commerce-transaction";
|
|
3
|
+
import { ICardHolder, ResponseCodes } from "@aptos-scp/scp-types-commerce-devices";
|
|
4
|
+
import { BaseTransactionLine } from "../BaseTransactionLine";
|
|
5
|
+
import { IPaymentAccountLookupLine } from "./IPaymentAccountLookupLine";
|
|
6
|
+
export declare const PAYMENT_ACCOUNT_LOOKUP_LINE_TYPE: string;
|
|
7
|
+
export declare class PaymentAccountLookupLine extends BaseTransactionLine implements IPaymentAccountLookupLine {
|
|
8
|
+
private readonly _cardHolder;
|
|
9
|
+
private readonly _lookupResult;
|
|
10
|
+
private readonly _lookupResultReason?;
|
|
11
|
+
private readonly _accountNumber?;
|
|
12
|
+
private readonly _cardToken?;
|
|
13
|
+
private readonly _referenceNumber?;
|
|
14
|
+
private readonly _authorizationDeviceId?;
|
|
15
|
+
static create(lineNumber: number, lineType: string, uiBusinessEvent: UiBusinessEvent, collectedData: Readonly<Map<string, any>>): PaymentAccountLookupLine;
|
|
16
|
+
static createFromJsonObject(transactionLineJsonObj: any): PaymentAccountLookupLine;
|
|
17
|
+
get couldAffectPricing(): boolean;
|
|
18
|
+
get lookupResult(): PaymentAccountLookupResult;
|
|
19
|
+
get lookupResultReason(): string;
|
|
20
|
+
get cardHolder(): ICardHolder;
|
|
21
|
+
get accountNumber(): string;
|
|
22
|
+
get cardToken(): string;
|
|
23
|
+
get referenceNumber(): string;
|
|
24
|
+
get authorizationDeviceId(): string;
|
|
25
|
+
protected constructor(lineNumber: number, lineType: string, cardHolder: ICardHolder, lookupResult?: PaymentAccountLookupResult, lookupResultReason?: string, accountNumber?: string, cardToken?: string, referenceNumber?: string, authorizationDeviceId?: string);
|
|
26
|
+
protected newTransactionLine(): PaymentAccountLookupLine;
|
|
27
|
+
}
|
|
28
|
+
export declare function isAccountLookupLine(transactionLine: ITransactionLine): transactionLine is PaymentAccountLookupLine;
|
|
29
|
+
export declare function convertLookupResultToResponseCode(lookupResult: PaymentAccountLookupResult): ResponseCodes;
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const scp_types_commerce_transaction_1 = require("@aptos-scp/scp-types-commerce-transaction");
|
|
4
|
+
const scp_types_commerce_devices_1 = require("@aptos-scp/scp-types-commerce-devices");
|
|
5
|
+
const BaseTransactionLine_1 = require("../BaseTransactionLine");
|
|
6
|
+
const Constants_1 = require("../Constants");
|
|
7
|
+
exports.PAYMENT_ACCOUNT_LOOKUP_LINE_TYPE = "PaymentAccountLookup";
|
|
8
|
+
class PaymentAccountLookupLine extends BaseTransactionLine_1.BaseTransactionLine {
|
|
9
|
+
constructor(lineNumber, lineType, cardHolder, lookupResult, lookupResultReason, accountNumber, cardToken, referenceNumber, authorizationDeviceId) {
|
|
10
|
+
super(lineNumber, lineType);
|
|
11
|
+
this._cardHolder = cardHolder;
|
|
12
|
+
this._lookupResult = lookupResult;
|
|
13
|
+
this._lookupResultReason = lookupResultReason;
|
|
14
|
+
this._accountNumber = accountNumber;
|
|
15
|
+
this._cardToken = cardToken;
|
|
16
|
+
this._referenceNumber = referenceNumber;
|
|
17
|
+
this._authorizationDeviceId = authorizationDeviceId;
|
|
18
|
+
}
|
|
19
|
+
static create(lineNumber, lineType, uiBusinessEvent, collectedData) {
|
|
20
|
+
var _a, _b, _c, _d, _e, _f;
|
|
21
|
+
const accountLookupResponse = collectedData.get(Constants_1.CollectedDataKey.TenderAuthResponse);
|
|
22
|
+
const lookupResult = convertResponseCodeToLookupResult((_a = accountLookupResponse) === null || _a === void 0 ? void 0 : _a.responseCode);
|
|
23
|
+
const lookupResultReason = (_b = accountLookupResponse) === null || _b === void 0 ? void 0 : _b.status;
|
|
24
|
+
const cardHolder = (_c = accountLookupResponse) === null || _c === void 0 ? void 0 : _c.cardHolder;
|
|
25
|
+
const accountNumber = (_d = accountLookupResponse) === null || _d === void 0 ? void 0 : _d.cardNumber;
|
|
26
|
+
const cardToken = (_e = accountLookupResponse) === null || _e === void 0 ? void 0 : _e.cardToken;
|
|
27
|
+
const referenceNumber = (_f = accountLookupResponse) === null || _f === void 0 ? void 0 : _f.referenceNumber;
|
|
28
|
+
const authorizationDeviceId = collectedData.get(Constants_1.CollectedDataKey.AuthorizationDeviceId);
|
|
29
|
+
return new PaymentAccountLookupLine(lineNumber, lineType, cardHolder, lookupResult, lookupResultReason, accountNumber, cardToken, referenceNumber, authorizationDeviceId);
|
|
30
|
+
}
|
|
31
|
+
static createFromJsonObject(transactionLineJsonObj) {
|
|
32
|
+
const lineNumber = BaseTransactionLine_1.BaseTransactionLine.lineNumberFromJsonObject(transactionLineJsonObj);
|
|
33
|
+
const lineType = BaseTransactionLine_1.BaseTransactionLine.lineTypeFromJsonObject(transactionLineJsonObj);
|
|
34
|
+
const cardHolder = transactionLineJsonObj._cardHolder;
|
|
35
|
+
const lookupResult = transactionLineJsonObj._lookupResult;
|
|
36
|
+
const lookupResultReason = transactionLineJsonObj._lookupResultReason;
|
|
37
|
+
const accountNumber = transactionLineJsonObj._accountNumber;
|
|
38
|
+
const cardToken = transactionLineJsonObj._cardToken;
|
|
39
|
+
const referenceNumber = transactionLineJsonObj._referenceNumber;
|
|
40
|
+
const authorizationDeviceId = transactionLineJsonObj._authorizationDeviceId;
|
|
41
|
+
const accountLookupLine = new PaymentAccountLookupLine(lineNumber, lineType, cardHolder, lookupResult, lookupResultReason, accountNumber, cardToken, referenceNumber, authorizationDeviceId);
|
|
42
|
+
accountLookupLine.loadFromJsonObject(transactionLineJsonObj);
|
|
43
|
+
return accountLookupLine;
|
|
44
|
+
}
|
|
45
|
+
get couldAffectPricing() {
|
|
46
|
+
return false;
|
|
47
|
+
}
|
|
48
|
+
get lookupResult() {
|
|
49
|
+
return this._lookupResult;
|
|
50
|
+
}
|
|
51
|
+
get lookupResultReason() {
|
|
52
|
+
return this._lookupResultReason;
|
|
53
|
+
}
|
|
54
|
+
get cardHolder() {
|
|
55
|
+
return this._cardHolder;
|
|
56
|
+
}
|
|
57
|
+
get accountNumber() {
|
|
58
|
+
return this._accountNumber;
|
|
59
|
+
}
|
|
60
|
+
get cardToken() {
|
|
61
|
+
return this._cardToken;
|
|
62
|
+
}
|
|
63
|
+
get referenceNumber() {
|
|
64
|
+
return this._referenceNumber;
|
|
65
|
+
}
|
|
66
|
+
get authorizationDeviceId() {
|
|
67
|
+
return this._authorizationDeviceId;
|
|
68
|
+
}
|
|
69
|
+
newTransactionLine() {
|
|
70
|
+
return new PaymentAccountLookupLine(this.lineNumber, this.lineType, this._cardHolder, this._lookupResult, this._lookupResultReason, this._accountNumber, this._cardToken, this._referenceNumber, this._authorizationDeviceId);
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
exports.PaymentAccountLookupLine = PaymentAccountLookupLine;
|
|
74
|
+
function isAccountLookupLine(transactionLine) {
|
|
75
|
+
return (transactionLine instanceof PaymentAccountLookupLine ||
|
|
76
|
+
transactionLine.lineType === exports.PAYMENT_ACCOUNT_LOOKUP_LINE_TYPE);
|
|
77
|
+
}
|
|
78
|
+
exports.isAccountLookupLine = isAccountLookupLine;
|
|
79
|
+
function convertResponseCodeToLookupResult(responseCode) {
|
|
80
|
+
switch (responseCode) {
|
|
81
|
+
case scp_types_commerce_devices_1.ResponseCodes.Approved:
|
|
82
|
+
return scp_types_commerce_transaction_1.PaymentAccountLookupResult.Success;
|
|
83
|
+
case scp_types_commerce_devices_1.ResponseCodes.Decline:
|
|
84
|
+
return scp_types_commerce_transaction_1.PaymentAccountLookupResult.Failure;
|
|
85
|
+
case scp_types_commerce_devices_1.ResponseCodes.Cancel:
|
|
86
|
+
return scp_types_commerce_transaction_1.PaymentAccountLookupResult.Cancelled;
|
|
87
|
+
default:
|
|
88
|
+
return scp_types_commerce_transaction_1.PaymentAccountLookupResult.Error;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
function convertLookupResultToResponseCode(lookupResult) {
|
|
92
|
+
switch (lookupResult) {
|
|
93
|
+
case scp_types_commerce_transaction_1.PaymentAccountLookupResult.Success:
|
|
94
|
+
return scp_types_commerce_devices_1.ResponseCodes.Approved;
|
|
95
|
+
case scp_types_commerce_transaction_1.PaymentAccountLookupResult.Failure:
|
|
96
|
+
return scp_types_commerce_devices_1.ResponseCodes.Decline;
|
|
97
|
+
case scp_types_commerce_transaction_1.PaymentAccountLookupResult.Cancelled:
|
|
98
|
+
return scp_types_commerce_devices_1.ResponseCodes.Cancel;
|
|
99
|
+
default:
|
|
100
|
+
return scp_types_commerce_devices_1.ResponseCodes.Error;
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
exports.convertLookupResultToResponseCode = convertLookupResultToResponseCode;
|
|
104
|
+
//# sourceMappingURL=PaymentAccountLookupLine.js.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Money } from "@aptos-scp/scp-component-business-core";
|
|
2
|
-
import { ITransactionLine } from "@aptos-scp/scp-component-store-selling-core";
|
|
2
|
+
import { IExtendedAmountMaintainer, ITransactionLine } from "@aptos-scp/scp-component-store-selling-core";
|
|
3
3
|
import { IAppliedTax } from "@aptos-scp/scp-component-taxation";
|
|
4
4
|
import { ITransactionLineTaxes } from "../item/IItemLine";
|
|
5
5
|
import { BaseFeeLineDecorator } from "./BaseFeeLineDecorator";
|
|
@@ -11,7 +11,7 @@ export interface IExtendedAmountFields {
|
|
|
11
11
|
taxByAuthority?: IAppliedTax[];
|
|
12
12
|
totalLineTax?: Money;
|
|
13
13
|
}
|
|
14
|
-
export declare abstract class FeeLineExtendedAmountDecorator extends BaseFeeLineDecorator {
|
|
14
|
+
export declare abstract class FeeLineExtendedAmountDecorator extends BaseFeeLineDecorator implements IExtendedAmountMaintainer {
|
|
15
15
|
protected _newExtendedAmount: Money;
|
|
16
16
|
protected _newExtendedAmountExcludingTax: Money;
|
|
17
17
|
protected _newExtendedAmountIncludingTax: Money;
|
|
@@ -29,6 +29,7 @@ export declare abstract class FeeLineExtendedAmountDecorator extends BaseFeeLine
|
|
|
29
29
|
get taxByAuthority(): IAppliedTax[];
|
|
30
30
|
get totalLineTax(): Money;
|
|
31
31
|
get extendedAmountExcludingTransactionDiscounts(): Money;
|
|
32
|
+
updateExtendedAmount(amount: Money): ITransactionLine;
|
|
32
33
|
updateExtendedAmountExcludingTax(amount: Money): ITransactionLine;
|
|
33
34
|
updateExtendedAmountIncludingTax(amount: Money): ITransactionLine;
|
|
34
35
|
setTransactionLineTaxes(transactionLineTaxes: ITransactionLineTaxes, extendedAmount?: Money): FeeLineExtendedAmountDecorator;
|
|
@@ -95,6 +95,12 @@ class FeeLineExtendedAmountDecorator extends BaseFeeLineDecorator_1.BaseFeeLineD
|
|
|
95
95
|
get extendedAmountExcludingTransactionDiscounts() {
|
|
96
96
|
return this.extendedAmount;
|
|
97
97
|
}
|
|
98
|
+
updateExtendedAmount(amount) {
|
|
99
|
+
amount = FeeLine_1.adjustSignForFeeLineType(this.lineType, amount);
|
|
100
|
+
const newLine = this.clone();
|
|
101
|
+
newLine._newExtendedAmount = amount;
|
|
102
|
+
return newLine;
|
|
103
|
+
}
|
|
98
104
|
updateExtendedAmountExcludingTax(amount) {
|
|
99
105
|
amount = FeeLine_1.adjustSignForFeeLineType(this.lineType, amount);
|
|
100
106
|
const newLine = this.clone();
|
|
@@ -3,6 +3,7 @@ function __export(m) {
|
|
|
3
3
|
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
|
|
4
4
|
}
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
__export(require("./account"));
|
|
6
7
|
__export(require("./cashDrawer"));
|
|
7
8
|
__export(require("./configuration/"));
|
|
8
9
|
__export(require("./customer/"));
|
|
@@ -2,10 +2,11 @@ import { Money } from "@aptos-scp/scp-component-business-core";
|
|
|
2
2
|
import { ITransactionLineFactory } from "@aptos-scp/scp-component-store-selling-core";
|
|
3
3
|
import { FeeLine } from "../fee/FeeLine";
|
|
4
4
|
import { BaseFeeLineDecorator } from "../fee/BaseFeeLineDecorator";
|
|
5
|
+
import { FeeLineExtendedAmountDecorator, IExtendedAmountFields } from "../fee/FeeLineExtendedAmountDecorator";
|
|
5
6
|
import { IFulfillmentGroupFee } from "../fee/IFeeLine";
|
|
6
7
|
export declare const SHIPPING_FEE_CHANGE_ANNOTATION_SOURCE_TYPE: string;
|
|
7
8
|
export declare const DECORATOR_TYPE_SHIPPING_FEE_LINE_CHANGE: string;
|
|
8
|
-
export declare class ShippingFeeLineChangeDecorator extends
|
|
9
|
+
export declare class ShippingFeeLineChangeDecorator extends FeeLineExtendedAmountDecorator {
|
|
9
10
|
private _newUnitAmount;
|
|
10
11
|
private _feesByFulfillmentGroup;
|
|
11
12
|
private _newTaxGroupId;
|
|
@@ -13,7 +14,7 @@ export declare class ShippingFeeLineChangeDecorator extends BaseFeeLineDecorator
|
|
|
13
14
|
private _newDescription;
|
|
14
15
|
private _newLongDescription;
|
|
15
16
|
static createFromJsonObject(transactionLineJsonObj: any, transactionLineFactory: ITransactionLineFactory): ShippingFeeLineChangeDecorator;
|
|
16
|
-
constructor(feeLine?: FeeLine, annotationSourceLineNumber?: number, newUnitAmount?: Money, feesByFulfillmentGroup?: IFulfillmentGroupFee[], newTaxGroupId?: string, newFeeId?: string, newDescription?: string, newLongDescription?: string);
|
|
17
|
+
constructor(feeLine?: FeeLine, annotationSourceLineNumber?: number, newUnitAmount?: Money, feesByFulfillmentGroup?: IFulfillmentGroupFee[], newTaxGroupId?: string, newFeeId?: string, newDescription?: string, newLongDescription?: string, extendedAmountFields?: IExtendedAmountFields);
|
|
17
18
|
get unitAmount(): Money;
|
|
18
19
|
get unitAmountBeforeOverride(): Money;
|
|
19
20
|
get feesByFulfillmentGroup(): IFulfillmentGroupFee[];
|
|
@@ -2,11 +2,12 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const scp_component_business_core_1 = require("@aptos-scp/scp-component-business-core");
|
|
4
4
|
const BaseFeeLineDecorator_1 = require("../fee/BaseFeeLineDecorator");
|
|
5
|
+
const FeeLineExtendedAmountDecorator_1 = require("../fee/FeeLineExtendedAmountDecorator");
|
|
5
6
|
exports.SHIPPING_FEE_CHANGE_ANNOTATION_SOURCE_TYPE = "ShippingFee";
|
|
6
7
|
exports.DECORATOR_TYPE_SHIPPING_FEE_LINE_CHANGE = "SHIPPING_FEE_LINE_DECORATOR";
|
|
7
|
-
class ShippingFeeLineChangeDecorator extends
|
|
8
|
-
constructor(feeLine, annotationSourceLineNumber, newUnitAmount, feesByFulfillmentGroup, newTaxGroupId, newFeeId, newDescription, newLongDescription) {
|
|
9
|
-
super(exports.DECORATOR_TYPE_SHIPPING_FEE_LINE_CHANGE, feeLine, undefined, exports.SHIPPING_FEE_CHANGE_ANNOTATION_SOURCE_TYPE, annotationSourceLineNumber);
|
|
8
|
+
class ShippingFeeLineChangeDecorator extends FeeLineExtendedAmountDecorator_1.FeeLineExtendedAmountDecorator {
|
|
9
|
+
constructor(feeLine, annotationSourceLineNumber, newUnitAmount, feesByFulfillmentGroup, newTaxGroupId, newFeeId, newDescription, newLongDescription, extendedAmountFields) {
|
|
10
|
+
super(exports.DECORATOR_TYPE_SHIPPING_FEE_LINE_CHANGE, feeLine, undefined, exports.SHIPPING_FEE_CHANGE_ANNOTATION_SOURCE_TYPE, annotationSourceLineNumber, extendedAmountFields);
|
|
10
11
|
this._newUnitAmount = newUnitAmount;
|
|
11
12
|
this._feesByFulfillmentGroup = feesByFulfillmentGroup;
|
|
12
13
|
this._newTaxGroupId = newTaxGroupId;
|
|
@@ -36,11 +37,12 @@ class ShippingFeeLineChangeDecorator extends BaseFeeLineDecorator_1.BaseFeeLineD
|
|
|
36
37
|
});
|
|
37
38
|
const feesByFulfillmentGroup = transactionLineJsonObj._feesByFulfillmentGroup;
|
|
38
39
|
const annotationSourceLineNumber = BaseFeeLineDecorator_1.BaseFeeLineDecorator.getAnnotationSourceLineNumberFromJsonObject(transactionLineJsonObj);
|
|
40
|
+
const extendedAmountFields = FeeLineExtendedAmountDecorator_1.FeeLineExtendedAmountDecorator.getExtendedAmountFieldsFromJsonObject(transactionLineJsonObj);
|
|
39
41
|
const newTaxGroupId = transactionLineJsonObj._newTaxGroupId;
|
|
40
42
|
const newFeeId = transactionLineJsonObj._newFeeId;
|
|
41
43
|
const newDescription = transactionLineJsonObj._newDescription;
|
|
42
44
|
const newLongDescription = transactionLineJsonObj._newLongDescription;
|
|
43
|
-
const feeLineQuantityChangeDecorator = new ShippingFeeLineChangeDecorator(decoratedFeeLine, annotationSourceLineNumber, newUnitAmount, feesByFulfillmentGroup, newTaxGroupId, newFeeId, newDescription, newLongDescription);
|
|
45
|
+
const feeLineQuantityChangeDecorator = new ShippingFeeLineChangeDecorator(decoratedFeeLine, annotationSourceLineNumber, newUnitAmount, feesByFulfillmentGroup, newTaxGroupId, newFeeId, newDescription, newLongDescription, extendedAmountFields);
|
|
44
46
|
return feeLineQuantityChangeDecorator;
|
|
45
47
|
}
|
|
46
48
|
get unitAmount() {
|
|
@@ -74,7 +76,13 @@ class ShippingFeeLineChangeDecorator extends BaseFeeLineDecorator_1.BaseFeeLineD
|
|
|
74
76
|
return newShippingFeeLineChangeDecorator;
|
|
75
77
|
}
|
|
76
78
|
newTransactionLine() {
|
|
77
|
-
return new ShippingFeeLineChangeDecorator(this.decoratedTransactionLine, this.annotationSourceLineNumber, this._newUnitAmount, this._feesByFulfillmentGroup, this._newTaxGroupId, this._newFeeId, this._newDescription, this._newLongDescription
|
|
79
|
+
return new ShippingFeeLineChangeDecorator(this.decoratedTransactionLine, this.annotationSourceLineNumber, this._newUnitAmount, this._feesByFulfillmentGroup, this._newTaxGroupId, this._newFeeId, this._newDescription, this._newLongDescription, {
|
|
80
|
+
extendedAmount: this.extendedAmount,
|
|
81
|
+
extendedAmountExcludingTax: this.extendedAmountExcludingTax,
|
|
82
|
+
extendedAmountIncludingTax: this.extendedAmountIncludingTax,
|
|
83
|
+
taxByAuthority: this.taxByAuthority,
|
|
84
|
+
totalLineTax: this.totalLineTax,
|
|
85
|
+
});
|
|
78
86
|
}
|
|
79
87
|
}
|
|
80
88
|
exports.ShippingFeeLineChangeDecorator = ShippingFeeLineChangeDecorator;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aptos-scp/scp-component-store-selling-features-domain-model",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.47.0",
|
|
4
4
|
"description": "This component library provides the common components to handle the coordination of processing the business events from the UI.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -61,8 +61,8 @@
|
|
|
61
61
|
"@aptos-scp/scp-component-user": "^1.4.0",
|
|
62
62
|
"@aptos-scp/scp-types-client-registration": "^1.4.0",
|
|
63
63
|
"@aptos-scp/scp-types-core-config": "^2.2.1",
|
|
64
|
-
"@aptos-scp/scp-types-commerce-devices": "^3.
|
|
65
|
-
"@aptos-scp/scp-types-commerce-transaction": "^1.
|
|
64
|
+
"@aptos-scp/scp-types-commerce-devices": "^3.14.0",
|
|
65
|
+
"@aptos-scp/scp-types-commerce-transaction": "^1.72.0",
|
|
66
66
|
"@aptos-scp/scp-types-customer": "^3.7.0",
|
|
67
67
|
"@aptos-scp/scp-types-einvoice": "^1.17.0",
|
|
68
68
|
"@aptos-scp/scp-types-inventory": "^2.0.0",
|
|
@@ -83,8 +83,8 @@
|
|
|
83
83
|
"@aptos-scp/scp-component-taxation": "^5.27.3",
|
|
84
84
|
"@aptos-scp/scp-component-user": "^1.4.0",
|
|
85
85
|
"@aptos-scp/scp-types-client-registration": "^1.4.0",
|
|
86
|
-
"@aptos-scp/scp-types-commerce-devices": "^3.
|
|
87
|
-
"@aptos-scp/scp-types-commerce-transaction": "^1.
|
|
86
|
+
"@aptos-scp/scp-types-commerce-devices": "^3.14.0",
|
|
87
|
+
"@aptos-scp/scp-types-commerce-transaction": "^1.72.0",
|
|
88
88
|
"@aptos-scp/scp-types-core": "^1.0.5",
|
|
89
89
|
"@aptos-scp/scp-types-core-config": "^2.2.1",
|
|
90
90
|
"@aptos-scp/scp-types-currency-conversion": "^1.2.0",
|