@aptos-scp/scp-component-store-selling-features-domain-model 2.10.0 → 2.10.1
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.
|
@@ -254,7 +254,7 @@ export declare class MerchandiseTransaction extends RetailTransaction implements
|
|
|
254
254
|
get transactionTaxExemptAmount(): Money;
|
|
255
255
|
get transactionTaxAdjustmentAmount(): Money;
|
|
256
256
|
get fiscalError(): IFiscalError;
|
|
257
|
-
get
|
|
257
|
+
get hasFiscalizationCompleted(): boolean;
|
|
258
258
|
get tradeType(): MerchandiseTransactionTradeType;
|
|
259
259
|
get taxLotteryNumber(): string;
|
|
260
260
|
get taxLotteryCustomerCode(): string;
|
|
@@ -300,7 +300,7 @@ export declare class MerchandiseTransaction extends RetailTransaction implements
|
|
|
300
300
|
assignFiscalTypeCode(fiscalTypeCode: string): ITransaction;
|
|
301
301
|
assignFiscalTransactionSequenceNumber(fiscalTransactionSequenceNumber: number, fiscalTransactionSequenceNumberGenerator: string): ITransaction;
|
|
302
302
|
setFiscalError(fiscalError: IFiscalError): ITransaction;
|
|
303
|
-
|
|
303
|
+
setHasFiscalizationCompleted(hasFiscalizationCompleted: boolean): ITransaction;
|
|
304
304
|
assignOrderReferenceSequenceNumber(orderReferenceSequenceNumber: number, orderReferenceSequenceNumberGenerator: string): ITransaction;
|
|
305
305
|
assignInvoiceFiscalTransactionNumber(invoiceTransactionNumber: number, invoiceFiscalTransactionNumber: string): ITransaction;
|
|
306
306
|
assignTaxlotteryNumber(taxLotteryNumber: string): ITransaction;
|
|
@@ -497,7 +497,7 @@ class MerchandiseTransaction extends RetailTransaction_1.RetailTransaction {
|
|
|
497
497
|
get fiscalError() {
|
|
498
498
|
return this._fiscalError;
|
|
499
499
|
}
|
|
500
|
-
get
|
|
500
|
+
get hasFiscalizationCompleted() {
|
|
501
501
|
return this._hasFiscalizationCompleted;
|
|
502
502
|
}
|
|
503
503
|
get tradeType() {
|
|
@@ -720,9 +720,9 @@ class MerchandiseTransaction extends RetailTransaction_1.RetailTransaction {
|
|
|
720
720
|
newTransaction._fiscalError = fiscalError;
|
|
721
721
|
return newTransaction;
|
|
722
722
|
}
|
|
723
|
-
|
|
723
|
+
setHasFiscalizationCompleted(hasFiscalizationCompleted) {
|
|
724
724
|
const newTransaction = this.clone();
|
|
725
|
-
newTransaction._hasFiscalizationCompleted =
|
|
725
|
+
newTransaction._hasFiscalizationCompleted = hasFiscalizationCompleted;
|
|
726
726
|
return newTransaction;
|
|
727
727
|
}
|
|
728
728
|
assignOrderReferenceSequenceNumber(orderReferenceSequenceNumber, orderReferenceSequenceNumberGenerator) {
|
|
@@ -901,7 +901,7 @@ class MerchandiseTransaction extends RetailTransaction_1.RetailTransaction {
|
|
|
901
901
|
["transaction.taxExemptAmount", this._transactionTaxExemptAmount],
|
|
902
902
|
["transaction.transactionTaxAdjustmentAmount", this._transactionTaxAdjustmentAmount],
|
|
903
903
|
["transaction.fiscalError", this._fiscalError],
|
|
904
|
-
["transaction.
|
|
904
|
+
["transaction.hasFiscalizationCompleted", this._hasFiscalizationCompleted],
|
|
905
905
|
["transaction.tradeType", this._tradeType],
|
|
906
906
|
["transaction.signatureCollected", this.signatureCollected],
|
|
907
907
|
["transaction.itemPickupSignatureCollected", this.itemPickupSignatureCollected],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aptos-scp/scp-component-store-selling-features-domain-model",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.1",
|
|
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",
|