hvp-shared 6.86.0 → 6.87.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.
|
@@ -17,7 +17,9 @@ export declare enum ClientInvoiceStatus {
|
|
|
17
17
|
/** Processing failed (see errorMessage) */
|
|
18
18
|
failed = "failed",
|
|
19
19
|
/** Previous month invoice — requires admin/manager authorization */
|
|
20
|
-
requires_authorization = "requires_authorization"
|
|
20
|
+
requires_authorization = "requires_authorization",
|
|
21
|
+
/** CFDI cancelled with SAT */
|
|
22
|
+
cancelled = "cancelled"
|
|
21
23
|
}
|
|
22
24
|
/**
|
|
23
25
|
* Date rule applied to an invoice based on ticket date vs emission date.
|
|
@@ -22,6 +22,8 @@ var ClientInvoiceStatus;
|
|
|
22
22
|
ClientInvoiceStatus["failed"] = "failed";
|
|
23
23
|
/** Previous month invoice — requires admin/manager authorization */
|
|
24
24
|
ClientInvoiceStatus["requires_authorization"] = "requires_authorization";
|
|
25
|
+
/** CFDI cancelled with SAT */
|
|
26
|
+
ClientInvoiceStatus["cancelled"] = "cancelled";
|
|
25
27
|
})(ClientInvoiceStatus || (exports.ClientInvoiceStatus = ClientInvoiceStatus = {}));
|
|
26
28
|
/**
|
|
27
29
|
* Date rule applied to an invoice based on ticket date vs emission date.
|
|
@@ -48,6 +50,7 @@ exports.CLIENT_INVOICE_STATUS_LABELS = {
|
|
|
48
50
|
[ClientInvoiceStatus.stamped]: "Facturada",
|
|
49
51
|
[ClientInvoiceStatus.failed]: "Error",
|
|
50
52
|
[ClientInvoiceStatus.requires_authorization]: "Requiere autorización",
|
|
53
|
+
[ClientInvoiceStatus.cancelled]: "Cancelada",
|
|
51
54
|
};
|
|
52
55
|
/**
|
|
53
56
|
* Petco (MASCOTAS Y COMPAÑIA) — different invoice email per branch.
|