bookyt_projects 0.19.6 → 0.19.7

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.
@@ -14,7 +14,3 @@ tr
14
14
  background-color: #FDDFDE // block-message error
15
15
  &.free, &.future
16
16
  color: #BFBFBF // subtitle
17
-
18
- tr.future
19
- td.overtime, td.overall-overtime
20
- color: transparent
@@ -13,11 +13,11 @@ class ActivitiesController < AuthorizedController
13
13
  end
14
14
 
15
15
  # Educated guessing of person
16
- @activity.person = current_user.person if current_user
16
+ @activity.person ||= current_user.person if current_user
17
17
 
18
18
  # Educated guessing of project
19
19
  @activity.project_id ||= params[:project_id] if params[:project_id]
20
- @activity.project_id ||= @activity.person.activities.order(:date).last
20
+ @activity.project_id ||= @activity.person.latest_project.id
21
21
 
22
22
  new!
23
23
  end
@@ -11,7 +11,11 @@
11
11
  - tr_params = {:class => work_day_classes(day)}
12
12
  - tr_params.merge!(:rel => 'popover', 'data-content' => h(render 'timesheets/activities_popover', :activities => day.activities), 'data-original-title' => 'Aktivitäten', 'data-html' => 'true') unless day.activities.empty?
13
13
  %tr{tr_params}
14
- %td= link_to l(day.date, :format => '%a, %d.%m.%Y'), person_activities_path(@employee, :by_date => day.date.to_s(:db)), 'data-href-container' => 'tr'
14
+ %td
15
+ - if day.activities.empty?
16
+ = link_to l(day.date, :format => '%a, %d.%m.%Y'), new_activity_path(:activity => {:person_id => @employee.id, :date => day.date.to_s(:db)}), 'data-href-container' => 'tr'
17
+ - else
18
+ = link_to l(day.date, :format => '%a, %d.%m.%Y'), person_activities_path(@employee, :by_date => day.date.to_s(:db)), 'data-href-container' => 'tr'
15
19
  %td.right
16
20
  %span.strong= "%0.2f" % day.hours_worked
17
21
  = "(%0.2f)" % day.hours_due
@@ -1,3 +1,3 @@
1
1
  module BookytPos
2
- VERSION = '0.19.6'
2
+ VERSION = '0.19.7'
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bookyt_projects
3
3
  version: !ruby/object:Gem::Version
4
- hash: 95
4
+ hash: 93
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 19
9
- - 6
10
- version: 0.19.6
9
+ - 7
10
+ version: 0.19.7
11
11
  platform: ruby
12
12
  authors:
13
13
  - Roman Simecek (CyT)