shareneus 1.7.357 → 1.7.358

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.
@@ -1999,20 +1999,20 @@ class SharedPDFService {
1999
1999
  return {
2000
2000
  columns: [
2001
2001
  this.GetTaxOnLabor(BasicLaborTotal, OverAllMainLaborDiscount, LCGST, LSGST, LIGST, ShowIGST, ShowTaxColumn, ShowDetailedLaborTaxInfo, Consolidate),
2002
- { text: '', width: 10 },
2002
+ { text: '', width: 5 },
2003
2003
  {
2004
2004
  stack: [
2005
2005
  this.GetTaxOnParts(BasicPartsTotal, OverAllMainPartsDiscount, PCGST, PSGST, ShowAccParts, PIGST, ShowIGST, ShowTaxColumn, ShowDetailedPartTaxInfo, From, Consolidate),
2006
2006
  this.PartsTaxAmounts1(PartsTaxInfo, ShowAccParts, ShowIGST, ShowTaxColumn)
2007
2007
  ]
2008
2008
  },
2009
- { text: '', width: moreDiscDetails ? 40 : 60 },
2009
+ { text: '', width: moreDiscDetails ? 20 : 40 },
2010
2010
  // this.GrandTotal(LaborAfterGST, PartsAfterGST, totalDisc, For, OverAllRecordTotal, Rounded, GrandTotal)
2011
2011
  this.GrandTotal(RecordData, BasicLaborTotal, BasicPartsTotal, totalDisc, totalTax, For, OverAllRecordTotal, Rounded, GrandTotal, Adj, Consolidate, STotal, moreDiscDetails, RecordData.Entity.DecimalsNumber)
2012
2012
  ]
2013
2013
  // columnGap: 40
2014
2014
  ,
2015
- marginLeft: 10
2015
+ marginLeft: 5
2016
2016
  };
2017
2017
  }
2018
2018
  static GetDebitTotalDetails(RecordData, BasicLaborTotal, OverAllMainLaborDiscount, LCGST, LSGST, LIGST, PIGST, ShowIGST, ShowTaxColumn, BasicPartsTotal, OverAllMainPartsDiscount, PCGST, PSGST, PartsTaxInfo, ShowAccParts, LaborAfterGST, PartsAfterGST, OverAllRecordDiscount, For, OverAllRecordTotal, Rounded, GrandTotal, ShowDetailedLaborTaxInfo, ShowDetailedPartTaxInfo, istaxable, LaborTotalTax, PartTotalTax, Consolidate, From, moreDiscDetails) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shareneus",
3
- "version": "1.7.357",
3
+ "version": "1.7.358",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -2117,7 +2117,7 @@ export class SharedPDFService {
2117
2117
  columns: [
2118
2118
  this.GetTaxOnLabor(BasicLaborTotal, OverAllMainLaborDiscount, LCGST,
2119
2119
  LSGST, LIGST, ShowIGST, ShowTaxColumn, ShowDetailedLaborTaxInfo, Consolidate),
2120
- { text: '', width: 10 },
2120
+ { text: '', width: 5 },
2121
2121
  {
2122
2122
  stack: [
2123
2123
  this.GetTaxOnParts(BasicPartsTotal, OverAllMainPartsDiscount, PCGST,
@@ -2126,13 +2126,13 @@ export class SharedPDFService {
2126
2126
  ShowTaxColumn)
2127
2127
  ]
2128
2128
  },
2129
- { text: '', width: moreDiscDetails ? 40 : 60 },
2129
+ { text: '', width: moreDiscDetails ? 20 : 40 },
2130
2130
  // this.GrandTotal(LaborAfterGST, PartsAfterGST, totalDisc, For, OverAllRecordTotal, Rounded, GrandTotal)
2131
2131
  this.GrandTotal(RecordData, BasicLaborTotal, BasicPartsTotal, totalDisc, totalTax, For, OverAllRecordTotal, Rounded, GrandTotal, Adj, Consolidate, STotal, moreDiscDetails, RecordData.Entity.DecimalsNumber)
2132
2132
 
2133
2133
  ]
2134
2134
  // columnGap: 40
2135
- , marginLeft: 10
2135
+ , marginLeft: 5
2136
2136
  };
2137
2137
  }
2138
2138