shareneus 1.7.320 → 1.7.321
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.
|
@@ -398,6 +398,7 @@ function GetBillNameForInvoicePrint(argInvoiceData, InvoicePrintData) {
|
|
|
398
398
|
Customer.Adrs.push(city);
|
|
399
399
|
}
|
|
400
400
|
}
|
|
401
|
+
Customer.TaxId = argInvoiceData.BillTo.TaxId;
|
|
401
402
|
Customer.GSTIN = (_b = argInvoiceData.BillTo.TaxId) === null || _b === void 0 ? void 0 : _b.Value;
|
|
402
403
|
if (!tr_utils_1.TrUtils.IsNull(argInvoiceData.BillTo.DLNo)) {
|
|
403
404
|
Customer.DLNo = argInvoiceData.BillTo.DLNo;
|
package/package.json
CHANGED
|
@@ -415,6 +415,7 @@ export function GetBillNameForInvoicePrint(argInvoiceData: any, InvoicePrintData
|
|
|
415
415
|
Customer.Adrs.push(city);
|
|
416
416
|
}
|
|
417
417
|
}
|
|
418
|
+
Customer.TaxId = argInvoiceData.BillTo.TaxId;
|
|
418
419
|
Customer.GSTIN = argInvoiceData.BillTo.TaxId?.Value;
|
|
419
420
|
if (!TrUtils.IsNull(argInvoiceData.BillTo.DLNo)) {
|
|
420
421
|
Customer.DLNo = argInvoiceData.BillTo.DLNo;
|