shareneus 1.3.7 → 1.3.8
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.
|
@@ -109,8 +109,8 @@ class NextServiceDatePDFService {
|
|
|
109
109
|
dataRow.push({ text: invoice.RegNo });
|
|
110
110
|
dataRow.push({ text: invoice.Make + '' + invoice.Model + '' + invoice.Var });
|
|
111
111
|
// if(!isHC){
|
|
112
|
-
dataRow.push({ text: my_date_1.MyDate.ConvertUTCDateToReadable(invoice.DDate)
|
|
113
|
-
dataRow.push({ text: my_date_1.MyDate.ConvertUTCDateToReadable(invoice.LSDate)
|
|
112
|
+
dataRow.push({ text: my_date_1.MyDate.ConvertUTCDateToReadable(invoice.DDate) });
|
|
113
|
+
dataRow.push({ text: my_date_1.MyDate.ConvertUTCDateToReadable(invoice.LSDate) });
|
|
114
114
|
dataRow.push({ text: invoice.LMileage });
|
|
115
115
|
dataRow.push({ text: my_date_1.MyDate.ConvertUTCDateToReadable(invoice.NSDate) });
|
|
116
116
|
// dataRow.push({ text: TrUtils.FixPriceValue(invoice.Total), alignment: 'right' });
|
|
@@ -148,13 +148,13 @@ class NextServiceDatePDFService {
|
|
|
148
148
|
// }
|
|
149
149
|
// } else {
|
|
150
150
|
HeadingNames = [[{ text: 'S.No', style: 'tableheader1', Field: 'SNo', alignment: 'left', line: true },
|
|
151
|
-
{ text: 'Customer Name', style: 'tableheader1', Field: 'Desc' },
|
|
152
|
-
{ text: 'Reg. No', style: 'tableheader1', Field: 'Batch' },
|
|
153
|
-
{ text: 'Vehicle', style: 'tableheader1', Field: 'Round', alignment: '
|
|
154
|
-
{ text: 'Sale Date', style: 'tableheader1', Field: 'Total', alignment: '
|
|
155
|
-
{ text: 'Last Service Date', style: 'tableheader1', Field: 'Total', alignment: '
|
|
156
|
-
{ text: 'Last Mileage', style: 'tableheader1', Field: 'Total', alignment: '
|
|
157
|
-
{ text: 'Next Service Date', style: 'tableheader1', Field: 'Total', alignment: '
|
|
151
|
+
{ text: 'Customer Name', style: 'tableheader1', Field: 'Desc', alignment: 'left' },
|
|
152
|
+
{ text: 'Reg. No', style: 'tableheader1', Field: 'Batch', alignment: 'left' },
|
|
153
|
+
{ text: 'Vehicle', style: 'tableheader1', Field: 'Round', alignment: 'left' },
|
|
154
|
+
{ text: 'Sale Date', style: 'tableheader1', Field: 'Total', alignment: 'left' },
|
|
155
|
+
{ text: 'Last Service Date', style: 'tableheader1', Field: 'Total', alignment: 'left' },
|
|
156
|
+
{ text: 'Last Mileage', style: 'tableheader1', Field: 'Total', alignment: 'left' },
|
|
157
|
+
{ text: 'Next Service Date', style: 'tableheader1', Field: 'Total', alignment: 'left' }
|
|
158
158
|
]
|
|
159
159
|
];
|
|
160
160
|
// { text: 'Due', style: 'tableheader1', Field: 'Due', alignment: 'right' }]];
|