bookyt_salary 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/db/seeds.rb +57 -0
- data/lib/bookyt_salary/railtie.rb +0 -3
- data/lib/bookyt_salary/version.rb +1 -1
- metadata +5 -4
data/db/seeds.rb
ADDED
@@ -0,0 +1,57 @@
|
|
1
|
+
# Salaries
|
2
|
+
# ========
|
3
|
+
# Accounts
|
4
|
+
Account.create!([
|
5
|
+
{:code => "2020", :title => "Kreditoren Sozialversicherungen", :account_type => outside_capital},
|
6
|
+
{:code => "2050", :title => "Offene Lohnforderungen", :account_type => outside_capital},
|
7
|
+
{:code => "5000", :title => "Lohnaufwand", :account_type => costs},
|
8
|
+
{:code => "5700", :title => "Sozialversicherungaufwand", :account_type => costs},
|
9
|
+
])
|
10
|
+
|
11
|
+
# Booking Templates
|
12
|
+
BookingTemplate.create!([
|
13
|
+
{:code => "salary:invoice", :title => "Lohn", :debit_account => Account.find_by_code("2050"), :credit_account => Account.find_by_code("5000"), :amount => 1, :amount_relates_to => 'reference_amount'},
|
14
|
+
{:code => "salary:cancel", :title => "Storno", :debit_account => Account.find_by_code("5000"), :credit_account => Account.find_by_code("2050"), :amount => 1, :amount_relates_to => 'reference_amount'},
|
15
|
+
|
16
|
+
{:code => "salary:cash_payment", :title => "Barzahlung Lohn", :debit_account => Account.find_by_code("1000"), :credit_account => Account.find_by_code("2050"), :amount => 1, :amount_relates_to => 'reference_balance'},
|
17
|
+
{:code => "salary:bank_payment", :title => "Bankzahlung Lohn", :debit_account => Account.find_by_code("1020"), :credit_account => Account.find_by_code("2050")},
|
18
|
+
])
|
19
|
+
|
20
|
+
# Charge Rates
|
21
|
+
ChargeRate.create!([
|
22
|
+
{:code => 'salary:both:ahv_iv_eo', :title => "AHV/IV/EO", :duration_from => '2007-01-01', :rate => 5.05},
|
23
|
+
{:code => 'salary:both:ahv_iv_eo', :title => "AHV/IV/EO", :duration_from => '2011-01-01', :rate => 5.15},
|
24
|
+
|
25
|
+
{:code => 'salary:both:alv', :title => "ALV", :duration_from => '2007-01-01', :rate => 1},
|
26
|
+
{:code => 'salary:both:alv', :title => "ALV", :duration_from => '2011-01-01', :rate => 1.1},
|
27
|
+
|
28
|
+
{:code => 'salary:both:alv_solidarity', :title => "ALV Solidaritätsprozent", :duration_from => '2011-01-01', :rate => 1},
|
29
|
+
|
30
|
+
{:code => 'salary:employer:bu', :title => "BU", :duration_from => '2007-01-01', :duration_to => '2014-01-01', :rate => 0.071},
|
31
|
+
|
32
|
+
{:code => 'salary:employee:nbu', :title => "NBU", :duration_from => '2010-07-01', :duration_to => '2014-01-01', :rate => 0.951},
|
33
|
+
{:code => 'salary:employer:nbu', :title => "NBU", :duration_from => '2010-07-01', :duration_to => '2014-01-01', :rate => 0},
|
34
|
+
|
35
|
+
{:code => 'salary:employer:fak', :title => "FAK", :duration_from => '2007-01-01', :rate => 1.6},
|
36
|
+
{:code => 'salary:employer:fak', :title => "FAK", :duration_from => '2010-01-01', :rate => 1.4},
|
37
|
+
|
38
|
+
{:code => 'salary:employer:vkb', :title => "VKB", :duration_from => '2007-01-01', :rate => 3 * 0.101},
|
39
|
+
{:code => 'salary:employer:vkb', :title => "VKB", :duration_from => '2011-01-01', :rate => 3 * 0.13},
|
40
|
+
])
|
41
|
+
|
42
|
+
ChargeBookingTemplate.create!([
|
43
|
+
{:code => "salary:employee:ahv_iv_eo", :charge_rate_code => 'salary:both:ahv_iv_eo', :title => "AHV/IV/EO Arbeitnehmer", :debit_account => Account.find_by_code("2020"), :credit_account => Account.find_by_code("5000"), :amount_relates_to => 'reference_amount'},
|
44
|
+
{:code => "salary:employer:ahv_iv_eo", :charge_rate_code => 'salary:both:ahv_iv_eo', :title => "AHV/IV/EO Arbeitgeber", :debit_account => Account.find_by_code("2020"), :credit_account => Account.find_by_code("5700"), :amount_relates_to => 'reference_amount'},
|
45
|
+
|
46
|
+
{:code => "salary:employee:alv", :charge_rate_code => 'salary:both:alv', :title => "ALV Arbeitnehmer", :debit_account => Account.find_by_code("2020"), :credit_account => Account.find_by_code("5000"), :amount_relates_to => 'reference_amount'},
|
47
|
+
{:code => "salary:employer:alv", :charge_rate_code => 'salary:both:alv', :title => "ALV Arbeitgeber", :debit_account => Account.find_by_code("2020"), :credit_account => Account.find_by_code("5700"), :amount_relates_to => 'reference_amount'},
|
48
|
+
|
49
|
+
{:code => "salary:employer:bu", :charge_rate_code => 'salary:employer:bu', :title => "BU Arbeitgeber", :debit_account => Account.find_by_code("2020"), :credit_account => Account.find_by_code("5700"), :amount_relates_to => 'reference_amount'},
|
50
|
+
|
51
|
+
{:code => "salary:employee:nbu", :charge_rate_code => 'salary:employee:nbu', :title => "NBU Arbeitnehmer", :debit_account => Account.find_by_code("2020"), :credit_account => Account.find_by_code("5000"), :amount_relates_to => 'reference_amount'},
|
52
|
+
{:code => "salary:employer:nbu", :charge_rate_code => 'salary:employer:nbu', :title => "NBU Arbeitgeber", :debit_account => Account.find_by_code("2020"), :credit_account => Account.find_by_code("5700"), :amount_relates_to => 'reference_amount'},
|
53
|
+
|
54
|
+
{:code => "salary:employer:fak", :charge_rate_code => 'salary:employer:fak', :title => "FAK Arbeitgeber", :debit_account => Account.find_by_code("2020"), :credit_account => Account.find_by_code("5700"), :amount_relates_to => 'reference_amount'},
|
55
|
+
|
56
|
+
{:code => "salary:employer:vkb", :charge_rate_code => 'salary:employer:vkb', :title => "VKB Arbeitgeber", :debit_account => Account.find_by_code("2020"), :credit_account => Account.find_by_code("5700"), :amount_relates_to => 'reference_amount'},
|
57
|
+
])
|
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: 23
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
|
-
-
|
8
|
+
- 2
|
9
9
|
- 0
|
10
|
-
version: 0.
|
10
|
+
version: 0.2.0
|
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: 2011-08-
|
18
|
+
date: 2011-08-19 00:00:00 +02:00
|
19
19
|
default_executable:
|
20
20
|
dependencies: []
|
21
21
|
|
@@ -42,6 +42,7 @@ files:
|
|
42
42
|
- app/views/days/show.html.haml
|
43
43
|
- config/locales/de.yml
|
44
44
|
- config/routes.rb
|
45
|
+
- db/seeds.rb
|
45
46
|
- lib/bookyt_salary.rb
|
46
47
|
- lib/bookyt_salary/navigation.rb
|
47
48
|
- lib/bookyt_salary/railtie.rb
|