bookyt_salary 0.16.1 → 0.16.2
Sign up to get free protection for your applications and to get access to all the features.
- data/app/views/salaries/_list.html.haml +13 -12
- data/app/views/salary_booking_templates/_list.html.haml +14 -13
- data/app/views/salary_booking_templates/statistics.html.haml +13 -12
- data/app/views/salary_items/_list_form.html.haml +1 -1
- data/app/views/salary_reports/yearly_ahv_statement.html.haml +34 -32
- data/app/views/salary_templates/_list.html.haml +8 -7
- data/db/seeds/locales/de-CH.rb +82 -0
- data/lib/bookyt_salary/version.rb +1 -1
- metadata +5 -4
@@ -1,14 +1,15 @@
|
|
1
1
|
= render 'salaries/sidebar'
|
2
2
|
|
3
|
-
%table.
|
4
|
-
%
|
5
|
-
%
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
3
|
+
%table.zebra-striped.salaries.collection
|
4
|
+
%thead
|
5
|
+
%tr
|
6
|
+
%th= t_attr :value_date, Invoice
|
7
|
+
%th= t_attr :company, Invoice
|
8
|
+
%th= t_attr :title, Invoice
|
9
|
+
%th= t_attr :due_date, Invoice
|
10
|
+
%th.currency= t_attr :gross_amount, Salary
|
11
|
+
%th.currency= t_attr :net_amount, Salary
|
12
|
+
%th.currency= t_attr :balance, Invoice
|
13
|
+
%th.action-links
|
14
|
+
%tbody
|
15
|
+
= render @salaries
|
@@ -1,13 +1,14 @@
|
|
1
|
-
%table.
|
2
|
-
%
|
3
|
-
%
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
1
|
+
%table.zebra-striped.salary_booking_templates.collection
|
2
|
+
%thead
|
3
|
+
%tr
|
4
|
+
%th= t_attr :code, SalaryBookingTemplate
|
5
|
+
%th= t_attr :title, SalaryBookingTemplate
|
6
|
+
%th= t_attr :credit_account, SalaryBookingTemplate
|
7
|
+
%th= t_attr :debit_account, SalaryBookingTemplate
|
8
|
+
%th.currency= t_attr 'amount', SalaryBookingTemplate
|
9
|
+
%th= t_attr :amount_relates_to, SalaryBookingTemplate
|
10
|
+
- SalaryBookingTemplate.saldo_inclusion_flags.each do |flag|
|
11
|
+
%th= flag
|
12
|
+
%th.right= t_attr :salary_declaration_code, SalaryBookingTemplate
|
13
|
+
%tbody
|
14
|
+
= render @salary_booking_templates
|
@@ -3,19 +3,20 @@
|
|
3
3
|
.page-header
|
4
4
|
%h1= t_title
|
5
5
|
|
6
|
-
%table.
|
7
|
-
%
|
8
|
-
%th= t_attr :code
|
9
|
-
%th= t_attr :title
|
10
|
-
%th.right= t_attr :amount
|
11
|
-
|
12
|
-
- for template in @salary_booking_templates
|
13
|
-
- amount = template.line_items.where(:date => @duration).sum(&:accounted_amount)
|
14
|
-
- next if amount == 0
|
6
|
+
%table.zebra-striped.collection
|
7
|
+
%thead
|
15
8
|
%tr
|
16
|
-
%
|
17
|
-
%
|
18
|
-
%
|
9
|
+
%th= t_attr :code
|
10
|
+
%th= t_attr :title
|
11
|
+
%th.right= t_attr :amount
|
12
|
+
%tbody
|
13
|
+
- for template in @salary_booking_templates
|
14
|
+
- amount = template.line_items.where(:date => @duration).sum(&:accounted_amount)
|
15
|
+
- next if amount == 0
|
16
|
+
%tr
|
17
|
+
%td= template.code
|
18
|
+
%td= template.title
|
19
|
+
%td.currency= currency_fmt(amount)
|
19
20
|
|
20
21
|
- content_for :sidebar do
|
21
22
|
.sub-tabs
|
@@ -1,39 +1,41 @@
|
|
1
1
|
%h3= t('salary_certificate')
|
2
2
|
|
3
|
-
%table.
|
4
|
-
%
|
5
|
-
%th= t_attr :ssn, Employee
|
6
|
-
%th= t_attr :date_of_birth, Employee
|
7
|
-
%th= t_attr :full_name, Employee
|
8
|
-
%th= t_attr :duration_from, Employment
|
9
|
-
%th= t_attr :duration_to, Employment
|
10
|
-
%th.currency AHV-Lohn
|
11
|
-
%th.currency ALV-Lohn
|
12
|
-
%th.currency ALVZ-Lohn
|
13
|
-
%th M/F
|
14
|
-
|
15
|
-
- ahv_total = 0
|
16
|
-
- for employment in @employments
|
17
|
-
- ahv_amount = employment.employee.salaries.where(:value_date => @value_period).sum(&:ahv_amount)
|
18
|
-
- ahv_total += ahv_amount
|
3
|
+
%table.zebra-striped.collection
|
4
|
+
%thead
|
19
5
|
%tr
|
20
|
-
%
|
21
|
-
%
|
22
|
-
%
|
23
|
-
%
|
24
|
-
%
|
25
|
-
%
|
26
|
-
%
|
27
|
-
%
|
28
|
-
%
|
6
|
+
%th= t_attr :ssn, Employee
|
7
|
+
%th= t_attr :date_of_birth, Employee
|
8
|
+
%th= t_attr :full_name, Employee
|
9
|
+
%th= t_attr :duration_from, Employment
|
10
|
+
%th= t_attr :duration_to, Employment
|
11
|
+
%th.currency AHV-Lohn
|
12
|
+
%th.currency ALV-Lohn
|
13
|
+
%th.currency ALVZ-Lohn
|
14
|
+
%th M/F
|
15
|
+
%tbody
|
16
|
+
- ahv_total = 0
|
17
|
+
- for employment in @employments
|
18
|
+
- ahv_amount = employment.employee.salaries.where(:value_date => @value_period).sum(&:ahv_amount)
|
19
|
+
- ahv_total += ahv_amount
|
20
|
+
%tr
|
21
|
+
%td= employment.employee.ssn
|
22
|
+
%td= employment.employee.date_of_birth
|
23
|
+
%td= employment.employee.vcard.full_name
|
24
|
+
%td= duration_from(employment, @value_period)
|
25
|
+
%td= duration_to(employment, @value_period)
|
26
|
+
%td.currency= currency_fmt(ahv_amount)
|
27
|
+
%td.currency= currency_fmt(ahv_amount)
|
28
|
+
%td.currency= currency_fmt(0)
|
29
|
+
%td= employment.employee.sex_to_s
|
29
30
|
|
30
|
-
%
|
31
|
-
%
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
31
|
+
%tfoot
|
32
|
+
%tr
|
33
|
+
%th= t('bookyt.total')
|
34
|
+
%th{:colspan => 4}
|
35
|
+
%th.currency= currency_fmt(ahv_total)
|
36
|
+
%th.currency= currency_fmt(ahv_total)
|
37
|
+
%th.currency= currency_fmt(0)
|
38
|
+
%th
|
37
39
|
|
38
40
|
- content_for :sidebar do
|
39
41
|
.sub-tabs
|
@@ -1,7 +1,8 @@
|
|
1
|
-
%table.
|
2
|
-
%
|
3
|
-
%
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
1
|
+
%table.zebra-striped.salary_templates.collection
|
2
|
+
%thead
|
3
|
+
%tr
|
4
|
+
%th= t_attr :title, SalaryTemplate
|
5
|
+
%th= t_attr :person, SalaryTemplate
|
6
|
+
%th= t_attr :remarks, SalaryTemplate
|
7
|
+
%tbody
|
8
|
+
= render @salary_templates
|
@@ -0,0 +1,82 @@
|
|
1
|
+
# SalaryBookingTemplates
|
2
|
+
SalaryBookingTemplate.create!([
|
3
|
+
{:code => '1000', :title => 'Monatslohn', :debit_account => Account.find_by_code('2050'), :credit_account => Account.find_by_code('5000'), :salary_declaration_code => '1', :include_in_saldo_list => 'Bruttolohn, AHV, UVG, UVGZ, KTG, Quellensteuer, Nettolohn', :amount => '', :amount_relates_to => ''},
|
4
|
+
{:code => '1005', :title => 'Stundenlohn', :debit_account => Account.find_by_code('2050'), :credit_account => Account.find_by_code('5000'), :salary_declaration_code => '1', :include_in_saldo_list => 'Bruttolohn, AHV, UVG, UVGZ, KTG, Quellensteuer, Nettolohn', :amount => '', :amount_relates_to => ''},
|
5
|
+
{:code => '1061', :title => 'Überstunden 125%', :debit_account => Account.find_by_code('2050'), :credit_account => Account.find_by_code('5000'), :salary_declaration_code => '1', :include_in_saldo_list => 'Bruttolohn, AHV, UVG, UVGZ, KTG, Quellensteuer, Nettolohn', :amount => '', :amount_relates_to => ''},
|
6
|
+
{:code => '1073', :title => 'Sonntagszulage', :debit_account => Account.find_by_code('2050'), :credit_account => Account.find_by_code('5000'), :salary_declaration_code => '1', :include_in_saldo_list => 'Bruttolohn, AHV, UVG, UVGZ, KTG, Quellensteuer, Nettolohn', :amount => '', :amount_relates_to => ''},
|
7
|
+
{:code => '1100', :title => 'Baustellenzulage', :debit_account => Account.find_by_code('2050'), :credit_account => Account.find_by_code('5000'), :salary_declaration_code => '1', :include_in_saldo_list => 'Bruttolohn, AHV, UVG, UVGZ, KTG, Quellensteuer, Nettolohn', :amount => '', :amount_relates_to => ''},
|
8
|
+
{:code => '1160', :title => 'Ferienvergütung', :debit_account => Account.find_by_code('2050'), :credit_account => Account.find_by_code('5000'), :salary_declaration_code => '1', :include_in_saldo_list => 'Bruttolohn, AHV, UVG, UVGZ, KTG, Quellensteuer, Nettolohn', :amount => '', :amount_relates_to => ''},
|
9
|
+
{:code => '1161', :title => 'Feiertagsentschädigung', :debit_account => Account.find_by_code('2050'), :credit_account => Account.find_by_code('5000'), :salary_declaration_code => '1', :include_in_saldo_list => 'Bruttolohn, AHV, UVG, UVGZ, KTG, Quellensteuer, Nettolohn', :amount => '', :amount_relates_to => ''},
|
10
|
+
{:code => '1200', :title => '13. Monatslohn', :debit_account => Account.find_by_code('2050'), :credit_account => Account.find_by_code('5000'), :salary_declaration_code => '1', :include_in_saldo_list => 'Bruttolohn, AHV, UVG, UVGZ, KTG, Quellensteuer, Nettolohn', :amount => '', :amount_relates_to => ''},
|
11
|
+
{:code => '1201', :title => 'Gratifikation', :debit_account => Account.find_by_code('2050'), :credit_account => Account.find_by_code('5000'), :salary_declaration_code => '3', :include_in_saldo_list => 'Bruttolohn, AHV, UVG, UVGZ, KTG, Quellensteuer, Nettolohn', :amount => '', :amount_relates_to => ''},
|
12
|
+
{:code => '1202', :title => 'Weihnachtszulage', :debit_account => Account.find_by_code('2050'), :credit_account => Account.find_by_code('5000'), :salary_declaration_code => '3', :include_in_saldo_list => 'Bruttolohn, AHV, UVG, UVGZ, KTG, Quellensteuer, Nettolohn', :amount => '', :amount_relates_to => ''},
|
13
|
+
{:code => '1300', :title => 'Lohn bei Unfall', :debit_account => Account.find_by_code('2050'), :credit_account => Account.find_by_code('5000'), :salary_declaration_code => '1', :include_in_saldo_list => 'Bruttolohn, AHV, UVG, UVGZ, KTG, Quellensteuer, Nettolohn', :amount => '', :amount_relates_to => ''},
|
14
|
+
{:code => '1301', :title => 'Lohn bei Krankheit', :debit_account => Account.find_by_code('2050'), :credit_account => Account.find_by_code('5000'), :salary_declaration_code => '1', :include_in_saldo_list => 'Bruttolohn, AHV, UVG, UVGZ, KTG, Quellensteuer, Nettolohn', :amount => '', :amount_relates_to => ''},
|
15
|
+
{:code => '1302', :title => 'Lohn bei Militärdienst/Zivilschutz', :debit_account => Account.find_by_code('2050'), :credit_account => Account.find_by_code('5000'), :salary_declaration_code => '1', :include_in_saldo_list => 'Bruttolohn, AHV, UVG, UVGZ, KTG, Quellensteuer, Nettolohn', :amount => '', :amount_relates_to => ''},
|
16
|
+
{:code => '1303', :title => 'Lohn bei Aus- und Weiterbildung', :debit_account => Account.find_by_code('2050'), :credit_account => Account.find_by_code('5000'), :salary_declaration_code => '1', :include_in_saldo_list => 'Bruttolohn, AHV, UVG, UVGZ, KTG, Quellensteuer, Nettolohn', :amount => '', :amount_relates_to => ''},
|
17
|
+
{:code => '1900', :title => 'Gratisverpflegung', :debit_account => Account.find_by_code('2050'), :credit_account => Account.find_by_code('5000'), :salary_declaration_code => '2.1', :include_in_saldo_list => 'Bruttolohn, AHV, UVG, UVGZ, KTG, Quellensteuer, Nettolohn', :amount => '', :amount_relates_to => ''},
|
18
|
+
{:code => '1910', :title => 'Privatanteil Geschäftswagen', :debit_account => Account.find_by_code('2050'), :credit_account => Account.find_by_code('5000'), :salary_declaration_code => '2.2', :include_in_saldo_list => 'Bruttolohn, AHV, UVG, UVGZ, KTG, Quellensteuer, Nettolohn', :amount => '', :amount_relates_to => ''},
|
19
|
+
{:code => '1980', :title => 'Weiterbildung (Lohnausweis)', :debit_account => Account.find_by_code('2050'), :credit_account => Account.find_by_code('5000'), :salary_declaration_code => '13.3', :include_in_saldo_list => 'Bruttolohn, AHV, UVG, UVGZ, KTG, Quellensteuer, Nettolohn', :amount => '', :amount_relates_to => ''},
|
20
|
+
{:code => '2000', :title => 'EO-Taggeld', :debit_account => Account.find_by_code('2050'), :credit_account => Account.find_by_code('5000'), :salary_declaration_code => '1', :include_in_saldo_list => 'Bruttolohn, AHV, KTG, Quellensteuer, Nettolohn', :amount => '', :amount_relates_to => ''},
|
21
|
+
{:code => '2035', :title => 'Kranken-Taggeld', :salary_declaration_code => '1', :include_in_saldo_list => 'Bruttolohn, Quellensteuer, Nettolohn', :amount => '', :amount_relates_to => ''},
|
22
|
+
{:code => '2040', :title => 'Mutterschaftsentschädigung', :debit_account => Account.find_by_code('2050'), :credit_account => Account.find_by_code('5000'), :salary_declaration_code => '1', :include_in_saldo_list => 'Bruttolohn, AHV, KTG, Quellensteuer, Nettolohn', :amount => '', :amount_relates_to => ''},
|
23
|
+
{:code => '3000', :title => 'Kinderzulage', :debit_account => Account.find_by_code('2050'), :credit_account => Account.find_by_code('5000'), :salary_declaration_code => '1', :include_in_saldo_list => 'Bruttolohn, Quellensteuer, Nettolohn', :amount => '300', :amount_relates_to => ''},
|
24
|
+
{:code => '5000', :title => 'Bruttolohn', :salary_declaration_code => '', :include_in_saldo_list => '', :amount => '', :amount_relates_to => 'Bruttolohn'},
|
25
|
+
{:code => '5010', :title => 'AHV-Beitrag', :debit_account => Account.find_by_code('5000'), :credit_account => Account.find_by_code('2050'), :salary_declaration_code => '9', :include_in_saldo_list => 'Nettolohn', :amount => '5.15%', :amount_relates_to => 'AHV'},
|
26
|
+
{:code => '5020', :title => 'ALV-Beitrag', :debit_account => Account.find_by_code('5000'), :credit_account => Account.find_by_code('2050'), :salary_declaration_code => '9', :include_in_saldo_list => 'Quellensteuer, Nettolohn', :amount => '1.1%', :amount_relates_to => 'AHV'},
|
27
|
+
{:code => '5030', :title => 'ALVZ-Beitrag', :debit_account => Account.find_by_code('5000'), :credit_account => Account.find_by_code('2050'), :salary_declaration_code => '9', :include_in_saldo_list => 'Nettolohn', :amount => '0.5%', :amount_relates_to => 'AHV'},
|
28
|
+
{:code => '5040', :title => 'NBUV-Beitrag', :debit_account => Account.find_by_code('5000'), :credit_account => Account.find_by_code('2050'), :salary_declaration_code => '9', :include_in_saldo_list => 'Nettolohn', :amount => '0.71%', :amount_relates_to => 'AHV'},
|
29
|
+
{:code => '5041', :title => 'UVGZ-Beitrag A1', :debit_account => Account.find_by_code('5000'), :credit_account => Account.find_by_code('2050'), :salary_declaration_code => '', :include_in_saldo_list => 'Nettolohn', :amount => '', :amount_relates_to => 'UVG'},
|
30
|
+
{:code => '5042', :title => 'UVGZ-Beitrag A2', :debit_account => Account.find_by_code('5000'), :credit_account => Account.find_by_code('2050'), :salary_declaration_code => '', :include_in_saldo_list => 'Nettolohn', :amount => '', :amount_relates_to => 'UVG'},
|
31
|
+
{:code => '5045', :title => 'KTG-Beitrag A1', :debit_account => Account.find_by_code('5000'), :credit_account => Account.find_by_code('2050'), :salary_declaration_code => '', :include_in_saldo_list => 'Nettolohn', :amount => '', :amount_relates_to => 'KTG'},
|
32
|
+
{:code => '5046', :title => 'KTG-Beitrag A2', :debit_account => Account.find_by_code('5000'), :credit_account => Account.find_by_code('2050'), :salary_declaration_code => '', :include_in_saldo_list => 'Nettolohn', :amount => '', :amount_relates_to => 'KTG'},
|
33
|
+
{:code => '5048', :title => 'KTG-Beitrag B1', :debit_account => Account.find_by_code('5000'), :credit_account => Account.find_by_code('2050'), :salary_declaration_code => '', :include_in_saldo_list => 'Nettolohn', :amount => '', :amount_relates_to => 'KTG'},
|
34
|
+
{:code => '5050', :title => 'BVG-Beitrag', :debit_account => Account.find_by_code('5000'), :credit_account => Account.find_by_code('2050'), :salary_declaration_code => '10.1', :include_in_saldo_list => 'Nettolohn', :amount => '', :amount_relates_to => ''},
|
35
|
+
{:code => '5051', :title => 'BVG-Einkaufs-Beiträge', :debit_account => Account.find_by_code('5000'), :credit_account => Account.find_by_code('2050'), :salary_declaration_code => '10.2', :include_in_saldo_list => 'Nettolohn', :amount => '', :amount_relates_to => ''},
|
36
|
+
{:code => '5060', :title => 'Quellensteuerabzug', :debit_account => Account.find_by_code('5000'), :credit_account => Account.find_by_code('2050'), :salary_declaration_code => '12', :include_in_saldo_list => 'Nettolohn', :amount => '', :amount_relates_to => ''},
|
37
|
+
{:code => '6000', :title => 'Reisespesen', :debit_account => Account.find_by_code('2050'), :credit_account => Account.find_by_code('5800'), :salary_declaration_code => '13.1.1', :include_in_saldo_list => 'Nettolohn', :amount => '', :amount_relates_to => ''},
|
38
|
+
{:code => '6001', :title => 'Autospesen', :debit_account => Account.find_by_code('2050'), :credit_account => Account.find_by_code('5800'), :salary_declaration_code => '13.1.1', :include_in_saldo_list => 'Nettolohn', :amount => '', :amount_relates_to => ''},
|
39
|
+
{:code => '6002', :title => 'Verpflegungsspesen', :debit_account => Account.find_by_code('2050'), :credit_account => Account.find_by_code('5800'), :salary_declaration_code => '13.1.1', :include_in_saldo_list => 'Nettolohn', :amount => '', :amount_relates_to => ''},
|
40
|
+
{:code => '6070', :title => 'Übrige Pauschalspesen', :debit_account => Account.find_by_code('2050'), :credit_account => Account.find_by_code('5800'), :salary_declaration_code => '13.2.3', :include_in_saldo_list => 'Nettolohn', :amount => '', :amount_relates_to => ''},
|
41
|
+
{:code => '6500', :title => 'Nettolohn', :salary_declaration_code => '', :include_in_saldo_list => 'Auszahlung', :amount => '', :amount_relates_to => 'Nettolohn'},
|
42
|
+
{:code => '6510', :title => 'Vorauszahlung', :debit_account => Account.find_by_code('1020'), :credit_account => Account.find_by_code('2050'), :salary_declaration_code => '', :include_in_saldo_list => 'Auszahlung', :amount => '', :amount_relates_to => ''},
|
43
|
+
{:code => '6600', :title => 'Auszahlung', :debit_account => Account.find_by_code('1020'), :credit_account => Account.find_by_code('2050'), :salary_declaration_code => '', :include_in_saldo_list => '', :amount => '', :amount_relates_to => 'Auszahlung'},
|
44
|
+
])
|
45
|
+
|
46
|
+
# SalaryTemplate
|
47
|
+
SalaryTemplate.create!([
|
48
|
+
{
|
49
|
+
:title => "Allgemeine Vorlage Monatslohn",
|
50
|
+
:salary_items => SalaryItem.create!([
|
51
|
+
{:position => 1, :salary_booking_template => SalaryBookingTemplate.find_by_code('1000')},
|
52
|
+
{:position => 2, :salary_booking_template => SalaryBookingTemplate.find_by_code('3000')},
|
53
|
+
{:position => 3, :salary_booking_template => SalaryBookingTemplate.find_by_code('5000')},
|
54
|
+
{:position => 4, :salary_booking_template => SalaryBookingTemplate.find_by_code('5010')},
|
55
|
+
{:position => 5, :salary_booking_template => SalaryBookingTemplate.find_by_code('5020')},
|
56
|
+
{:position => 6, :salary_booking_template => SalaryBookingTemplate.find_by_code('5030')},
|
57
|
+
{:position => 7, :salary_booking_template => SalaryBookingTemplate.find_by_code('5040')},
|
58
|
+
{:position => 8, :salary_booking_template => SalaryBookingTemplate.find_by_code('5041')},
|
59
|
+
{:position => 9, :salary_booking_template => SalaryBookingTemplate.find_by_code('5045')},
|
60
|
+
{:position => 10, :salary_booking_template => SalaryBookingTemplate.find_by_code('5050')},
|
61
|
+
{:position => 11, :salary_booking_template => SalaryBookingTemplate.find_by_code('6500')},
|
62
|
+
{:position => 12, :salary_booking_template => SalaryBookingTemplate.find_by_code('6600')},
|
63
|
+
])
|
64
|
+
},
|
65
|
+
{
|
66
|
+
:title => "Allgemeine Vorlage für Stundenlohn",
|
67
|
+
:salary_items => SalaryItem.create!([
|
68
|
+
{:position => 1, :salary_booking_template => SalaryBookingTemplate.find_by_code('1005')},
|
69
|
+
{:position => 2, :salary_booking_template => SalaryBookingTemplate.find_by_code('3000')},
|
70
|
+
{:position => 3, :salary_booking_template => SalaryBookingTemplate.find_by_code('5000')},
|
71
|
+
{:position => 4, :salary_booking_template => SalaryBookingTemplate.find_by_code('5010')},
|
72
|
+
{:position => 5, :salary_booking_template => SalaryBookingTemplate.find_by_code('5020')},
|
73
|
+
{:position => 6, :salary_booking_template => SalaryBookingTemplate.find_by_code('5030')},
|
74
|
+
{:position => 7, :salary_booking_template => SalaryBookingTemplate.find_by_code('5040')},
|
75
|
+
{:position => 8, :salary_booking_template => SalaryBookingTemplate.find_by_code('5041')},
|
76
|
+
{:position => 9, :salary_booking_template => SalaryBookingTemplate.find_by_code('5045')},
|
77
|
+
{:position => 10, :salary_booking_template => SalaryBookingTemplate.find_by_code('5050')},
|
78
|
+
{:position => 11, :salary_booking_template => SalaryBookingTemplate.find_by_code('6500')},
|
79
|
+
{:position => 12, :salary_booking_template => SalaryBookingTemplate.find_by_code('6600')},
|
80
|
+
])
|
81
|
+
},
|
82
|
+
])
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bookyt_salary
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 91
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 16
|
9
|
-
-
|
10
|
-
version: 0.16.
|
9
|
+
- 2
|
10
|
+
version: 0.16.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- "Simon H\xC3\xBCrlimann (CyT)"
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2012-
|
18
|
+
date: 2012-03-08 00:00:00 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: rails
|
@@ -151,6 +151,7 @@ files:
|
|
151
151
|
- db/migrate/20120201104444_switch_to_translated_saldo_inclusion_flags.rb
|
152
152
|
- db/migrate/20120201125113_switch_line_items_to_translated_saldo_inclusion_flags.rb
|
153
153
|
- db/seeds.rb
|
154
|
+
- db/seeds/locales/de-CH.rb
|
154
155
|
- lib/bookyt_salary.rb
|
155
156
|
- lib/bookyt_salary/navigation.rb
|
156
157
|
- lib/bookyt_salary/railtie.rb
|