lohnausweis 0.2.2 → 0.2.3
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.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/lohnausweis/daten.rb +1 -1
- data/lib/lohnausweis/pdf_generator.rb +0 -1
- data/lib/lohnausweis/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 97d9a24e912e5b5b784ae43dbeea62429c6a85b0
|
|
4
|
+
data.tar.gz: 49882d33573cf432adfc85358e61b4d2ea66daaf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d7f359b92454e69febac3fa74e2f5cc906490ab0e87aeb2b2b0377b16a66d6b2b9176592832a87696c3718614104b5fc2f74da8787644b48a7ea182bfacad20a
|
|
7
|
+
data.tar.gz: fd8052534c5abd2ed98ec73b9d30c9e331567cf8216df1f200393cbf6e904a10e9c05a5469ed3db70f5352e1a8ad1a06d02ce73bc81951f4ead44aff9896f2b1
|
data/Gemfile.lock
CHANGED
data/lib/lohnausweis/daten.rb
CHANGED
|
@@ -80,7 +80,7 @@ module Planik
|
|
|
80
80
|
eintraege = []
|
|
81
81
|
titel = ["Ferien", nil, nil, "Tage"]
|
|
82
82
|
|
|
83
|
-
eintraege << Fakt.new("
|
|
83
|
+
eintraege << Fakt.new("Ferienanspruch #{jahr}", nil, nil, @rohdaten.ferien.guthaben, nil)
|
|
84
84
|
eintraege << Fakt.new("Bezogene Ferien bis #{end_datum}", nil, nil, @rohdaten.ferien.bezogen, nil)
|
|
85
85
|
eintraege << Rechnung.new("Ferienguthaben per #{end_datum}", [eintraege[0]], [eintraege[1]], nil)
|
|
86
86
|
|
|
@@ -122,7 +122,6 @@ module Planik
|
|
|
122
122
|
r4 = Rational(1, 9)
|
|
123
123
|
|
|
124
124
|
column_width = [p_width * r1, p_width * r3, p_width * r3, p_width * r2, p_width * r2, p_width * r4]
|
|
125
|
-
puts column_width
|
|
126
125
|
@pdf.table(daten, column_widths: column_width,
|
|
127
126
|
cell_style: {
|
|
128
127
|
borders: [], #keine Ränder
|
data/lib/lohnausweis/version.rb
CHANGED