dorsale 3.9.7 → 3.9.8
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/CHANGELOG.md +5 -0
- data/app/filters/dorsale/billing_machine/small_data/filter_for_invoices.rb +1 -1
- data/app/filters/dorsale/billing_machine/small_data/filter_for_quotations.rb +1 -1
- data/app/models/dorsale/customer_vault/person.rb +1 -1
- data/app/models/dorsale/flyboy.rb +7 -0
- data/app/pdfs/dorsale/prawn_helpers.rb +1 -1
- data/app/views/dorsale/flyboy/task_comments/_form.html.slim +1 -0
- data/app/views/dorsale/flyboy/task_comments/_increment_buttons.html.slim +16 -0
- data/app/views/dorsale/flyboy/task_comments/_list.html.slim +4 -0
- data/app/views/dorsale/flyboy/tasks/_actions.html.slim +10 -0
- data/app/views/dorsale/flyboy/tasks/_context.html.slim +1 -7
- data/app/views/dorsale/flyboy/tasks/index.xlsx.ruby +1 -1
- data/config/routes.rb +1 -1
- data/features/billing_machine_invoices.feature +1 -1
- data/features/billing_machine_quotations.feature +1 -1
- data/features/flyboy_task_comments.feature +9 -0
- data/features/step_definitions/billing_machine_invoices_steps.rb +2 -2
- data/features/step_definitions/billing_machine_quotations_steps.rb +2 -4
- data/features/step_definitions/common_steps.rb +4 -0
- data/features/step_definitions/customer_vault_links_steps.rb +0 -1
- data/features/support/env.rb +2 -1
- data/lib/dorsale/version.rb +1 -1
- data/spec/routing/dorsale/flyboy/tasks_routing_spec.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 92313d3e11ca03d76f1153193497dd581e8cf4ad
|
|
4
|
+
data.tar.gz: 4e9f7171df37fff5047abecf671cd2408affb103
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e836be0347fe2fafd0bfedc565599c89ab786f58dc665ac923489cb900aaad73e5b34c9b06e4a8fff1681181ac3a81591315c9734ee424455ebb536da0380ed2
|
|
7
|
+
data.tar.gz: 3a377cbad257367addc9a05df944d4e22608001ba8ec15624efedabb023519879e0f7160ea73032d9f30be59cf3e512cc48528deee29726a37de6c7457524835
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
class Dorsale::BillingMachine::SmallData::FilterForInvoices < ::Agilibox::SmallData::Filter
|
|
2
2
|
STRATEGIES = {
|
|
3
|
-
"bm_time_period" => ::Agilibox::SmallData::
|
|
3
|
+
"bm_time_period" => ::Agilibox::SmallData::FilterStrategyByDatePeriod.new(:date),
|
|
4
4
|
"bm_date_begin" => ::Agilibox::SmallData::FilterStrategyByDateBegin.new(:date),
|
|
5
5
|
"bm_date_end" => ::Agilibox::SmallData::FilterStrategyByDateEnd.new(:date),
|
|
6
6
|
"bm_customer_guid" => ::Dorsale::BillingMachine::SmallData::FilterStrategyByCustomer.new,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
class Dorsale::BillingMachine::SmallData::FilterForQuotations < ::Agilibox::SmallData::Filter
|
|
2
2
|
STRATEGIES = {
|
|
3
|
-
"bm_time_period" => ::Agilibox::SmallData::
|
|
3
|
+
"bm_time_period" => ::Agilibox::SmallData::FilterStrategyByDatePeriod.new(:date),
|
|
4
4
|
"bm_date_begin" => ::Agilibox::SmallData::FilterStrategyByDateBegin.new(:date),
|
|
5
5
|
"bm_date_end" => ::Agilibox::SmallData::FilterStrategyByDateEnd.new(:date),
|
|
6
6
|
"bm_customer_guid" => ::Dorsale::BillingMachine::SmallData::FilterStrategyByCustomer.new,
|
|
@@ -93,7 +93,7 @@ module Dorsale::PrawnHelpers
|
|
|
93
93
|
if ApplicationUploader.storage.to_s.end_with?("File") # Local
|
|
94
94
|
obj.path
|
|
95
95
|
elsif ApplicationUploader.storage.to_s.end_with?("Fog") # Amazon S3
|
|
96
|
-
|
|
96
|
+
URI.parse(obj.url).open
|
|
97
97
|
else
|
|
98
98
|
raise NotImplementedError
|
|
99
99
|
end
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
.task_comment-increment-buttons.text-center
|
|
2
|
+
- Dorsale::Flyboy.progress_increment_buttons.each do |value|
|
|
3
|
+
button.btn.btn-xs.increment type="button" data-value=value
|
|
4
|
+
= "+" if value.positive?
|
|
5
|
+
= "-" if value.negative?
|
|
6
|
+
= value.abs
|
|
7
|
+
|
|
8
|
+
coffee:
|
|
9
|
+
$("button.increment").click ->
|
|
10
|
+
current = parseInt $("#task_comment_progress").val()
|
|
11
|
+
increment = parseInt this.dataset.value
|
|
12
|
+
newValue = current + increment
|
|
13
|
+
newValue = 0 if newValue < 0
|
|
14
|
+
newValue = 100 if newValue > 100
|
|
15
|
+
$("#task_comment_progress").val(newValue)
|
|
16
|
+
$(this).blur()
|
|
@@ -8,6 +8,10 @@
|
|
|
8
8
|
th.task_comment-description
|
|
9
9
|
= sortable_column Dorsale::Flyboy::TaskComment.t(:description), :description
|
|
10
10
|
|
|
11
|
+
- if policy(@task).complete?
|
|
12
|
+
.pull-right = complete_button complete_flyboy_task_path(task)
|
|
13
|
+
|
|
14
|
+
|
|
11
15
|
tbody
|
|
12
16
|
- if params[:sort] != "date"
|
|
13
17
|
= render "dorsale/flyboy/task_comments/form", f: f
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
= actions_for task
|
|
2
|
+
|
|
3
|
+
- if policy(task).copy?
|
|
4
|
+
= copy_button copy_flyboy_task_path(task)
|
|
5
|
+
|
|
6
|
+
- if policy(task).snooze?
|
|
7
|
+
= snooze_button snooze_flyboy_task_path(task), method: :patch
|
|
8
|
+
|
|
9
|
+
- if policy(task).complete?
|
|
10
|
+
= complete_button complete_flyboy_task_path(task)
|
|
@@ -14,10 +14,4 @@
|
|
|
14
14
|
= info task, :done
|
|
15
15
|
|
|
16
16
|
.context-footer
|
|
17
|
-
=
|
|
18
|
-
|
|
19
|
-
- if policy(task).copy?
|
|
20
|
-
= copy_button copy_flyboy_task_path(task), method: :patch
|
|
21
|
-
|
|
22
|
-
- if policy(task).snooze?
|
|
23
|
-
= snooze_button snooze_flyboy_task_path(task), method: :patch
|
|
17
|
+
= render "dorsale/flyboy/tasks/actions", task: task
|
data/config/routes.rb
CHANGED
|
@@ -10,3 +10,12 @@ Feature: Manage task comments
|
|
|
10
10
|
And I create a new task comment
|
|
11
11
|
Then I am on this task
|
|
12
12
|
And the task comment is created
|
|
13
|
+
|
|
14
|
+
Scenario: Increment task comment progress JS
|
|
15
|
+
Given an existing task
|
|
16
|
+
When I go to the tasks section
|
|
17
|
+
And I consult this task
|
|
18
|
+
And I fill "task_comment_progress" with "0"
|
|
19
|
+
Then "task_comment_progress" has value "0"
|
|
20
|
+
When I click on "+5"
|
|
21
|
+
Then "task_comment_progress" has value "5"
|
|
@@ -182,7 +182,7 @@ Then(/^he should see (\d+) invoices?$/) do |count|
|
|
|
182
182
|
end
|
|
183
183
|
|
|
184
184
|
Then(/^the invoice is displayed correctly$/) do
|
|
185
|
-
expect(page).to have_selector ".tracking_id", @invoice.tracking_id
|
|
185
|
+
expect(page).to have_selector ".tracking_id", text: @invoice.tracking_id
|
|
186
186
|
end
|
|
187
187
|
|
|
188
188
|
Then(/^the total excluding taxes is "(.*?)"$/) do |total|
|
|
@@ -303,7 +303,7 @@ Then(/^a new invoice is displayed with the informations$/) do
|
|
|
303
303
|
end
|
|
304
304
|
|
|
305
305
|
Then(/^he can see all the informations$/) do
|
|
306
|
-
expect(page).to have_selector ".invoice-label", @invoice.label
|
|
306
|
+
expect(page).to have_selector ".invoice-label", text: @invoice.label
|
|
307
307
|
end
|
|
308
308
|
|
|
309
309
|
Then(/^only the invoices of this customer do appear$/) do
|
|
@@ -141,9 +141,7 @@ Then(/^I am on the created quotation$/) do
|
|
|
141
141
|
end
|
|
142
142
|
|
|
143
143
|
Then(/^he can see all the quotation informations$/) do
|
|
144
|
-
expect(page).to have_selector ".quotation-label", @quotation.label
|
|
145
|
-
|
|
146
|
-
expect(page).to have_selector ".quotation-expires_at", "21/12/2012"
|
|
144
|
+
expect(page).to have_selector ".quotation-label", text: @quotation.label
|
|
147
145
|
end
|
|
148
146
|
|
|
149
147
|
Then(/^the quotation default date is set to today's date\.$/) do
|
|
@@ -155,7 +153,7 @@ Then(/^he should see (\d+) quotations?$/) do |arg1|
|
|
|
155
153
|
end
|
|
156
154
|
|
|
157
155
|
Then(/^the quotation is displayed correctly$/) do
|
|
158
|
-
expect(page).to have_selector ".tracking_id", @quotation.tracking_id
|
|
156
|
+
expect(page).to have_selector ".tracking_id", text: @quotation.tracking_id
|
|
159
157
|
end
|
|
160
158
|
|
|
161
159
|
Then(/^a message signals the success of the quotation creation$/) do
|
data/features/support/env.rb
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
ENV["RAILS_ROOT"] ||= File.expand_path("
|
|
1
|
+
ENV["RAILS_ROOT"] ||= File.expand_path("../../spec/dummy", __dir__)
|
|
2
2
|
require "cucumber/rails"
|
|
3
3
|
require "agilibox/cucumber_config"
|
|
4
4
|
def Zonebie.set_random_timezone
|
|
5
5
|
# https://github.com/agilidee/dorsale/issues/273
|
|
6
6
|
end
|
|
7
7
|
Agilibox::CucumberConfig.require_all_helpers!
|
|
8
|
+
Agilibox::CucumberConfig.require_poltergeist!
|
data/lib/dorsale/version.rb
CHANGED
|
@@ -45,7 +45,7 @@ describe ::Dorsale::Flyboy::TasksController, type: :routing do
|
|
|
45
45
|
end
|
|
46
46
|
|
|
47
47
|
it "routes to #copy" do
|
|
48
|
-
expect(
|
|
48
|
+
expect(get("flyboy/tasks/1/copy")).to route_to("dorsale/flyboy/tasks#copy", id: "1")
|
|
49
49
|
end
|
|
50
50
|
end
|
|
51
51
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dorsale
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.9.
|
|
4
|
+
version: 3.9.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- agilidée
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-07-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -776,10 +776,12 @@ files:
|
|
|
776
776
|
- app/views/dorsale/expense_gun/expenses/new.html.slim
|
|
777
777
|
- app/views/dorsale/expense_gun/expenses/show.html.slim
|
|
778
778
|
- app/views/dorsale/flyboy/task_comments/_form.html.slim
|
|
779
|
+
- app/views/dorsale/flyboy/task_comments/_increment_buttons.html.slim
|
|
779
780
|
- app/views/dorsale/flyboy/task_comments/_list.html.slim
|
|
780
781
|
- app/views/dorsale/flyboy/task_comments/_task_comment.html.slim
|
|
781
782
|
- app/views/dorsale/flyboy/task_mailer/new_task.html.slim
|
|
782
783
|
- app/views/dorsale/flyboy/task_mailer/term_email.html.slim
|
|
784
|
+
- app/views/dorsale/flyboy/tasks/_actions.html.slim
|
|
783
785
|
- app/views/dorsale/flyboy/tasks/_context.html.slim
|
|
784
786
|
- app/views/dorsale/flyboy/tasks/_filters.html.slim
|
|
785
787
|
- app/views/dorsale/flyboy/tasks/_form.html.slim
|