shareneus 1.6.81 → 1.6.83
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.
|
@@ -96,13 +96,13 @@ function GetPartyDetails(Entity, InvoicePDFData) {
|
|
|
96
96
|
var _a;
|
|
97
97
|
return {
|
|
98
98
|
style: 'tableExample',
|
|
99
|
+
marginBottom: 10,
|
|
99
100
|
table: {
|
|
100
101
|
widths: ['*', 'auto', '*'],
|
|
101
102
|
body: [
|
|
102
103
|
[{
|
|
103
104
|
// marginTop: 4,
|
|
104
105
|
marginLeft: 5,
|
|
105
|
-
marginBottom: 10,
|
|
106
106
|
// stack: [{ text: 'UHID : ' + InvoicePDFData.Customer.Code, style: ['headerstyle'] },
|
|
107
107
|
// { text: 'Name : ' + InvoicePDFData.Customer.Name, style: ['headerstyle'] },
|
|
108
108
|
// { text: 'Doctor : ' + InvoicePDFData.Name, style: ['headerstyle'] }],
|
|
@@ -159,7 +159,7 @@ function GetMainHeaderInfo(Entity, Image, AColor, HColor, InvoicePDFData) {
|
|
|
159
159
|
{
|
|
160
160
|
stack: [
|
|
161
161
|
{ text: Entity.CName, style: ['headerstyle'], color: HColor, alignment: 'left', fontSize: 15 },
|
|
162
|
-
{ text: GetAddress(Entity), alignment: 'left', style: ['headerstyle'], color: AColor },
|
|
162
|
+
{ text: GetAddress(Entity), alignment: 'left', style: ['headerstyle'], color: AColor, fontSize: 9 },
|
|
163
163
|
{
|
|
164
164
|
columns: GetHeaderInfo(InvoicePDFData, 0)
|
|
165
165
|
},
|
|
@@ -173,7 +173,7 @@ function GetMainHeaderInfo(Entity, Image, AColor, HColor, InvoicePDFData) {
|
|
|
173
173
|
return {
|
|
174
174
|
stack: [
|
|
175
175
|
{ text: InvoicePDFData.Entity.CName, style: ['headerstyle'], alignment: 'center', fontSize: 15 },
|
|
176
|
-
{ text: GetAddress(InvoicePDFData.Entity), alignment: 'center', style: ['headerstyle'] },
|
|
176
|
+
{ text: GetAddress(InvoicePDFData.Entity), alignment: 'center', style: ['headerstyle'], fontSize: 9 },
|
|
177
177
|
{
|
|
178
178
|
columns: GetHeaderInfo(InvoicePDFData.Entity, 5, InvoicePDFData)
|
|
179
179
|
},
|