dorsale 2.2.9 → 2.2.10

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.
Files changed (28) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/dorsale/billing_machine/invoices_controller.rb +15 -0
  3. data/app/controllers/dorsale/customer_vault/people_controller.rb +1 -1
  4. data/app/helpers/dorsale/text_helper.rb +9 -7
  5. data/app/models/dorsale/billing_machine/small_data/filter_for_invoices.rb +3 -3
  6. data/app/models/dorsale/billing_machine/small_data/filter_for_quotations.rb +3 -3
  7. data/app/views/dorsale/billing_machine/invoices/_header_infos.html.slim +8 -0
  8. data/app/views/dorsale/billing_machine/invoices/index.html.slim +4 -6
  9. data/app/views/dorsale/billing_machine/quotations/_header_infos.html.slim +1 -0
  10. data/app/views/dorsale/billing_machine/quotations/index.html.slim +5 -8
  11. data/app/views/dorsale/customer_vault/people/_new_people_contexts.html.slim +3 -0
  12. data/app/views/dorsale/customer_vault/people/activity.slim +1 -1
  13. data/app/views/dorsale/customer_vault/people/list.html.slim +1 -1
  14. data/config/locales/customer_vault.en.yml +1 -0
  15. data/config/locales/customer_vault.fr.yml +1 -0
  16. data/lib/dorsale/version.rb +1 -1
  17. data/spec/dummy/db/test.sqlite3 +0 -0
  18. data/spec/dummy/log/development.log +2492 -0
  19. data/spec/dummy/log/test.log +3209 -0
  20. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/2Lm4aMNrWbKoHHtvJRIX7WMbsuBCh7jnYg9aGVQ05aY.cache +2 -0
  21. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/H_CG3bjSEmXPpBo-8ykpHSr72kWqN1yQiKBbxb1LvA8.cache +0 -0
  22. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/kovtDe4ut4jwTeR8gb6DUDUTbNmVN2uX3RdttWaJtXI.cache +3 -0
  23. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/uHhgBOq-9GXUHky_5x06UlhPIVBaQaZaUAopILI8vtM.cache +1 -0
  24. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/2Lm4aMNrWbKoHHtvJRIX7WMbsuBCh7jnYg9aGVQ05aY.cache +2 -0
  25. data/spec/helpers/dorsale/text_helper_spec.rb +4 -0
  26. metadata +12 -4
  27. data/app/views/dorsale/billing_machine/invoices/_data_context.html.slim +0 -10
  28. data/app/views/dorsale/billing_machine/quotations/_data_context.html.slim +0 -6
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6ac76742911c9ccaa25e24b08598c7bafc3b75ab
4
- data.tar.gz: 2cdec797fed2f61351a7dc028d2059b0c5b5926e
3
+ metadata.gz: a8eef08a743065e70fe8506d1ea43393c4cee896
4
+ data.tar.gz: 5694d32daf3b02cbc7e4e16ce79eaace4cdc18d3
5
5
  SHA512:
6
- metadata.gz: a10171105978c1e87b22856a6dda851bf06fb82ac8afb3c15d6ea0ec06d449da1bf8c140b11f493a9aeccac44aea97f16c8e90f08d5afaa08b9b87f8536706c4
7
- data.tar.gz: 5665846fb4553d88c21b6184cc451cc45498f01517d96ab0c71fc8d4db01222c67292dc0cdc336d194ad3bc7fa4985e04553cbc5c8581d05704184a247f6d206
6
+ metadata.gz: 28e610c611b4349a84f3843b6e6b2fb41142b37f4fb026d09a81298c8504eafcd61e9e54c2e178aad686cbf6dc75aa1676b34b0f7888bd4ffa755a2571ee9238
7
+ data.tar.gz: 77de184390567bf9dd09c39af4ade5f86f21c229213bf1d374ff02d8ad352323f77fbfe72ce603a3511dbb5bb613a8cf6a6bf0868b7952507a6fc1a8e5bb2206
@@ -23,6 +23,21 @@ module Dorsale
23
23
  @invoices_without_pagination = @invoices
24
24
  @invoices = @invoices.page(params[:page]).per(50)
25
25
 
26
+ @total_excluding_taxes = @invoices_without_pagination.to_a
27
+ .map(&:total_excluding_taxes)
28
+ .delete_if(&:blank?)
29
+ .sum
30
+
31
+ @vat_amount = @invoices_without_pagination.to_a
32
+ .map(&:vat_amount)
33
+ .delete_if(&:blank?)
34
+ .sum
35
+
36
+ @total_including_taxes = @invoices_without_pagination.to_a
37
+ .map(&:total_including_taxes)
38
+ .delete_if(&:blank?)
39
+ .sum
40
+
26
41
  respond_to do |format|
27
42
  format.csv {
28
43
  send_data generate_encoded_csv(@invoices_without_pagination), type: "text/csv"
@@ -29,7 +29,7 @@ module Dorsale
29
29
 
30
30
  def activity
31
31
  authorize! :list, Person
32
-
32
+ @people ||= current_user_scope.individuals + current_user_scope.corporations
33
33
  @comments ||= current_user_scope.comments
34
34
  .where("commentable_type LIKE ?", "%CustomerVault%")
35
35
  .order("created_at DESC, id DESC")
@@ -61,12 +61,14 @@ module Dorsale
61
61
  text = text_or_options
62
62
  end
63
63
 
64
- label = options[:label] || object.t(attribute)
65
- tag = options[:tag] || :div
66
- separator = options[:separator] || " : "
67
- helper = options[:helper]
68
- i18n_key = "#{object.class.to_s.tableize.singularize}/#{attribute}"
69
- nested = I18n.t("activerecord.attributes.#{i18n_key}").is_a?(Hash)
64
+ label = options[:label] || object.t(attribute)
65
+ tag = options[:tag] || :div
66
+ separator = options[:separator] || " : "
67
+ helper = options[:helper]
68
+ i18n_key = "#{object.class.to_s.tableize.singularize}/#{attribute}"
69
+ nested = I18n.t("activerecord.attributes.#{i18n_key}").is_a?(Hash)
70
+ klass = object.is_a?(Class) ? object : object.class
71
+ object_type = klass.to_s.split("::").last.underscore
70
72
 
71
73
  value = text
72
74
  value = object.public_send(attribute) if value.nil?
@@ -80,7 +82,7 @@ module Dorsale
80
82
  value = value.to_s
81
83
 
82
84
  html_label = content_tag(:strong, class: "info-label") { label }
83
- span_css_class = "info-value #{object.class.model_name.element}-#{attribute}"
85
+ span_css_class = "info-value #{object_type}-#{attribute}"
84
86
  html_value = content_tag(:span, class: span_css_class) { value }
85
87
 
86
88
  content_tag(tag, class: "info") do
@@ -17,15 +17,15 @@ module Dorsale
17
17
  end
18
18
 
19
19
  def customer_guid
20
- get("customer_guid")
20
+ get(__method__)
21
21
  end
22
22
 
23
23
  def bm_time_period
24
- get("time_period")
24
+ get(__method__)
25
25
  end
26
26
 
27
27
  def bm_payment_status
28
- get("payment_status")
28
+ get(__method__)
29
29
  end
30
30
 
31
31
  end
@@ -17,15 +17,15 @@ module Dorsale
17
17
  end
18
18
 
19
19
  def customer_guid
20
- get("customer_guid")
20
+ get(__method__)
21
21
  end
22
22
 
23
23
  def bm_time_period
24
- get("time_period")
24
+ get(__method__)
25
25
  end
26
26
 
27
27
  def bm_quotation_state
28
- get("quotation_state")
28
+ get(__method__)
29
29
  end
30
30
 
31
31
  end
@@ -0,0 +1,8 @@
1
+ .well
2
+ .row.text-center
3
+ .col-md-4
4
+ = info ::Dorsale::BillingMachine::Quotation, :total_excluding_taxes, euros(@total_excluding_taxes)
5
+ .col-md-4
6
+ = info ::Dorsale::BillingMachine::Quotation, :vat_amount, euros(@vat_amount)
7
+ .col-md-4
8
+ = info ::Dorsale::BillingMachine::Quotation, :total_including_taxes, euros(@total_including_taxes)
@@ -1,15 +1,13 @@
1
1
  .billing_machine
2
- - content_for :sub_header do
2
+
3
3
  = render "dorsale/billing_machine/invoices/filters"
4
+
5
+ = render "dorsale/billing_machine/invoices/header_infos", invoices: @invoices
6
+
4
7
  .actions
5
8
  = create_button dorsale.new_billing_machine_invoice_path
6
9
  = download_button dorsale.billing_machine_invoices_path(format: :csv), action: :export_csv
7
10
 
8
- - content_for :context do
9
- = render "dorsale/billing_machine/invoices/data_context"
10
-
11
- - content_for :main do
12
11
  = render "dorsale/billing_machine/invoices/list", invoices: @invoices
13
12
  = paginate @invoices
14
13
 
15
- = render_contextual
@@ -0,0 +1 @@
1
+ = render "dorsale/billing_machine/invoices/header_infos"
@@ -1,14 +1,11 @@
1
1
  .billing_machine
2
- - content_for :sub_header do
2
+
3
3
  = render "dorsale/billing_machine/quotations/filters"
4
- .actions
5
- = create_button dorsale.new_billing_machine_quotation_path
6
4
 
7
- - content_for :context do
8
- = render "dorsale/billing_machine/quotations/data_context"
5
+ = render "dorsale/billing_machine/quotations/header_infos", quotations: @quotations
9
6
 
10
- - content_for :main do
7
+ .actions
8
+ = create_button dorsale.new_billing_machine_quotation_path
11
9
  = render "dorsale/billing_machine/quotations/list", quotations: @quotations
12
- = paginate @quotations
13
10
 
14
- = render_contextual
11
+ = paginate @quotations
@@ -1,3 +1,6 @@
1
+ .well.text-center
2
+ = info ::Dorsale::CustomerVault::Person, :count, people.count
3
+
1
4
  .individual-context: .context
2
5
  = context_icon :user
3
6
  = link_to t("actions.new_individual"), dorsale.new_customer_vault_individual_path, class: "btn btn-success"
@@ -3,7 +3,7 @@
3
3
  = render "dorsale/customer_vault/breadcrumb"
4
4
 
5
5
  - content_for :context do
6
- = render "dorsale/customer_vault/people/new_people_contexts"
6
+ = render "dorsale/customer_vault/people/new_people_contexts", people: @people
7
7
 
8
8
  - content_for :main do
9
9
  = render "dorsale/customer_vault/people/index_tabs"
@@ -3,7 +3,7 @@
3
3
  = render "dorsale/customer_vault/breadcrumb"
4
4
 
5
5
  - content_for :context do
6
- = render "dorsale/customer_vault/people/new_people_contexts"
6
+ = render "dorsale/customer_vault/people/new_people_contexts", people: @people
7
7
 
8
8
  - content_for :main do
9
9
  = render "dorsale/customer_vault/people/index_tabs"
@@ -61,6 +61,7 @@ en:
61
61
  immatriculation_number_2: "Immatriculation number 2"
62
62
  european_union_vat_number: "European union VAT number"
63
63
  legal_form: "Legal form"
64
+ count: "Number of people"
64
65
  dorsale/customer_vault/individual:
65
66
  <<: *customer_vault_person_attributes
66
67
  dorsale/customer_vault/corporation:
@@ -61,6 +61,7 @@ fr:
61
61
  immatriculation_number_2: "RCS"
62
62
  european_union_vat_number: "Numéro TVA européenne"
63
63
  legal_form: "Forme juridique"
64
+ count: "Nombre de contacts"
64
65
  dorsale/customer_vault/individual:
65
66
  <<: *customer_vault_person_attributes
66
67
  dorsale/customer_vault/corporation:
@@ -1,3 +1,3 @@
1
1
  module Dorsale
2
- VERSION = "2.2.9"
2
+ VERSION = "2.2.10"
3
3
  end
Binary file
@@ -112514,3 +112514,2495 @@ Started GET "/assets/application.self.js?body=1" for ::1 at 2015-12-17 18:19:22
112514
112514
 
112515
112515
 
112516
112516
  Started GET "/assets/font-awesome/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2015-12-17 18:19:22 +0100
112517
+
112518
+
112519
+ Started GET "/" for ::1 at 2015-12-29 16:20:20 +0100
112520
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
112521
+ Processing by HomeController#home as HTML
112522
+ Rendered home/home.html.slim within layouts/application (17.8ms)
112523
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_flash.html.slim (3.5ms)
112524
+ Completed 200 OK in 720ms (Views: 707.5ms | ActiveRecord: 0.0ms)
112525
+
112526
+
112527
+ Started GET "/assets/application.self.css?body=1" for ::1 at 2015-12-29 16:20:21 +0100
112528
+
112529
+
112530
+ Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-12-29 16:20:21 +0100
112531
+
112532
+
112533
+ Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-12-29 16:20:21 +0100
112534
+
112535
+
112536
+ Started GET "/assets/turbolinks.self.js?body=1" for ::1 at 2015-12-29 16:20:21 +0100
112537
+
112538
+
112539
+ Started GET "/assets/bootstrap.self.js?body=1" for ::1 at 2015-12-29 16:20:21 +0100
112540
+
112541
+
112542
+ Started GET "/assets/accounting.self.js?body=1" for ::1 at 2015-12-29 16:20:21 +0100
112543
+
112544
+
112545
+ Started GET "/assets/selectize.self.js?body=1" for ::1 at 2015-12-29 16:20:21 +0100
112546
+
112547
+
112548
+ Started GET "/assets/cocoon.self.js?body=1" for ::1 at 2015-12-29 16:20:21 +0100
112549
+
112550
+
112551
+ Started GET "/assets/bootstrap-datepicker/core.self.js?body=1" for ::1 at 2015-12-29 16:20:21 +0100
112552
+
112553
+
112554
+ Started GET "/assets/bootstrap-datepicker/locales/bootstrap-datepicker.fr.self.js?body=1" for ::1 at 2015-12-29 16:20:21 +0100
112555
+
112556
+
112557
+ Started GET "/assets/dorsale/alexandrie/all.self.js?body=1" for ::1 at 2015-12-29 16:20:21 +0100
112558
+
112559
+
112560
+ Started GET "/assets/dorsale/billing_machine/all.self.js?body=1" for ::1 at 2015-12-29 16:20:21 +0100
112561
+
112562
+
112563
+ Started GET "/assets/dorsale/customer_vault/all.self.js?body=1" for ::1 at 2015-12-29 16:20:21 +0100
112564
+
112565
+
112566
+ Started GET "/assets/dorsale/comments.self.js?body=1" for ::1 at 2015-12-29 16:20:21 +0100
112567
+
112568
+
112569
+ Started GET "/assets/dorsale/datepicker.self.js?body=1" for ::1 at 2015-12-29 16:20:21 +0100
112570
+
112571
+
112572
+ Started GET "/assets/dorsale/tabs_loader.self.js?body=1" for ::1 at 2015-12-29 16:20:21 +0100
112573
+
112574
+
112575
+ Started GET "/assets/dorsale/flyboy/all.self.js?body=1" for ::1 at 2015-12-29 16:20:21 +0100
112576
+
112577
+
112578
+ Started GET "/assets/dorsale/all.self.js?body=1" for ::1 at 2015-12-29 16:20:21 +0100
112579
+
112580
+
112581
+ Started GET "/assets/dorsale/forms.self.js?body=1" for ::1 at 2015-12-29 16:20:21 +0100
112582
+
112583
+
112584
+ Started GET "/assets/application.self.js?body=1" for ::1 at 2015-12-29 16:20:21 +0100
112585
+
112586
+
112587
+ Started GET "/assets/font-awesome/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2015-12-29 16:20:21 +0100
112588
+
112589
+
112590
+ Started GET "/dorsale/billing_machine/invoices" for ::1 at 2015-12-29 16:20:24 +0100
112591
+ Processing by Dorsale::BillingMachine::InvoicesController#index as HTML
112592
+ Dorsale::CustomerVault::Individual Load (0.9ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals"
112593
+ Dorsale::CustomerVault::Corporation Load (0.8ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations"
112594
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_filters.html.slim (1101.0ms)
112595
+ Dorsale::BillingMachine::Invoice Load (0.8ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC
112596
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_data_context.html.slim (29.4ms)
112597
+ Dorsale::BillingMachine::Invoice Load (0.5ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC LIMIT 50 OFFSET 0
112598
+ Dorsale::CustomerVault::Corporation Load (0.2ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations" WHERE "dorsale_customer_vault_corporations"."id" = ? LIMIT 1 [["id", 1]]
112599
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_list.html.slim (47.9ms)
112600
+  (0.6ms) SELECT COUNT(*) FROM "dorsale_billing_machine_invoices"
112601
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_contextual.html.slim (4.9ms)
112602
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/index.html.slim within layouts/application (1219.3ms)
112603
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_flash.html.slim (0.2ms)
112604
+ Completed 200 OK in 1411ms (Views: 1369.0ms | ActiveRecord: 5.0ms)
112605
+
112606
+
112607
+ Started POST "/dorsale/small_data/filters" for ::1 at 2015-12-29 16:20:29 +0100
112608
+ Processing by Dorsale::SmallData::FiltersController#create as HTML
112609
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"fHk6kbFff7XSFVj+3l2UtPw/B0D9Xlj+c7zE86g+npbecDRrGXRvAVgQgNy/EIzVwPwjzoa2NY7fViNgyeDeLw==", "filters"=>{"customer_guid"=>"", "bm_time_period"=>"", "bm_payment_status"=>"unpaid"}, "back_url"=>"http://localhost:3000/dorsale/billing_machine/invoices"}
112610
+ Redirected to http://localhost:3000/dorsale/billing_machine/invoices
112611
+ Completed 302 Found in 4ms (ActiveRecord: 0.0ms)
112612
+
112613
+
112614
+ Started GET "/dorsale/billing_machine/invoices" for ::1 at 2015-12-29 16:20:29 +0100
112615
+ Processing by Dorsale::BillingMachine::InvoicesController#index as HTML
112616
+ Dorsale::CustomerVault::Individual Load (0.3ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals"
112617
+ Dorsale::CustomerVault::Corporation Load (0.2ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations"
112618
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_filters.html.slim (5.1ms)
112619
+ Dorsale::BillingMachine::Invoice Load (0.3ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f') ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC
112620
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_data_context.html.slim (3.6ms)
112621
+ Dorsale::BillingMachine::Invoice Load (0.3ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f') ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC LIMIT 50 OFFSET 0
112622
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_list.html.slim (14.1ms)
112623
+  (0.2ms) SELECT COUNT(*) FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f')
112624
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_contextual.html.slim (0.9ms)
112625
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/index.html.slim within layouts/application (51.3ms)
112626
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_flash.html.slim (0.1ms)
112627
+ Completed 200 OK in 213ms (Views: 204.9ms | ActiveRecord: 1.3ms)
112628
+
112629
+
112630
+ Started GET "/assets/application.self.css?body=1" for ::1 at 2015-12-29 16:20:29 +0100
112631
+
112632
+
112633
+ Started GET "/assets/cocoon.self.js?body=1" for ::1 at 2015-12-29 16:20:29 +0100
112634
+
112635
+
112636
+ Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-12-29 16:20:29 +0100
112637
+
112638
+
112639
+ Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-12-29 16:20:29 +0100
112640
+
112641
+
112642
+ Started GET "/assets/turbolinks.self.js?body=1" for ::1 at 2015-12-29 16:20:29 +0100
112643
+
112644
+
112645
+ Started GET "/assets/bootstrap.self.js?body=1" for ::1 at 2015-12-29 16:20:29 +0100
112646
+
112647
+
112648
+ Started GET "/assets/selectize.self.js?body=1" for ::1 at 2015-12-29 16:20:29 +0100
112649
+
112650
+
112651
+ Started GET "/assets/bootstrap-datepicker/locales/bootstrap-datepicker.fr.self.js?body=1" for ::1 at 2015-12-29 16:20:29 +0100
112652
+
112653
+
112654
+ Started GET "/assets/accounting.self.js?body=1" for ::1 at 2015-12-29 16:20:29 +0100
112655
+
112656
+
112657
+ Started GET "/assets/bootstrap-datepicker/core.self.js?body=1" for ::1 at 2015-12-29 16:20:29 +0100
112658
+
112659
+
112660
+ Started GET "/assets/dorsale/alexandrie/all.self.js?body=1" for ::1 at 2015-12-29 16:20:29 +0100
112661
+
112662
+
112663
+ Started GET "/assets/dorsale/billing_machine/all.self.js?body=1" for ::1 at 2015-12-29 16:20:29 +0100
112664
+
112665
+
112666
+ Started GET "/assets/dorsale/comments.self.js?body=1" for ::1 at 2015-12-29 16:20:29 +0100
112667
+
112668
+
112669
+ Started GET "/assets/dorsale/customer_vault/all.self.js?body=1" for ::1 at 2015-12-29 16:20:29 +0100
112670
+
112671
+
112672
+ Started GET "/assets/dorsale/datepicker.self.js?body=1" for ::1 at 2015-12-29 16:20:29 +0100
112673
+
112674
+
112675
+ Started GET "/assets/dorsale/flyboy/all.self.js?body=1" for ::1 at 2015-12-29 16:20:29 +0100
112676
+
112677
+
112678
+ Started GET "/assets/dorsale/forms.self.js?body=1" for ::1 at 2015-12-29 16:20:29 +0100
112679
+
112680
+
112681
+ Started GET "/assets/dorsale/tabs_loader.self.js?body=1" for ::1 at 2015-12-29 16:20:29 +0100
112682
+
112683
+
112684
+ Started GET "/assets/dorsale/all.self.js?body=1" for ::1 at 2015-12-29 16:20:29 +0100
112685
+
112686
+
112687
+ Started GET "/assets/application.self.js?body=1" for ::1 at 2015-12-29 16:20:29 +0100
112688
+
112689
+
112690
+ Started GET "/assets/font-awesome/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2015-12-29 16:20:29 +0100
112691
+
112692
+
112693
+ Started POST "/dorsale/small_data/filters" for ::1 at 2015-12-29 16:20:31 +0100
112694
+ Processing by Dorsale::SmallData::FiltersController#create as HTML
112695
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"1yd0qQhHsD/gJLCHGFGlRzybxZQS0oEB4cFwEGFPJEZ1LnpToGygi2ohaKV5HL0mAFjhGmk67HFNK5eDAJFk/w==", "filters"=>{"customer_guid"=>"", "bm_time_period"=>"", "bm_payment_status"=>""}, "back_url"=>"http://localhost:3000/dorsale/billing_machine/invoices"}
112696
+ Redirected to http://localhost:3000/dorsale/billing_machine/invoices
112697
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
112698
+
112699
+
112700
+ Started GET "/dorsale/billing_machine/invoices" for ::1 at 2015-12-29 16:20:32 +0100
112701
+ Processing by Dorsale::BillingMachine::InvoicesController#index as HTML
112702
+ Dorsale::CustomerVault::Individual Load (0.2ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals"
112703
+ Dorsale::CustomerVault::Corporation Load (0.2ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations"
112704
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_filters.html.slim (6.1ms)
112705
+ Dorsale::BillingMachine::Invoice Load (0.3ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC
112706
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_data_context.html.slim (2.9ms)
112707
+ Dorsale::BillingMachine::Invoice Load (0.4ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC LIMIT 50 OFFSET 0
112708
+ Dorsale::CustomerVault::Corporation Load (0.1ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations" WHERE "dorsale_customer_vault_corporations"."id" = ? LIMIT 1 [["id", 1]]
112709
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_list.html.slim (18.4ms)
112710
+  (0.2ms) SELECT COUNT(*) FROM "dorsale_billing_machine_invoices"
112711
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_contextual.html.slim (0.9ms)
112712
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/index.html.slim within layouts/application (54.8ms)
112713
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_flash.html.slim (0.1ms)
112714
+ Completed 200 OK in 207ms (Views: 202.2ms | ActiveRecord: 1.4ms)
112715
+
112716
+
112717
+ Started GET "/assets/application.self.css?body=1" for ::1 at 2015-12-29 16:20:32 +0100
112718
+
112719
+
112720
+ Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-12-29 16:20:32 +0100
112721
+
112722
+
112723
+ Started GET "/assets/turbolinks.self.js?body=1" for ::1 at 2015-12-29 16:20:32 +0100
112724
+
112725
+
112726
+ Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-12-29 16:20:32 +0100
112727
+
112728
+
112729
+ Started GET "/assets/bootstrap.self.js?body=1" for ::1 at 2015-12-29 16:20:32 +0100
112730
+
112731
+
112732
+ Started GET "/assets/cocoon.self.js?body=1" for ::1 at 2015-12-29 16:20:32 +0100
112733
+
112734
+
112735
+ Started GET "/assets/accounting.self.js?body=1" for ::1 at 2015-12-29 16:20:32 +0100
112736
+
112737
+
112738
+ Started GET "/assets/selectize.self.js?body=1" for ::1 at 2015-12-29 16:20:32 +0100
112739
+
112740
+
112741
+ Started GET "/assets/bootstrap-datepicker/core.self.js?body=1" for ::1 at 2015-12-29 16:20:32 +0100
112742
+
112743
+
112744
+ Started GET "/assets/bootstrap-datepicker/locales/bootstrap-datepicker.fr.self.js?body=1" for ::1 at 2015-12-29 16:20:32 +0100
112745
+
112746
+
112747
+ Started GET "/assets/dorsale/alexandrie/all.self.js?body=1" for ::1 at 2015-12-29 16:20:32 +0100
112748
+
112749
+
112750
+ Started GET "/assets/dorsale/billing_machine/all.self.js?body=1" for ::1 at 2015-12-29 16:20:32 +0100
112751
+
112752
+
112753
+ Started GET "/assets/dorsale/comments.self.js?body=1" for ::1 at 2015-12-29 16:20:32 +0100
112754
+
112755
+
112756
+ Started GET "/assets/dorsale/customer_vault/all.self.js?body=1" for ::1 at 2015-12-29 16:20:32 +0100
112757
+
112758
+
112759
+ Started GET "/assets/dorsale/datepicker.self.js?body=1" for ::1 at 2015-12-29 16:20:32 +0100
112760
+
112761
+
112762
+ Started GET "/assets/dorsale/flyboy/all.self.js?body=1" for ::1 at 2015-12-29 16:20:32 +0100
112763
+
112764
+
112765
+ Started GET "/assets/dorsale/forms.self.js?body=1" for ::1 at 2015-12-29 16:20:32 +0100
112766
+
112767
+
112768
+ Started GET "/assets/dorsale/tabs_loader.self.js?body=1" for ::1 at 2015-12-29 16:20:32 +0100
112769
+
112770
+
112771
+ Started GET "/assets/dorsale/all.self.js?body=1" for ::1 at 2015-12-29 16:20:32 +0100
112772
+
112773
+
112774
+ Started GET "/assets/application.self.js?body=1" for ::1 at 2015-12-29 16:20:32 +0100
112775
+
112776
+
112777
+ Started GET "/assets/font-awesome/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2015-12-29 16:20:32 +0100
112778
+
112779
+
112780
+ Started GET "/assets/application.self.css?body=1" for ::1 at 2015-12-29 16:20:50 +0100
112781
+
112782
+
112783
+ Started POST "/dorsale/small_data/filters" for ::1 at 2015-12-29 16:21:03 +0100
112784
+ Processing by Dorsale::SmallData::FiltersController#create as HTML
112785
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"kAs7x1VgSmMxX26NGzqg/FAxprwpkZF9Rk3C7ZxHJ0AyAjU9/Uta17tatq96d7idbPKCMlJ5/A3qpyV+/Zln+Q==", "filters"=>{"customer_guid"=>"", "bm_time_period"=>"", "bm_payment_status"=>"unpaid"}, "back_url"=>"http://localhost:3000/dorsale/billing_machine/invoices"}
112786
+ Redirected to http://localhost:3000/dorsale/billing_machine/invoices
112787
+ Completed 302 Found in 21ms (ActiveRecord: 0.0ms)
112788
+
112789
+
112790
+ Started GET "/dorsale/billing_machine/invoices" for ::1 at 2015-12-29 16:21:04 +0100
112791
+ Processing by Dorsale::BillingMachine::InvoicesController#index as HTML
112792
+ Dorsale::CustomerVault::Individual Load (0.2ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals"
112793
+ Dorsale::CustomerVault::Corporation Load (0.1ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations"
112794
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_filters.html.slim (6.8ms)
112795
+ Dorsale::BillingMachine::Invoice Load (0.3ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f') ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC
112796
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_data_context.html.slim (3.0ms)
112797
+ Dorsale::BillingMachine::Invoice Load (0.3ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f') ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC LIMIT 50 OFFSET 0
112798
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_list.html.slim (17.4ms)
112799
+  (0.2ms) SELECT COUNT(*) FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f')
112800
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_contextual.html.slim (1.3ms)
112801
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/index.html.slim within layouts/application (56.8ms)
112802
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_flash.html.slim (0.1ms)
112803
+ Completed 200 OK in 211ms (Views: 205.9ms | ActiveRecord: 1.1ms)
112804
+
112805
+
112806
+ Started GET "/assets/application.self.css?body=1" for ::1 at 2015-12-29 16:21:04 +0100
112807
+
112808
+
112809
+ Started GET "/assets/turbolinks.self.js?body=1" for ::1 at 2015-12-29 16:21:04 +0100
112810
+
112811
+
112812
+ Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-12-29 16:21:04 +0100
112813
+
112814
+
112815
+ Started GET "/assets/cocoon.self.js?body=1" for ::1 at 2015-12-29 16:21:04 +0100
112816
+
112817
+
112818
+ Started GET "/assets/bootstrap.self.js?body=1" for ::1 at 2015-12-29 16:21:04 +0100
112819
+
112820
+
112821
+ Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-12-29 16:21:04 +0100
112822
+
112823
+
112824
+ Started GET "/assets/accounting.self.js?body=1" for ::1 at 2015-12-29 16:21:04 +0100
112825
+
112826
+
112827
+ Started GET "/assets/selectize.self.js?body=1" for ::1 at 2015-12-29 16:21:04 +0100
112828
+
112829
+
112830
+ Started GET "/assets/bootstrap-datepicker/core.self.js?body=1" for ::1 at 2015-12-29 16:21:04 +0100
112831
+
112832
+
112833
+ Started GET "/assets/bootstrap-datepicker/locales/bootstrap-datepicker.fr.self.js?body=1" for ::1 at 2015-12-29 16:21:04 +0100
112834
+
112835
+
112836
+ Started GET "/assets/dorsale/alexandrie/all.self.js?body=1" for ::1 at 2015-12-29 16:21:04 +0100
112837
+
112838
+
112839
+ Started GET "/assets/dorsale/billing_machine/all.self.js?body=1" for ::1 at 2015-12-29 16:21:04 +0100
112840
+
112841
+
112842
+ Started GET "/assets/dorsale/datepicker.self.js?body=1" for ::1 at 2015-12-29 16:21:04 +0100
112843
+
112844
+
112845
+ Started GET "/assets/dorsale/customer_vault/all.self.js?body=1" for ::1 at 2015-12-29 16:21:04 +0100
112846
+
112847
+
112848
+ Started GET "/assets/dorsale/comments.self.js?body=1" for ::1 at 2015-12-29 16:21:04 +0100
112849
+
112850
+
112851
+ Started GET "/assets/dorsale/flyboy/all.self.js?body=1" for ::1 at 2015-12-29 16:21:04 +0100
112852
+
112853
+
112854
+ Started GET "/assets/dorsale/forms.self.js?body=1" for ::1 at 2015-12-29 16:21:04 +0100
112855
+
112856
+
112857
+ Started GET "/assets/dorsale/tabs_loader.self.js?body=1" for ::1 at 2015-12-29 16:21:04 +0100
112858
+
112859
+
112860
+ Started GET "/assets/dorsale/all.self.js?body=1" for ::1 at 2015-12-29 16:21:04 +0100
112861
+
112862
+
112863
+ Started GET "/assets/application.self.js?body=1" for ::1 at 2015-12-29 16:21:04 +0100
112864
+
112865
+
112866
+ Started GET "/assets/font-awesome/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2015-12-29 16:21:04 +0100
112867
+
112868
+
112869
+ Started GET "/dorsale/billing_machine/invoices" for ::1 at 2015-12-29 16:22:14 +0100
112870
+ Processing by Dorsale::BillingMachine::InvoicesController#index as HTML
112871
+ Dorsale::CustomerVault::Individual Load (0.8ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals"
112872
+ Dorsale::CustomerVault::Corporation Load (0.2ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations"
112873
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_filters.html.slim (6.2ms)
112874
+ Dorsale::BillingMachine::Invoice Load (0.3ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f') ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC
112875
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_data_context.html.slim (13.4ms)
112876
+ Dorsale::BillingMachine::Invoice Load (0.3ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f') ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC LIMIT 50 OFFSET 0
112877
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_list.html.slim (14.4ms)
112878
+  (0.2ms) SELECT COUNT(*) FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f')
112879
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_contextual.html.slim (0.9ms)
112880
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/index.html.slim within layouts/application (62.3ms)
112881
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_flash.html.slim (0.1ms)
112882
+ Completed 200 OK in 325ms (Views: 224.4ms | ActiveRecord: 2.8ms)
112883
+
112884
+
112885
+ Started GET "/assets/application.self.css?body=1" for ::1 at 2015-12-29 16:22:14 +0100
112886
+
112887
+
112888
+ Started GET "/assets/cocoon.self.js?body=1" for ::1 at 2015-12-29 16:22:14 +0100
112889
+
112890
+
112891
+ Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-12-29 16:22:14 +0100
112892
+
112893
+
112894
+ Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-12-29 16:22:14 +0100
112895
+
112896
+
112897
+ Started GET "/assets/bootstrap.self.js?body=1" for ::1 at 2015-12-29 16:22:14 +0100
112898
+
112899
+
112900
+ Started GET "/assets/turbolinks.self.js?body=1" for ::1 at 2015-12-29 16:22:14 +0100
112901
+
112902
+
112903
+ Started GET "/assets/accounting.self.js?body=1" for ::1 at 2015-12-29 16:22:15 +0100
112904
+
112905
+
112906
+ Started GET "/assets/selectize.self.js?body=1" for ::1 at 2015-12-29 16:22:15 +0100
112907
+
112908
+
112909
+ Started GET "/assets/bootstrap-datepicker/core.self.js?body=1" for ::1 at 2015-12-29 16:22:15 +0100
112910
+
112911
+
112912
+ Started GET "/assets/dorsale/alexandrie/all.self.js?body=1" for ::1 at 2015-12-29 16:22:15 +0100
112913
+
112914
+
112915
+ Started GET "/assets/dorsale/billing_machine/all.self.js?body=1" for ::1 at 2015-12-29 16:22:15 +0100
112916
+
112917
+
112918
+ Started GET "/assets/bootstrap-datepicker/locales/bootstrap-datepicker.fr.self.js?body=1" for ::1 at 2015-12-29 16:22:15 +0100
112919
+
112920
+
112921
+ Started GET "/assets/dorsale/comments.self.js?body=1" for ::1 at 2015-12-29 16:22:15 +0100
112922
+
112923
+
112924
+ Started GET "/assets/dorsale/customer_vault/all.self.js?body=1" for ::1 at 2015-12-29 16:22:15 +0100
112925
+
112926
+
112927
+ Started GET "/assets/dorsale/datepicker.self.js?body=1" for ::1 at 2015-12-29 16:22:15 +0100
112928
+
112929
+
112930
+ Started GET "/assets/dorsale/flyboy/all.self.js?body=1" for ::1 at 2015-12-29 16:22:15 +0100
112931
+
112932
+
112933
+ Started GET "/assets/dorsale/forms.self.js?body=1" for ::1 at 2015-12-29 16:22:15 +0100
112934
+
112935
+
112936
+ Started GET "/assets/dorsale/tabs_loader.self.js?body=1" for ::1 at 2015-12-29 16:22:15 +0100
112937
+
112938
+
112939
+ Started GET "/assets/application.self.js?body=1" for ::1 at 2015-12-29 16:22:15 +0100
112940
+
112941
+
112942
+ Started GET "/assets/dorsale/all.self.js?body=1" for ::1 at 2015-12-29 16:22:15 +0100
112943
+
112944
+
112945
+ Started GET "/assets/font-awesome/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2015-12-29 16:22:15 +0100
112946
+
112947
+
112948
+ Started POST "/dorsale/small_data/filters" for ::1 at 2015-12-29 16:23:19 +0100
112949
+ Processing by Dorsale::SmallData::FiltersController#create as HTML
112950
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"Lic/4HLdDc+3hFonkI1nPKFbovKAbATdJQo4RP9IvmaMLjEa2vYdez2BggXxwH9dnZiGfPuEaa2J4N/Xnpb+3w==", "filters"=>{"customer_guid"=>"", "bm_time_period"=>"today", "bm_payment_status"=>"unpaid"}, "back_url"=>"http://localhost:3000/dorsale/billing_machine/invoices"}
112951
+ Redirected to http://localhost:3000/dorsale/billing_machine/invoices
112952
+ Completed 302 Found in 4ms (ActiveRecord: 0.0ms)
112953
+
112954
+
112955
+ Started GET "/dorsale/billing_machine/invoices" for ::1 at 2015-12-29 16:23:19 +0100
112956
+ Processing by Dorsale::BillingMachine::InvoicesController#index as HTML
112957
+ Dorsale::CustomerVault::Individual Load (0.3ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals"
112958
+ Dorsale::CustomerVault::Corporation Load (0.2ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations"
112959
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_filters.html.slim (5.5ms)
112960
+ Dorsale::BillingMachine::Invoice Load (0.2ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.date >= '2015-12-29') AND (dorsale_billing_machine_invoices.paid = 'f') ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC
112961
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_data_context.html.slim (2.3ms)
112962
+ Dorsale::BillingMachine::Invoice Load (0.3ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.date >= '2015-12-29') AND (dorsale_billing_machine_invoices.paid = 'f') ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC LIMIT 50 OFFSET 0
112963
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_list.html.slim (1.7ms)
112964
+  (0.1ms) SELECT COUNT(*) FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.date >= '2015-12-29') AND (dorsale_billing_machine_invoices.paid = 'f')
112965
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_contextual.html.slim (0.5ms)
112966
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/index.html.slim within layouts/application (36.6ms)
112967
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_flash.html.slim (0.1ms)
112968
+ Completed 200 OK in 189ms (Views: 183.7ms | ActiveRecord: 1.2ms)
112969
+
112970
+
112971
+ Started GET "/assets/application.self.css?body=1" for ::1 at 2015-12-29 16:23:19 +0100
112972
+
112973
+
112974
+ Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-12-29 16:23:19 +0100
112975
+
112976
+
112977
+ Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-12-29 16:23:19 +0100
112978
+
112979
+
112980
+ Started GET "/assets/cocoon.self.js?body=1" for ::1 at 2015-12-29 16:23:19 +0100
112981
+
112982
+
112983
+ Started GET "/assets/bootstrap.self.js?body=1" for ::1 at 2015-12-29 16:23:19 +0100
112984
+
112985
+
112986
+ Started GET "/assets/turbolinks.self.js?body=1" for ::1 at 2015-12-29 16:23:20 +0100
112987
+
112988
+
112989
+ Started GET "/assets/accounting.self.js?body=1" for ::1 at 2015-12-29 16:23:20 +0100
112990
+
112991
+
112992
+ Started GET "/assets/selectize.self.js?body=1" for ::1 at 2015-12-29 16:23:20 +0100
112993
+
112994
+
112995
+ Started GET "/assets/bootstrap-datepicker/locales/bootstrap-datepicker.fr.self.js?body=1" for ::1 at 2015-12-29 16:23:20 +0100
112996
+
112997
+
112998
+ Started GET "/assets/bootstrap-datepicker/core.self.js?body=1" for ::1 at 2015-12-29 16:23:20 +0100
112999
+
113000
+
113001
+ Started GET "/assets/dorsale/alexandrie/all.self.js?body=1" for ::1 at 2015-12-29 16:23:20 +0100
113002
+
113003
+
113004
+ Started GET "/assets/dorsale/billing_machine/all.self.js?body=1" for ::1 at 2015-12-29 16:23:20 +0100
113005
+
113006
+
113007
+ Started GET "/assets/dorsale/datepicker.self.js?body=1" for ::1 at 2015-12-29 16:23:20 +0100
113008
+
113009
+
113010
+ Started GET "/assets/dorsale/customer_vault/all.self.js?body=1" for ::1 at 2015-12-29 16:23:20 +0100
113011
+
113012
+
113013
+ Started GET "/assets/dorsale/flyboy/all.self.js?body=1" for ::1 at 2015-12-29 16:23:20 +0100
113014
+
113015
+
113016
+ Started GET "/assets/dorsale/forms.self.js?body=1" for ::1 at 2015-12-29 16:23:20 +0100
113017
+
113018
+
113019
+ Started GET "/assets/dorsale/comments.self.js?body=1" for ::1 at 2015-12-29 16:23:20 +0100
113020
+
113021
+
113022
+ Started GET "/assets/dorsale/tabs_loader.self.js?body=1" for ::1 at 2015-12-29 16:23:20 +0100
113023
+
113024
+
113025
+ Started GET "/assets/dorsale/all.self.js?body=1" for ::1 at 2015-12-29 16:23:20 +0100
113026
+
113027
+
113028
+ Started GET "/assets/application.self.js?body=1" for ::1 at 2015-12-29 16:23:20 +0100
113029
+
113030
+
113031
+ Started GET "/assets/font-awesome/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2015-12-29 16:23:20 +0100
113032
+
113033
+
113034
+ Started POST "/dorsale/small_data/filters" for ::1 at 2015-12-29 16:23:21 +0100
113035
+ Processing by Dorsale::SmallData::FiltersController#create as HTML
113036
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"RiYpJI7nOyCb5uJp0v0w1iUGBiJmvfQGbirVNu4IyurkLyfeJswrlBHjOkuzsCi3GcUirB1VmXbCwDKlj9aKUw==", "filters"=>{"customer_guid"=>"", "bm_time_period"=>"", "bm_payment_status"=>""}, "back_url"=>"http://localhost:3000/dorsale/billing_machine/invoices"}
113037
+ Redirected to http://localhost:3000/dorsale/billing_machine/invoices
113038
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
113039
+
113040
+
113041
+ Started GET "/dorsale/billing_machine/invoices" for ::1 at 2015-12-29 16:23:21 +0100
113042
+ Processing by Dorsale::BillingMachine::InvoicesController#index as HTML
113043
+ Dorsale::CustomerVault::Individual Load (0.2ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals"
113044
+ Dorsale::CustomerVault::Corporation Load (0.1ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations"
113045
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_filters.html.slim (6.3ms)
113046
+ Dorsale::BillingMachine::Invoice Load (0.4ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC
113047
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_data_context.html.slim (3.3ms)
113048
+ Dorsale::BillingMachine::Invoice Load (0.3ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC LIMIT 50 OFFSET 0
113049
+ Dorsale::CustomerVault::Corporation Load (0.2ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations" WHERE "dorsale_customer_vault_corporations"."id" = ? LIMIT 1 [["id", 1]]
113050
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_list.html.slim (19.3ms)
113051
+  (0.2ms) SELECT COUNT(*) FROM "dorsale_billing_machine_invoices"
113052
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_contextual.html.slim (1.2ms)
113053
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/index.html.slim within layouts/application (57.9ms)
113054
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_flash.html.slim (0.1ms)
113055
+ Completed 200 OK in 224ms (Views: 219.7ms | ActiveRecord: 1.3ms)
113056
+
113057
+
113058
+ Started GET "/assets/application.self.css?body=1" for ::1 at 2015-12-29 16:23:21 +0100
113059
+
113060
+
113061
+ Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-12-29 16:23:21 +0100
113062
+
113063
+
113064
+ Started GET "/assets/cocoon.self.js?body=1" for ::1 at 2015-12-29 16:23:21 +0100
113065
+
113066
+
113067
+ Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-12-29 16:23:21 +0100
113068
+
113069
+
113070
+ Started GET "/assets/bootstrap.self.js?body=1" for ::1 at 2015-12-29 16:23:21 +0100
113071
+
113072
+
113073
+ Started GET "/assets/turbolinks.self.js?body=1" for ::1 at 2015-12-29 16:23:21 +0100
113074
+
113075
+
113076
+ Started GET "/assets/accounting.self.js?body=1" for ::1 at 2015-12-29 16:23:21 +0100
113077
+
113078
+
113079
+ Started GET "/assets/selectize.self.js?body=1" for ::1 at 2015-12-29 16:23:21 +0100
113080
+
113081
+
113082
+ Started GET "/assets/bootstrap-datepicker/core.self.js?body=1" for ::1 at 2015-12-29 16:23:21 +0100
113083
+
113084
+
113085
+ Started GET "/assets/bootstrap-datepicker/locales/bootstrap-datepicker.fr.self.js?body=1" for ::1 at 2015-12-29 16:23:21 +0100
113086
+
113087
+
113088
+ Started GET "/assets/dorsale/alexandrie/all.self.js?body=1" for ::1 at 2015-12-29 16:23:21 +0100
113089
+
113090
+
113091
+ Started GET "/assets/dorsale/billing_machine/all.self.js?body=1" for ::1 at 2015-12-29 16:23:21 +0100
113092
+
113093
+
113094
+ Started GET "/assets/dorsale/comments.self.js?body=1" for ::1 at 2015-12-29 16:23:21 +0100
113095
+
113096
+
113097
+ Started GET "/assets/dorsale/customer_vault/all.self.js?body=1" for ::1 at 2015-12-29 16:23:21 +0100
113098
+
113099
+
113100
+ Started GET "/assets/dorsale/datepicker.self.js?body=1" for ::1 at 2015-12-29 16:23:21 +0100
113101
+
113102
+
113103
+ Started GET "/assets/dorsale/flyboy/all.self.js?body=1" for ::1 at 2015-12-29 16:23:21 +0100
113104
+
113105
+
113106
+ Started GET "/assets/dorsale/forms.self.js?body=1" for ::1 at 2015-12-29 16:23:21 +0100
113107
+
113108
+
113109
+ Started GET "/assets/dorsale/tabs_loader.self.js?body=1" for ::1 at 2015-12-29 16:23:21 +0100
113110
+
113111
+
113112
+ Started GET "/assets/dorsale/all.self.js?body=1" for ::1 at 2015-12-29 16:23:21 +0100
113113
+
113114
+
113115
+ Started GET "/assets/application.self.js?body=1" for ::1 at 2015-12-29 16:23:21 +0100
113116
+
113117
+
113118
+ Started GET "/assets/font-awesome/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2015-12-29 16:23:21 +0100
113119
+
113120
+
113121
+ Started GET "/dorsale/billing_machine/invoices" for ::1 at 2015-12-29 16:25:18 +0100
113122
+ Processing by Dorsale::BillingMachine::InvoicesController#index as HTML
113123
+ Dorsale::CustomerVault::Individual Load (0.7ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals"
113124
+ Dorsale::CustomerVault::Corporation Load (0.2ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations"
113125
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_filters.html.slim (6.5ms)
113126
+ Dorsale::BillingMachine::Invoice Load (0.3ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC
113127
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_data_context.html.slim (14.2ms)
113128
+ Dorsale::BillingMachine::Invoice Load (0.3ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC LIMIT 50 OFFSET 0
113129
+ Dorsale::CustomerVault::Corporation Load (0.2ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations" WHERE "dorsale_customer_vault_corporations"."id" = ? LIMIT 1 [["id", 1]]
113130
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_list.html.slim (19.8ms)
113131
+  (0.2ms) SELECT COUNT(*) FROM "dorsale_billing_machine_invoices"
113132
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_contextual.html.slim (1.1ms)
113133
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/index.html.slim within layouts/application (70.6ms)
113134
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_flash.html.slim (0.1ms)
113135
+ Completed 200 OK in 340ms (Views: 230.3ms | ActiveRecord: 2.9ms)
113136
+
113137
+
113138
+ Started GET "/assets/application.self.css?body=1" for ::1 at 2015-12-29 16:25:18 +0100
113139
+
113140
+
113141
+ Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-12-29 16:25:19 +0100
113142
+
113143
+
113144
+ Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-12-29 16:25:19 +0100
113145
+
113146
+
113147
+ Started GET "/assets/bootstrap.self.js?body=1" for ::1 at 2015-12-29 16:25:19 +0100
113148
+
113149
+
113150
+ Started GET "/assets/turbolinks.self.js?body=1" for ::1 at 2015-12-29 16:25:19 +0100
113151
+
113152
+
113153
+ Started GET "/assets/cocoon.self.js?body=1" for ::1 at 2015-12-29 16:25:19 +0100
113154
+
113155
+
113156
+ Started GET "/assets/selectize.self.js?body=1" for ::1 at 2015-12-29 16:25:19 +0100
113157
+
113158
+
113159
+ Started GET "/assets/bootstrap-datepicker/core.self.js?body=1" for ::1 at 2015-12-29 16:25:19 +0100
113160
+
113161
+
113162
+ Started GET "/assets/bootstrap-datepicker/locales/bootstrap-datepicker.fr.self.js?body=1" for ::1 at 2015-12-29 16:25:19 +0100
113163
+
113164
+
113165
+ Started GET "/assets/dorsale/alexandrie/all.self.js?body=1" for ::1 at 2015-12-29 16:25:19 +0100
113166
+
113167
+
113168
+ Started GET "/assets/dorsale/billing_machine/all.self.js?body=1" for ::1 at 2015-12-29 16:25:19 +0100
113169
+
113170
+
113171
+ Started GET "/assets/accounting.self.js?body=1" for ::1 at 2015-12-29 16:25:19 +0100
113172
+
113173
+
113174
+ Started GET "/assets/dorsale/customer_vault/all.self.js?body=1" for ::1 at 2015-12-29 16:25:19 +0100
113175
+
113176
+
113177
+ Started GET "/assets/dorsale/comments.self.js?body=1" for ::1 at 2015-12-29 16:25:19 +0100
113178
+
113179
+
113180
+ Started GET "/assets/dorsale/datepicker.self.js?body=1" for ::1 at 2015-12-29 16:25:19 +0100
113181
+
113182
+
113183
+ Started GET "/assets/dorsale/flyboy/all.self.js?body=1" for ::1 at 2015-12-29 16:25:19 +0100
113184
+
113185
+
113186
+ Started GET "/assets/dorsale/forms.self.js?body=1" for ::1 at 2015-12-29 16:25:19 +0100
113187
+
113188
+
113189
+ Started GET "/assets/dorsale/tabs_loader.self.js?body=1" for ::1 at 2015-12-29 16:25:19 +0100
113190
+
113191
+
113192
+ Started GET "/assets/dorsale/all.self.js?body=1" for ::1 at 2015-12-29 16:25:19 +0100
113193
+
113194
+
113195
+ Started GET "/assets/application.self.js?body=1" for ::1 at 2015-12-29 16:25:19 +0100
113196
+
113197
+
113198
+ Started GET "/assets/font-awesome/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2015-12-29 16:25:19 +0100
113199
+
113200
+
113201
+ Started POST "/dorsale/small_data/filters" for ::1 at 2015-12-29 16:25:21 +0100
113202
+ Processing by Dorsale::SmallData::FiltersController#create as HTML
113203
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"Sr12kr8yreYQw8ZpHyQYRoltzeSqyDkFrOvKZPP5Vn3otHhoFxm9UprGHkt+aQAnta7patEgVHUAAS33kicWxA==", "filters"=>{"customer_guid"=>"", "bm_time_period"=>"", "bm_payment_status"=>"unpaid"}, "back_url"=>"http://localhost:3000/dorsale/billing_machine/invoices"}
113204
+ Redirected to http://localhost:3000/dorsale/billing_machine/invoices
113205
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
113206
+
113207
+
113208
+ Started GET "/dorsale/billing_machine/invoices" for ::1 at 2015-12-29 16:25:21 +0100
113209
+ Processing by Dorsale::BillingMachine::InvoicesController#index as HTML
113210
+ Dorsale::CustomerVault::Individual Load (0.2ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals"
113211
+ Dorsale::CustomerVault::Corporation Load (0.1ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations"
113212
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_filters.html.slim (6.9ms)
113213
+ Dorsale::BillingMachine::Invoice Load (0.3ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f') ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC
113214
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_data_context.html.slim (3.1ms)
113215
+ Dorsale::BillingMachine::Invoice Load (0.3ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f') ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC LIMIT 50 OFFSET 0
113216
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_list.html.slim (16.2ms)
113217
+  (0.2ms) SELECT COUNT(*) FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f')
113218
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_contextual.html.slim (1.0ms)
113219
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/index.html.slim within layouts/application (55.7ms)
113220
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_flash.html.slim (0.1ms)
113221
+ Completed 200 OK in 227ms (Views: 222.1ms | ActiveRecord: 1.2ms)
113222
+
113223
+
113224
+ Started GET "/assets/bootstrap.self.js?body=1" for ::1 at 2015-12-29 16:25:22 +0100
113225
+
113226
+
113227
+ Started GET "/assets/application.self.css?body=1" for ::1 at 2015-12-29 16:25:22 +0100
113228
+
113229
+
113230
+ Started GET "/assets/cocoon.self.js?body=1" for ::1 at 2015-12-29 16:25:22 +0100
113231
+
113232
+
113233
+ Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-12-29 16:25:22 +0100
113234
+
113235
+
113236
+ Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-12-29 16:25:22 +0100
113237
+
113238
+
113239
+ Started GET "/assets/turbolinks.self.js?body=1" for ::1 at 2015-12-29 16:25:22 +0100
113240
+
113241
+
113242
+ Started GET "/assets/accounting.self.js?body=1" for ::1 at 2015-12-29 16:25:22 +0100
113243
+
113244
+
113245
+ Started GET "/assets/selectize.self.js?body=1" for ::1 at 2015-12-29 16:25:22 +0100
113246
+
113247
+
113248
+ Started GET "/assets/dorsale/comments.self.js?body=1" for ::1 at 2015-12-29 16:25:22 +0100
113249
+
113250
+
113251
+ Started GET "/assets/bootstrap-datepicker/locales/bootstrap-datepicker.fr.self.js?body=1" for ::1 at 2015-12-29 16:25:22 +0100
113252
+
113253
+
113254
+ Started GET "/assets/dorsale/alexandrie/all.self.js?body=1" for ::1 at 2015-12-29 16:25:22 +0100
113255
+
113256
+
113257
+ Started GET "/assets/dorsale/billing_machine/all.self.js?body=1" for ::1 at 2015-12-29 16:25:22 +0100
113258
+
113259
+
113260
+ Started GET "/assets/bootstrap-datepicker/core.self.js?body=1" for ::1 at 2015-12-29 16:25:22 +0100
113261
+
113262
+
113263
+ Started GET "/assets/dorsale/customer_vault/all.self.js?body=1" for ::1 at 2015-12-29 16:25:22 +0100
113264
+
113265
+
113266
+ Started GET "/assets/dorsale/datepicker.self.js?body=1" for ::1 at 2015-12-29 16:25:22 +0100
113267
+
113268
+
113269
+ Started GET "/assets/dorsale/flyboy/all.self.js?body=1" for ::1 at 2015-12-29 16:25:22 +0100
113270
+
113271
+
113272
+ Started GET "/assets/dorsale/forms.self.js?body=1" for ::1 at 2015-12-29 16:25:22 +0100
113273
+
113274
+
113275
+ Started GET "/assets/dorsale/tabs_loader.self.js?body=1" for ::1 at 2015-12-29 16:25:22 +0100
113276
+
113277
+
113278
+ Started GET "/assets/dorsale/all.self.js?body=1" for ::1 at 2015-12-29 16:25:22 +0100
113279
+
113280
+
113281
+ Started GET "/assets/application.self.js?body=1" for ::1 at 2015-12-29 16:25:22 +0100
113282
+
113283
+
113284
+ Started GET "/assets/font-awesome/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2015-12-29 16:25:22 +0100
113285
+
113286
+
113287
+ Started GET "/dorsale/billing_machine/invoices" for ::1 at 2015-12-29 16:25:34 +0100
113288
+ Processing by Dorsale::BillingMachine::InvoicesController#index as HTML
113289
+ Dorsale::CustomerVault::Individual Load (0.8ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals"
113290
+ Dorsale::CustomerVault::Corporation Load (0.2ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations"
113291
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_filters.html.slim (9.2ms)
113292
+ Dorsale::BillingMachine::Invoice Load (0.3ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f') ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC
113293
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_data_context.html.slim (18.3ms)
113294
+ Dorsale::BillingMachine::Invoice Load (0.3ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f') ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC LIMIT 50 OFFSET 0
113295
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_list.html.slim (15.6ms)
113296
+  (0.2ms) SELECT COUNT(*) FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f')
113297
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_contextual.html.slim (1.3ms)
113298
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/index.html.slim within layouts/application (76.0ms)
113299
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_flash.html.slim (0.2ms)
113300
+ Completed 200 OK in 359ms (Views: 256.6ms | ActiveRecord: 2.8ms)
113301
+
113302
+
113303
+ Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-12-29 16:25:35 +0100
113304
+
113305
+
113306
+ Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-12-29 16:25:35 +0100
113307
+
113308
+
113309
+ Started GET "/assets/application.self.css?body=1" for ::1 at 2015-12-29 16:25:35 +0100
113310
+
113311
+
113312
+ Started GET "/assets/cocoon.self.js?body=1" for ::1 at 2015-12-29 16:25:35 +0100
113313
+
113314
+
113315
+ Started GET "/assets/bootstrap.self.js?body=1" for ::1 at 2015-12-29 16:25:35 +0100
113316
+
113317
+
113318
+ Started GET "/assets/turbolinks.self.js?body=1" for ::1 at 2015-12-29 16:25:35 +0100
113319
+
113320
+
113321
+ Started GET "/assets/accounting.self.js?body=1" for ::1 at 2015-12-29 16:25:35 +0100
113322
+
113323
+
113324
+ Started GET "/assets/selectize.self.js?body=1" for ::1 at 2015-12-29 16:25:35 +0100
113325
+
113326
+
113327
+ Started GET "/assets/bootstrap-datepicker/core.self.js?body=1" for ::1 at 2015-12-29 16:25:35 +0100
113328
+
113329
+
113330
+ Started GET "/assets/bootstrap-datepicker/locales/bootstrap-datepicker.fr.self.js?body=1" for ::1 at 2015-12-29 16:25:35 +0100
113331
+
113332
+
113333
+ Started GET "/assets/dorsale/alexandrie/all.self.js?body=1" for ::1 at 2015-12-29 16:25:35 +0100
113334
+
113335
+
113336
+ Started GET "/assets/dorsale/billing_machine/all.self.js?body=1" for ::1 at 2015-12-29 16:25:35 +0100
113337
+
113338
+
113339
+ Started GET "/assets/dorsale/comments.self.js?body=1" for ::1 at 2015-12-29 16:25:35 +0100
113340
+
113341
+
113342
+ Started GET "/assets/dorsale/customer_vault/all.self.js?body=1" for ::1 at 2015-12-29 16:25:35 +0100
113343
+
113344
+
113345
+ Started GET "/assets/dorsale/datepicker.self.js?body=1" for ::1 at 2015-12-29 16:25:35 +0100
113346
+
113347
+
113348
+ Started GET "/assets/dorsale/flyboy/all.self.js?body=1" for ::1 at 2015-12-29 16:25:35 +0100
113349
+
113350
+
113351
+ Started GET "/assets/dorsale/forms.self.js?body=1" for ::1 at 2015-12-29 16:25:35 +0100
113352
+
113353
+
113354
+ Started GET "/assets/dorsale/tabs_loader.self.js?body=1" for ::1 at 2015-12-29 16:25:35 +0100
113355
+
113356
+
113357
+ Started GET "/assets/dorsale/all.self.js?body=1" for ::1 at 2015-12-29 16:25:35 +0100
113358
+
113359
+
113360
+ Started GET "/assets/application.self.js?body=1" for ::1 at 2015-12-29 16:25:35 +0100
113361
+
113362
+
113363
+ Started GET "/assets/font-awesome/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2015-12-29 16:25:35 +0100
113364
+
113365
+
113366
+ Started GET "/assets/application.self.css?body=1" for ::1 at 2015-12-29 16:28:10 +0100
113367
+
113368
+
113369
+ Started GET "/dorsale/billing_machine/quotations" for ::1 at 2015-12-29 16:31:56 +0100
113370
+ Processing by Dorsale::BillingMachine::QuotationsController#index as HTML
113371
+ Dorsale::CustomerVault::Individual Load (0.9ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals"
113372
+ Dorsale::CustomerVault::Corporation Load (0.2ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations"
113373
+ Dorsale::BillingMachine::Quotation Load (0.9ms) SELECT "dorsale_billing_machine_quotations".* FROM "dorsale_billing_machine_quotations" ORDER BY "dorsale_billing_machine_quotations"."unique_index" DESC
113374
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/_filters.html.slim (12.9ms)
113375
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/_data_context.html.slim (6.1ms)
113376
+ Dorsale::BillingMachine::Quotation Load (0.4ms) SELECT "dorsale_billing_machine_quotations".* FROM "dorsale_billing_machine_quotations" ORDER BY "dorsale_billing_machine_quotations"."unique_index" DESC LIMIT 50 OFFSET 0
113377
+ Dorsale::CustomerVault::Individual Load (0.2ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113378
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/_list.html.slim (41.6ms)
113379
+  (0.5ms) SELECT COUNT(*) FROM "dorsale_billing_machine_quotations"
113380
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_contextual.html.slim (0.7ms)
113381
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/index.html.slim within layouts/application (98.2ms)
113382
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_flash.html.slim (0.2ms)
113383
+ Completed 200 OK in 377ms (Views: 253.1ms | ActiveRecord: 4.3ms)
113384
+
113385
+
113386
+ Started POST "/dorsale/small_data/filters" for ::1 at 2015-12-29 16:32:08 +0100
113387
+ Processing by Dorsale::SmallData::FiltersController#create as HTML
113388
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"e47osShv6Zhqw9it95cFCKpnP5uyMIlPpSB2Yy8nNTfZh+ZLgET5LODGAI+W2h1plqQbFcnY5D8JypHwTvl1jg==", "filters"=>{"customer_guid"=>"", "bm_time_period"=>"", "bm_quotation_state"=>"accepted"}, "back_url"=>"http://localhost:3000/dorsale/billing_machine/quotations"}
113389
+ Redirected to http://localhost:3000/dorsale/billing_machine/quotations
113390
+ Completed 302 Found in 4ms (ActiveRecord: 0.0ms)
113391
+
113392
+
113393
+ Started GET "/dorsale/billing_machine/quotations" for ::1 at 2015-12-29 16:32:08 +0100
113394
+ Processing by Dorsale::BillingMachine::QuotationsController#index as HTML
113395
+ Dorsale::CustomerVault::Individual Load (0.2ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals"
113396
+ Dorsale::CustomerVault::Corporation Load (0.1ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations"
113397
+ Dorsale::BillingMachine::Quotation Load (0.3ms) SELECT "dorsale_billing_machine_quotations".* FROM "dorsale_billing_machine_quotations" WHERE "dorsale_billing_machine_quotations"."state" = ? ORDER BY "dorsale_billing_machine_quotations"."unique_index" DESC [["state", "accepted"]]
113398
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/_filters.html.slim (6.2ms)
113399
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/_data_context.html.slim (1.3ms)
113400
+ Dorsale::BillingMachine::Quotation Load (0.3ms) SELECT "dorsale_billing_machine_quotations".* FROM "dorsale_billing_machine_quotations" WHERE "dorsale_billing_machine_quotations"."state" = ? ORDER BY "dorsale_billing_machine_quotations"."unique_index" DESC LIMIT 50 OFFSET 0 [["state", "accepted"]]
113401
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/_list.html.slim (3.5ms)
113402
+  (0.2ms) SELECT COUNT(*) FROM "dorsale_billing_machine_quotations" WHERE "dorsale_billing_machine_quotations"."state" = ? [["state", "accepted"]]
113403
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_contextual.html.slim (0.4ms)
113404
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/index.html.slim within layouts/application (36.7ms)
113405
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_flash.html.slim (0.1ms)
113406
+ Completed 200 OK in 200ms (Views: 188.5ms | ActiveRecord: 1.1ms)
113407
+
113408
+
113409
+ Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-12-29 16:32:08 +0100
113410
+
113411
+
113412
+ Started GET "/assets/application.self.css?body=1" for ::1 at 2015-12-29 16:32:08 +0100
113413
+
113414
+
113415
+ Started GET "/assets/cocoon.self.js?body=1" for ::1 at 2015-12-29 16:32:08 +0100
113416
+
113417
+
113418
+ Started GET "/assets/turbolinks.self.js?body=1" for ::1 at 2015-12-29 16:32:08 +0100
113419
+
113420
+
113421
+ Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-12-29 16:32:08 +0100
113422
+
113423
+
113424
+ Started GET "/assets/bootstrap.self.js?body=1" for ::1 at 2015-12-29 16:32:08 +0100
113425
+
113426
+
113427
+ Started GET "/assets/accounting.self.js?body=1" for ::1 at 2015-12-29 16:32:08 +0100
113428
+
113429
+
113430
+ Started GET "/assets/selectize.self.js?body=1" for ::1 at 2015-12-29 16:32:08 +0100
113431
+
113432
+
113433
+ Started GET "/assets/bootstrap-datepicker/core.self.js?body=1" for ::1 at 2015-12-29 16:32:08 +0100
113434
+
113435
+
113436
+ Started GET "/assets/bootstrap-datepicker/locales/bootstrap-datepicker.fr.self.js?body=1" for ::1 at 2015-12-29 16:32:08 +0100
113437
+
113438
+
113439
+ Started GET "/assets/dorsale/alexandrie/all.self.js?body=1" for ::1 at 2015-12-29 16:32:08 +0100
113440
+
113441
+
113442
+ Started GET "/assets/dorsale/billing_machine/all.self.js?body=1" for ::1 at 2015-12-29 16:32:08 +0100
113443
+
113444
+
113445
+ Started GET "/assets/dorsale/comments.self.js?body=1" for ::1 at 2015-12-29 16:32:08 +0100
113446
+
113447
+
113448
+ Started GET "/assets/dorsale/customer_vault/all.self.js?body=1" for ::1 at 2015-12-29 16:32:08 +0100
113449
+
113450
+
113451
+ Started GET "/assets/dorsale/datepicker.self.js?body=1" for ::1 at 2015-12-29 16:32:09 +0100
113452
+
113453
+
113454
+ Started GET "/assets/dorsale/flyboy/all.self.js?body=1" for ::1 at 2015-12-29 16:32:09 +0100
113455
+
113456
+
113457
+ Started GET "/assets/dorsale/forms.self.js?body=1" for ::1 at 2015-12-29 16:32:09 +0100
113458
+
113459
+
113460
+ Started GET "/assets/dorsale/tabs_loader.self.js?body=1" for ::1 at 2015-12-29 16:32:09 +0100
113461
+
113462
+
113463
+ Started GET "/assets/dorsale/all.self.js?body=1" for ::1 at 2015-12-29 16:32:09 +0100
113464
+
113465
+
113466
+ Started GET "/assets/application.self.js?body=1" for ::1 at 2015-12-29 16:32:09 +0100
113467
+
113468
+
113469
+ Started GET "/assets/font-awesome/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2015-12-29 16:32:09 +0100
113470
+
113471
+
113472
+ Started GET "/dorsale/customer_vault/people" for ::1 at 2015-12-29 16:36:15 +0100
113473
+ Processing by Dorsale::CustomerVault::PeopleController#index as HTML
113474
+ Redirected to http://localhost:3000/dorsale/customer_vault/people/activity
113475
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
113476
+
113477
+
113478
+ Started GET "/dorsale/customer_vault/people/activity" for ::1 at 2015-12-29 16:36:15 +0100
113479
+ Processing by Dorsale::CustomerVault::PeopleController#activity as HTML
113480
+ Dorsale::CustomerVault::Individual Load (0.7ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals"
113481
+ Dorsale::CustomerVault::Corporation Load (0.2ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations"
113482
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/_breadcrumb.html.slim (1002.2ms)
113483
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_new_people_contexts.html.slim (8.1ms)
113484
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/search/_form.html.slim (6.9ms)
113485
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_index_tabs.html.slim (18.8ms)
113486
+  (0.6ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "dorsale_comments" WHERE (commentable_type LIKE '%CustomerVault%') LIMIT 50 OFFSET 0) subquery_for_count
113487
+ Dorsale::Comment Load (0.3ms) SELECT "dorsale_comments".* FROM "dorsale_comments" WHERE (commentable_type LIKE '%CustomerVault%') ORDER BY "dorsale_comments"."created_at" DESC, created_at DESC, id DESC LIMIT 50 OFFSET 0
113488
+ User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113489
+ Dorsale::CustomerVault::Individual Load (0.2ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113490
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (37.7ms)
113491
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (48.4ms)
113492
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113493
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113494
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (7.1ms)
113495
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (13.1ms)
113496
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113497
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113498
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (6.8ms)
113499
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (13.0ms)
113500
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113501
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113502
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (7.2ms)
113503
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (13.2ms)
113504
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113505
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113506
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (8.2ms)
113507
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (13.9ms)
113508
+ CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113509
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113510
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (8.2ms)
113511
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (14.3ms)
113512
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113513
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113514
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (7.4ms)
113515
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (14.5ms)
113516
+ CACHE (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113517
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113518
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (7.2ms)
113519
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (13.2ms)
113520
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113521
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113522
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (7.3ms)
113523
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (13.2ms)
113524
+  (0.2ms) SELECT COUNT(*) FROM "dorsale_comments" WHERE (commentable_type LIKE '%CustomerVault%')
113525
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_contextual.html.slim (5.4ms)
113526
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/activity.slim within layouts/application (1307.9ms)
113527
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_flash.html.slim (5.0ms)
113528
+ Completed 200 OK in 1630ms (Views: 1535.6ms | ActiveRecord: 4.6ms)
113529
+
113530
+
113531
+ Started GET "/assets/dorsale/avatar.png" for ::1 at 2015-12-29 16:36:17 +0100
113532
+
113533
+
113534
+ Started GET "/dorsale/customer_vault/people/activity" for ::1 at 2015-12-29 16:36:18 +0100
113535
+ Processing by Dorsale::CustomerVault::PeopleController#activity as HTML
113536
+ Dorsale::CustomerVault::Individual Load (0.2ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals"
113537
+ Dorsale::CustomerVault::Corporation Load (0.3ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations"
113538
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/_breadcrumb.html.slim (6.2ms)
113539
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_new_people_contexts.html.slim (7.5ms)
113540
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/search/_form.html.slim (6.8ms)
113541
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_index_tabs.html.slim (17.3ms)
113542
+  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "dorsale_comments" WHERE (commentable_type LIKE '%CustomerVault%') LIMIT 50 OFFSET 0) subquery_for_count
113543
+ Dorsale::Comment Load (0.2ms) SELECT "dorsale_comments".* FROM "dorsale_comments" WHERE (commentable_type LIKE '%CustomerVault%') ORDER BY "dorsale_comments"."created_at" DESC, created_at DESC, id DESC LIMIT 50 OFFSET 0
113544
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113545
+ Dorsale::CustomerVault::Individual Load (0.2ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113546
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (27.0ms)
113547
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (36.1ms)
113548
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113549
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113550
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (7.1ms)
113551
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (12.0ms)
113552
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113553
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113554
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (6.2ms)
113555
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (11.1ms)
113556
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113557
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113558
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (6.1ms)
113559
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (10.7ms)
113560
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113561
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113562
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (6.7ms)
113563
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (10.8ms)
113564
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113565
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113566
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (16.2ms)
113567
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (20.5ms)
113568
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113569
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113570
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (7.0ms)
113571
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (11.2ms)
113572
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113573
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113574
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (7.3ms)
113575
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (11.8ms)
113576
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113577
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113578
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (6.9ms)
113579
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (11.3ms)
113580
+  (0.2ms) SELECT COUNT(*) FROM "dorsale_comments" WHERE (commentable_type LIKE '%CustomerVault%')
113581
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_contextual.html.slim (0.7ms)
113582
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/activity.slim within layouts/application (250.3ms)
113583
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_flash.html.slim (0.1ms)
113584
+ Completed 200 OK in 416ms (Views: 408.6ms | ActiveRecord: 1.7ms)
113585
+
113586
+
113587
+ Started GET "/assets/application.self.css?body=1" for ::1 at 2015-12-29 16:36:19 +0100
113588
+
113589
+
113590
+ Started GET "/assets/bootstrap.self.js?body=1" for ::1 at 2015-12-29 16:36:19 +0100
113591
+
113592
+
113593
+ Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-12-29 16:36:19 +0100
113594
+
113595
+
113596
+ Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-12-29 16:36:19 +0100
113597
+
113598
+
113599
+ Started GET "/assets/cocoon.self.js?body=1" for ::1 at 2015-12-29 16:36:19 +0100
113600
+
113601
+
113602
+ Started GET "/assets/turbolinks.self.js?body=1" for ::1 at 2015-12-29 16:36:19 +0100
113603
+
113604
+
113605
+ Started GET "/assets/selectize.self.js?body=1" for ::1 at 2015-12-29 16:36:19 +0100
113606
+
113607
+
113608
+ Started GET "/assets/accounting.self.js?body=1" for ::1 at 2015-12-29 16:36:19 +0100
113609
+
113610
+
113611
+ Started GET "/assets/bootstrap-datepicker/core.self.js?body=1" for ::1 at 2015-12-29 16:36:19 +0100
113612
+
113613
+
113614
+ Started GET "/assets/bootstrap-datepicker/locales/bootstrap-datepicker.fr.self.js?body=1" for ::1 at 2015-12-29 16:36:19 +0100
113615
+
113616
+
113617
+ Started GET "/assets/dorsale/alexandrie/all.self.js?body=1" for ::1 at 2015-12-29 16:36:19 +0100
113618
+
113619
+
113620
+ Started GET "/assets/dorsale/billing_machine/all.self.js?body=1" for ::1 at 2015-12-29 16:36:19 +0100
113621
+
113622
+
113623
+ Started GET "/assets/dorsale/comments.self.js?body=1" for ::1 at 2015-12-29 16:36:19 +0100
113624
+
113625
+
113626
+ Started GET "/assets/dorsale/customer_vault/all.self.js?body=1" for ::1 at 2015-12-29 16:36:19 +0100
113627
+
113628
+
113629
+ Started GET "/assets/dorsale/datepicker.self.js?body=1" for ::1 at 2015-12-29 16:36:19 +0100
113630
+
113631
+
113632
+ Started GET "/assets/dorsale/flyboy/all.self.js?body=1" for ::1 at 2015-12-29 16:36:19 +0100
113633
+
113634
+
113635
+ Started GET "/assets/dorsale/forms.self.js?body=1" for ::1 at 2015-12-29 16:36:19 +0100
113636
+
113637
+
113638
+ Started GET "/assets/dorsale/tabs_loader.self.js?body=1" for ::1 at 2015-12-29 16:36:19 +0100
113639
+
113640
+
113641
+ Started GET "/assets/dorsale/all.self.js?body=1" for ::1 at 2015-12-29 16:36:19 +0100
113642
+
113643
+
113644
+ Started GET "/assets/application.self.js?body=1" for ::1 at 2015-12-29 16:36:19 +0100
113645
+
113646
+
113647
+ Started GET "/assets/dorsale/avatar.png" for ::1 at 2015-12-29 16:36:19 +0100
113648
+
113649
+
113650
+ Started GET "/assets/font-awesome/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2015-12-29 16:36:19 +0100
113651
+
113652
+
113653
+ Started GET "/dorsale/billing_machine/quotations" for ::1 at 2015-12-29 16:36:52 +0100
113654
+ Processing by Dorsale::BillingMachine::QuotationsController#index as HTML
113655
+ Dorsale::CustomerVault::Individual Load (0.2ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals"
113656
+ Dorsale::CustomerVault::Corporation Load (0.1ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations"
113657
+ Dorsale::BillingMachine::Quotation Load (0.3ms) SELECT "dorsale_billing_machine_quotations".* FROM "dorsale_billing_machine_quotations" WHERE "dorsale_billing_machine_quotations"."state" = ? ORDER BY "dorsale_billing_machine_quotations"."unique_index" DESC [["state", "accepted"]]
113658
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/_filters.html.slim (8.7ms)
113659
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/_header_infos.html.slim (6.7ms)
113660
+ Dorsale::BillingMachine::Quotation Load (0.3ms) SELECT "dorsale_billing_machine_quotations".* FROM "dorsale_billing_machine_quotations" WHERE "dorsale_billing_machine_quotations"."state" = ? ORDER BY "dorsale_billing_machine_quotations"."unique_index" DESC LIMIT 50 OFFSET 0 [["state", "accepted"]]
113661
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/_list.html.slim (3.6ms)
113662
+  (0.2ms) SELECT COUNT(*) FROM "dorsale_billing_machine_quotations" WHERE "dorsale_billing_machine_quotations"."state" = ? [["state", "accepted"]]
113663
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/index.html.slim within layouts/application (47.5ms)
113664
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_flash.html.slim (0.1ms)
113665
+ Completed 200 OK in 235ms (Views: 202.9ms | ActiveRecord: 1.4ms)
113666
+
113667
+
113668
+ Started GET "/dorsale/customer_vault/people/activity" for ::1 at 2015-12-29 16:39:08 +0100
113669
+ Processing by Dorsale::CustomerVault::PeopleController#activity as HTML
113670
+ Dorsale::CustomerVault::Individual Load (0.7ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals"
113671
+ Dorsale::CustomerVault::Corporation Load (0.2ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations"
113672
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/_breadcrumb.html.slim (951.5ms)
113673
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_new_people_contexts.html.slim (2.9ms)
113674
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/search/_form.html.slim (0.2ms)
113675
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_index_tabs.html.slim (5.9ms)
113676
+  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "dorsale_comments" WHERE (commentable_type LIKE '%CustomerVault%') LIMIT 50 OFFSET 0) subquery_for_count
113677
+ Dorsale::Comment Load (0.2ms) SELECT "dorsale_comments".* FROM "dorsale_comments" WHERE (commentable_type LIKE '%CustomerVault%') ORDER BY "dorsale_comments"."created_at" DESC, created_at DESC, id DESC LIMIT 50 OFFSET 0
113678
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113679
+ Dorsale::CustomerVault::Individual Load (0.2ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113680
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (20.2ms)
113681
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (24.1ms)
113682
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113683
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113684
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (6.5ms)
113685
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (10.8ms)
113686
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113687
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113688
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (7.1ms)
113689
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (11.6ms)
113690
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113691
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113692
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (6.0ms)
113693
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (10.3ms)
113694
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113695
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113696
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (6.6ms)
113697
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (11.3ms)
113698
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113699
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113700
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (6.6ms)
113701
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (11.2ms)
113702
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113703
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113704
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (7.2ms)
113705
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (12.4ms)
113706
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113707
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113708
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (6.9ms)
113709
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (14.7ms)
113710
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113711
+ CACHE (0.1ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113712
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (6.7ms)
113713
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (11.7ms)
113714
+  (0.2ms) SELECT COUNT(*) FROM "dorsale_comments" WHERE (commentable_type LIKE '%CustomerVault%')
113715
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_contextual.html.slim (0.6ms)
113716
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/activity.slim within layouts/application (1157.7ms)
113717
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_flash.html.slim (0.1ms)
113718
+ Completed 200 OK in 1420ms (Views: 1332.4ms | ActiveRecord: 3.6ms)
113719
+
113720
+
113721
+ Started GET "/assets/application.self.css?body=1" for ::1 at 2015-12-29 16:39:09 +0100
113722
+
113723
+
113724
+ Started GET "/assets/cocoon.self.js?body=1" for ::1 at 2015-12-29 16:39:09 +0100
113725
+
113726
+
113727
+ Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-12-29 16:39:09 +0100
113728
+
113729
+
113730
+ Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-12-29 16:39:09 +0100
113731
+
113732
+
113733
+ Started GET "/assets/bootstrap.self.js?body=1" for ::1 at 2015-12-29 16:39:09 +0100
113734
+
113735
+
113736
+ Started GET "/assets/turbolinks.self.js?body=1" for ::1 at 2015-12-29 16:39:09 +0100
113737
+
113738
+
113739
+ Started GET "/assets/accounting.self.js?body=1" for ::1 at 2015-12-29 16:39:09 +0100
113740
+
113741
+
113742
+ Started GET "/assets/selectize.self.js?body=1" for ::1 at 2015-12-29 16:39:09 +0100
113743
+
113744
+
113745
+ Started GET "/assets/bootstrap-datepicker/core.self.js?body=1" for ::1 at 2015-12-29 16:39:10 +0100
113746
+
113747
+
113748
+ Started GET "/assets/bootstrap-datepicker/locales/bootstrap-datepicker.fr.self.js?body=1" for ::1 at 2015-12-29 16:39:10 +0100
113749
+
113750
+
113751
+ Started GET "/assets/dorsale/alexandrie/all.self.js?body=1" for ::1 at 2015-12-29 16:39:10 +0100
113752
+
113753
+
113754
+ Started GET "/assets/dorsale/billing_machine/all.self.js?body=1" for ::1 at 2015-12-29 16:39:10 +0100
113755
+
113756
+
113757
+ Started GET "/assets/dorsale/comments.self.js?body=1" for ::1 at 2015-12-29 16:39:10 +0100
113758
+
113759
+
113760
+ Started GET "/assets/dorsale/customer_vault/all.self.js?body=1" for ::1 at 2015-12-29 16:39:10 +0100
113761
+
113762
+
113763
+ Started GET "/assets/dorsale/datepicker.self.js?body=1" for ::1 at 2015-12-29 16:39:10 +0100
113764
+
113765
+
113766
+ Started GET "/assets/dorsale/flyboy/all.self.js?body=1" for ::1 at 2015-12-29 16:39:10 +0100
113767
+
113768
+
113769
+ Started GET "/assets/dorsale/forms.self.js?body=1" for ::1 at 2015-12-29 16:39:10 +0100
113770
+
113771
+
113772
+ Started GET "/assets/dorsale/tabs_loader.self.js?body=1" for ::1 at 2015-12-29 16:39:10 +0100
113773
+
113774
+
113775
+ Started GET "/assets/dorsale/all.self.js?body=1" for ::1 at 2015-12-29 16:39:10 +0100
113776
+
113777
+
113778
+ Started GET "/assets/application.self.js?body=1" for ::1 at 2015-12-29 16:39:10 +0100
113779
+
113780
+
113781
+ Started GET "/assets/dorsale/avatar.png" for ::1 at 2015-12-29 16:39:10 +0100
113782
+
113783
+
113784
+ Started GET "/assets/font-awesome/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2015-12-29 16:39:10 +0100
113785
+
113786
+
113787
+ Started GET "/dorsale/customer_vault/people/activity" for ::1 at 2015-12-29 16:39:49 +0100
113788
+ Processing by Dorsale::CustomerVault::PeopleController#activity as HTML
113789
+ Dorsale::CustomerVault::Individual Load (0.2ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals"
113790
+ Dorsale::CustomerVault::Corporation Load (0.2ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations"
113791
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/_breadcrumb.html.slim (2.4ms)
113792
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_new_people_contexts.html.slim (7.0ms)
113793
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/search/_form.html.slim (0.3ms)
113794
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_index_tabs.html.slim (5.3ms)
113795
+  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "dorsale_comments" WHERE (commentable_type LIKE '%CustomerVault%') LIMIT 50 OFFSET 0) subquery_for_count
113796
+ Dorsale::Comment Load (0.2ms) SELECT "dorsale_comments".* FROM "dorsale_comments" WHERE (commentable_type LIKE '%CustomerVault%') ORDER BY "dorsale_comments"."created_at" DESC, created_at DESC, id DESC LIMIT 50 OFFSET 0
113797
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113798
+ Dorsale::CustomerVault::Individual Load (0.1ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113799
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (8.4ms)
113800
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (13.9ms)
113801
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113802
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113803
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (6.8ms)
113804
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (13.7ms)
113805
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113806
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113807
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (6.3ms)
113808
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (11.1ms)
113809
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113810
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113811
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (6.4ms)
113812
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (10.8ms)
113813
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113814
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113815
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (6.6ms)
113816
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (11.3ms)
113817
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113818
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113819
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (6.4ms)
113820
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (11.1ms)
113821
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113822
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113823
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (6.6ms)
113824
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (11.5ms)
113825
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113826
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113827
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (7.2ms)
113828
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (13.3ms)
113829
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
113830
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
113831
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (7.1ms)
113832
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (12.1ms)
113833
+  (0.2ms) SELECT COUNT(*) FROM "dorsale_comments" WHERE (commentable_type LIKE '%CustomerVault%')
113834
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_contextual.html.slim (0.6ms)
113835
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/activity.slim within layouts/application (196.5ms)
113836
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_flash.html.slim (0.1ms)
113837
+ Completed 200 OK in 368ms (Views: 362.4ms | ActiveRecord: 1.5ms)
113838
+
113839
+
113840
+ Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-12-29 16:39:49 +0100
113841
+
113842
+
113843
+ Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-12-29 16:39:49 +0100
113844
+
113845
+
113846
+ Started GET "/assets/turbolinks.self.js?body=1" for ::1 at 2015-12-29 16:39:49 +0100
113847
+
113848
+
113849
+ Started GET "/assets/bootstrap.self.js?body=1" for ::1 at 2015-12-29 16:39:49 +0100
113850
+
113851
+
113852
+ Started GET "/assets/cocoon.self.js?body=1" for ::1 at 2015-12-29 16:39:49 +0100
113853
+
113854
+
113855
+ Started GET "/assets/selectize.self.js?body=1" for ::1 at 2015-12-29 16:39:49 +0100
113856
+
113857
+
113858
+ Started GET "/assets/application.self.css?body=1" for ::1 at 2015-12-29 16:39:49 +0100
113859
+
113860
+
113861
+ Started GET "/assets/accounting.self.js?body=1" for ::1 at 2015-12-29 16:39:49 +0100
113862
+
113863
+
113864
+ Started GET "/assets/bootstrap-datepicker/core.self.js?body=1" for ::1 at 2015-12-29 16:39:49 +0100
113865
+
113866
+
113867
+ Started GET "/assets/bootstrap-datepicker/locales/bootstrap-datepicker.fr.self.js?body=1" for ::1 at 2015-12-29 16:39:49 +0100
113868
+
113869
+
113870
+ Started GET "/assets/dorsale/alexandrie/all.self.js?body=1" for ::1 at 2015-12-29 16:39:49 +0100
113871
+
113872
+
113873
+ Started GET "/assets/dorsale/billing_machine/all.self.js?body=1" for ::1 at 2015-12-29 16:39:50 +0100
113874
+
113875
+
113876
+ Started GET "/assets/dorsale/comments.self.js?body=1" for ::1 at 2015-12-29 16:39:50 +0100
113877
+
113878
+
113879
+ Started GET "/assets/dorsale/datepicker.self.js?body=1" for ::1 at 2015-12-29 16:39:50 +0100
113880
+
113881
+
113882
+ Started GET "/assets/dorsale/customer_vault/all.self.js?body=1" for ::1 at 2015-12-29 16:39:50 +0100
113883
+
113884
+
113885
+ Started GET "/assets/dorsale/flyboy/all.self.js?body=1" for ::1 at 2015-12-29 16:39:50 +0100
113886
+
113887
+
113888
+ Started GET "/assets/dorsale/forms.self.js?body=1" for ::1 at 2015-12-29 16:39:50 +0100
113889
+
113890
+
113891
+ Started GET "/assets/dorsale/tabs_loader.self.js?body=1" for ::1 at 2015-12-29 16:39:50 +0100
113892
+
113893
+
113894
+ Started GET "/assets/dorsale/all.self.js?body=1" for ::1 at 2015-12-29 16:39:50 +0100
113895
+
113896
+
113897
+ Started GET "/assets/application.self.js?body=1" for ::1 at 2015-12-29 16:39:50 +0100
113898
+
113899
+
113900
+ Started GET "/assets/dorsale/avatar.png" for ::1 at 2015-12-29 16:39:50 +0100
113901
+
113902
+
113903
+ Started GET "/assets/font-awesome/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2015-12-29 16:39:50 +0100
113904
+
113905
+
113906
+ Started GET "/dorsale/customer_vault/people/activity" for ::1 at 2015-12-29 16:40:04 +0100
113907
+ Processing by Dorsale::CustomerVault::PeopleController#activity as HTML
113908
+ Dorsale::CustomerVault::Individual Load (0.2ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals"
113909
+ Dorsale::CustomerVault::Corporation Load (0.2ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations"
113910
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/_breadcrumb.html.slim (1.5ms)
113911
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_new_people_contexts.html.slim (5.5ms)
113912
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/activity.slim within layouts/application (16.2ms)
113913
+ Completed 500 Internal Server Error in 61ms (ActiveRecord: 0.4ms)
113914
+
113915
+ NotImplementedError (Dorsale::CustomerVault::Person is an abstract class and cannot be instantiated.):
113916
+ activerecord (4.2.4) lib/active_record/inheritance.rb:50:in `new'
113917
+ /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_new_people_contexts.html.slim:2:in `___sers_benoit_www_agilidee_dorsale_app_views_dorsale_customer_vault_people__new_people_contexts_html_slim__2181581604960023165_70163026681180'
113918
+ actionview (4.2.4) lib/action_view/template.rb:145:in `block in render'
113919
+ activesupport (4.2.4) lib/active_support/notifications.rb:166:in `instrument'
113920
+ actionview (4.2.4) lib/action_view/template.rb:333:in `instrument'
113921
+ actionview (4.2.4) lib/action_view/template.rb:143:in `render'
113922
+ actionview (4.2.4) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial'
113923
+ actionview (4.2.4) lib/action_view/renderer/partial_renderer.rb:310:in `block in render'
113924
+ actionview (4.2.4) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
113925
+ activesupport (4.2.4) lib/active_support/notifications.rb:164:in `block in instrument'
113926
+ activesupport (4.2.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
113927
+ activesupport (4.2.4) lib/active_support/notifications.rb:164:in `instrument'
113928
+ actionview (4.2.4) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
113929
+ actionview (4.2.4) lib/action_view/renderer/partial_renderer.rb:309:in `render'
113930
+ actionview (4.2.4) lib/action_view/renderer/renderer.rb:47:in `render_partial'
113931
+ actionview (4.2.4) lib/action_view/helpers/rendering_helper.rb:35:in `render'
113932
+ /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/activity.slim:6:in `block in ___sers_benoit_www_agilidee_dorsale_app_views_dorsale_customer_vault_people_activity_slim___1024281554618017982_70163028947440'
113933
+ actionview (4.2.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture'
113934
+ actionview (4.2.4) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer'
113935
+ actionview (4.2.4) lib/action_view/helpers/capture_helper.rb:38:in `capture'
113936
+ actionview (4.2.4) lib/action_view/helpers/capture_helper.rb:152:in `content_for'
113937
+ /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/activity.slim:5:in `___sers_benoit_www_agilidee_dorsale_app_views_dorsale_customer_vault_people_activity_slim___1024281554618017982_70163028947440'
113938
+ actionview (4.2.4) lib/action_view/template.rb:145:in `block in render'
113939
+ activesupport (4.2.4) lib/active_support/notifications.rb:166:in `instrument'
113940
+ actionview (4.2.4) lib/action_view/template.rb:333:in `instrument'
113941
+ actionview (4.2.4) lib/action_view/template.rb:143:in `render'
113942
+ actionview (4.2.4) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
113943
+ actionview (4.2.4) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
113944
+ activesupport (4.2.4) lib/active_support/notifications.rb:164:in `block in instrument'
113945
+ activesupport (4.2.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
113946
+ activesupport (4.2.4) lib/active_support/notifications.rb:164:in `instrument'
113947
+ actionview (4.2.4) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
113948
+ actionview (4.2.4) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
113949
+ actionview (4.2.4) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
113950
+ actionview (4.2.4) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
113951
+ actionview (4.2.4) lib/action_view/renderer/template_renderer.rb:14:in `render'
113952
+ actionview (4.2.4) lib/action_view/renderer/renderer.rb:42:in `render_template'
113953
+ actionview (4.2.4) lib/action_view/renderer/renderer.rb:23:in `render'
113954
+ actionview (4.2.4) lib/action_view/rendering.rb:100:in `_render_template'
113955
+ actionpack (4.2.4) lib/action_controller/metal/streaming.rb:217:in `_render_template'
113956
+ actionview (4.2.4) lib/action_view/rendering.rb:83:in `render_to_body'
113957
+ actionpack (4.2.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
113958
+ actionpack (4.2.4) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
113959
+ actionpack (4.2.4) lib/abstract_controller/rendering.rb:25:in `render'
113960
+ actionpack (4.2.4) lib/action_controller/metal/rendering.rb:16:in `render'
113961
+ actionpack (4.2.4) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
113962
+ activesupport (4.2.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
113963
+ /Users/benoit/.rbenv/versions/2.2.3/lib/ruby/2.2.0/benchmark.rb:303:in `realtime'
113964
+ activesupport (4.2.4) lib/active_support/core_ext/benchmark.rb:12:in `ms'
113965
+ actionpack (4.2.4) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
113966
+ actionpack (4.2.4) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
113967
+ activerecord (4.2.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
113968
+ actionpack (4.2.4) lib/action_controller/metal/instrumentation.rb:43:in `render'
113969
+ actionpack (4.2.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
113970
+ actionpack (4.2.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
113971
+ actionpack (4.2.4) lib/abstract_controller/base.rb:198:in `process_action'
113972
+ actionpack (4.2.4) lib/action_controller/metal/rendering.rb:10:in `process_action'
113973
+ actionpack (4.2.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
113974
+ activesupport (4.2.4) lib/active_support/callbacks.rb:117:in `call'
113975
+ activesupport (4.2.4) lib/active_support/callbacks.rb:117:in `call'
113976
+ activesupport (4.2.4) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
113977
+ activesupport (4.2.4) lib/active_support/callbacks.rb:505:in `call'
113978
+ activesupport (4.2.4) lib/active_support/callbacks.rb:505:in `call'
113979
+ activesupport (4.2.4) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
113980
+ activesupport (4.2.4) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
113981
+ activesupport (4.2.4) lib/active_support/callbacks.rb:81:in `run_callbacks'
113982
+ actionpack (4.2.4) lib/abstract_controller/callbacks.rb:19:in `process_action'
113983
+ actionpack (4.2.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
113984
+ actionpack (4.2.4) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
113985
+ activesupport (4.2.4) lib/active_support/notifications.rb:164:in `block in instrument'
113986
+ activesupport (4.2.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
113987
+ activesupport (4.2.4) lib/active_support/notifications.rb:164:in `instrument'
113988
+ actionpack (4.2.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
113989
+ actionpack (4.2.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
113990
+ activerecord (4.2.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
113991
+ actionpack (4.2.4) lib/abstract_controller/base.rb:137:in `process'
113992
+ actionview (4.2.4) lib/action_view/rendering.rb:30:in `process'
113993
+ actionpack (4.2.4) lib/action_controller/metal.rb:196:in `dispatch'
113994
+ actionpack (4.2.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
113995
+ actionpack (4.2.4) lib/action_controller/metal.rb:237:in `block in action'
113996
+ actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:76:in `call'
113997
+ actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:76:in `dispatch'
113998
+ actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:45:in `serve'
113999
+ actionpack (4.2.4) lib/action_dispatch/journey/router.rb:43:in `block in serve'
114000
+ actionpack (4.2.4) lib/action_dispatch/journey/router.rb:30:in `each'
114001
+ actionpack (4.2.4) lib/action_dispatch/journey/router.rb:30:in `serve'
114002
+ actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:821:in `call'
114003
+ railties (4.2.4) lib/rails/engine.rb:518:in `call'
114004
+ railties (4.2.4) lib/rails/railtie.rb:194:in `public_send'
114005
+ railties (4.2.4) lib/rails/railtie.rb:194:in `method_missing'
114006
+ actionpack (4.2.4) lib/action_dispatch/routing/mapper.rb:51:in `serve'
114007
+ actionpack (4.2.4) lib/action_dispatch/journey/router.rb:43:in `block in serve'
114008
+ actionpack (4.2.4) lib/action_dispatch/journey/router.rb:30:in `each'
114009
+ actionpack (4.2.4) lib/action_dispatch/journey/router.rb:30:in `serve'
114010
+ actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:821:in `call'
114011
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
114012
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
114013
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
114014
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
114015
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
114016
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
114017
+ actionpack (4.2.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
114018
+ actionpack (4.2.4) lib/action_dispatch/middleware/flash.rb:260:in `call'
114019
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
114020
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
114021
+ actionpack (4.2.4) lib/action_dispatch/middleware/cookies.rb:560:in `call'
114022
+ activerecord (4.2.4) lib/active_record/query_cache.rb:36:in `call'
114023
+ activerecord (4.2.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
114024
+ activerecord (4.2.4) lib/active_record/migration.rb:377:in `call'
114025
+ actionpack (4.2.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
114026
+ activesupport (4.2.4) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
114027
+ activesupport (4.2.4) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
114028
+ activesupport (4.2.4) lib/active_support/callbacks.rb:81:in `run_callbacks'
114029
+ actionpack (4.2.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
114030
+ actionpack (4.2.4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
114031
+ actionpack (4.2.4) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
114032
+ actionpack (4.2.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
114033
+ actionpack (4.2.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
114034
+ railties (4.2.4) lib/rails/rack/logger.rb:38:in `call_app'
114035
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `block in call'
114036
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
114037
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:26:in `tagged'
114038
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `tagged'
114039
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `call'
114040
+ actionpack (4.2.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
114041
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
114042
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
114043
+ activesupport (4.2.4) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
114044
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
114045
+ actionpack (4.2.4) lib/action_dispatch/middleware/static.rb:116:in `call'
114046
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
114047
+ railties (4.2.4) lib/rails/engine.rb:518:in `call'
114048
+ railties (4.2.4) lib/rails/application.rb:165:in `call'
114049
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
114050
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
114051
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
114052
+ /Users/benoit/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
114053
+ /Users/benoit/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
114054
+ /Users/benoit/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
114055
+
114056
+
114057
+ Rendered /Users/benoit/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (10.7ms)
114058
+ Rendered /Users/benoit/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.2ms)
114059
+ Rendered /Users/benoit/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
114060
+ Rendered /Users/benoit/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (88.2ms)
114061
+
114062
+
114063
+ Started GET "/dorsale/customer_vault/people/activity" for ::1 at 2015-12-29 16:40:08 +0100
114064
+ Processing by Dorsale::CustomerVault::PeopleController#activity as HTML
114065
+ Dorsale::CustomerVault::Individual Load (0.3ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals"
114066
+ Dorsale::CustomerVault::Corporation Load (0.1ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations"
114067
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/_breadcrumb.html.slim (1.9ms)
114068
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_new_people_contexts.html.slim (11.5ms)
114069
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/activity.slim within layouts/application (23.4ms)
114070
+ Completed 500 Internal Server Error in 79ms (ActiveRecord: 0.4ms)
114071
+
114072
+ ActionView::Template::Error (undefined method `model_name' for Class:Class):
114073
+ 1: .well.text-center
114074
+ 2: = info ::Dorsale::CustomerVault::Person, :count, people.count
114075
+ 3:
114076
+ 4: .individual-context: .context
114077
+ 5: = context_icon :user
114078
+ /Users/benoit/www/agilidee/dorsale/app/helpers/dorsale/text_helper.rb:83:in `info'
114079
+ /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_new_people_contexts.html.slim:2:in `___sers_benoit_www_agilidee_dorsale_app_views_dorsale_customer_vault_people__new_people_contexts_html_slim__2181581604960023165_70162963253960'
114080
+ actionview (4.2.4) lib/action_view/template.rb:145:in `block in render'
114081
+ activesupport (4.2.4) lib/active_support/notifications.rb:166:in `instrument'
114082
+ actionview (4.2.4) lib/action_view/template.rb:333:in `instrument'
114083
+ actionview (4.2.4) lib/action_view/template.rb:143:in `render'
114084
+ actionview (4.2.4) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial'
114085
+ actionview (4.2.4) lib/action_view/renderer/partial_renderer.rb:310:in `block in render'
114086
+ actionview (4.2.4) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
114087
+ activesupport (4.2.4) lib/active_support/notifications.rb:164:in `block in instrument'
114088
+ activesupport (4.2.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
114089
+ activesupport (4.2.4) lib/active_support/notifications.rb:164:in `instrument'
114090
+ actionview (4.2.4) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
114091
+ actionview (4.2.4) lib/action_view/renderer/partial_renderer.rb:309:in `render'
114092
+ actionview (4.2.4) lib/action_view/renderer/renderer.rb:47:in `render_partial'
114093
+ actionview (4.2.4) lib/action_view/helpers/rendering_helper.rb:35:in `render'
114094
+ /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/activity.slim:6:in `block in ___sers_benoit_www_agilidee_dorsale_app_views_dorsale_customer_vault_people_activity_slim___1024281554618017982_70163028947440'
114095
+ actionview (4.2.4) lib/action_view/helpers/capture_helper.rb:38:in `block in capture'
114096
+ actionview (4.2.4) lib/action_view/helpers/capture_helper.rb:202:in `with_output_buffer'
114097
+ actionview (4.2.4) lib/action_view/helpers/capture_helper.rb:38:in `capture'
114098
+ actionview (4.2.4) lib/action_view/helpers/capture_helper.rb:152:in `content_for'
114099
+ /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/activity.slim:5:in `___sers_benoit_www_agilidee_dorsale_app_views_dorsale_customer_vault_people_activity_slim___1024281554618017982_70163028947440'
114100
+ actionview (4.2.4) lib/action_view/template.rb:145:in `block in render'
114101
+ activesupport (4.2.4) lib/active_support/notifications.rb:166:in `instrument'
114102
+ actionview (4.2.4) lib/action_view/template.rb:333:in `instrument'
114103
+ actionview (4.2.4) lib/action_view/template.rb:143:in `render'
114104
+ actionview (4.2.4) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
114105
+ actionview (4.2.4) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
114106
+ activesupport (4.2.4) lib/active_support/notifications.rb:164:in `block in instrument'
114107
+ activesupport (4.2.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
114108
+ activesupport (4.2.4) lib/active_support/notifications.rb:164:in `instrument'
114109
+ actionview (4.2.4) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
114110
+ actionview (4.2.4) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
114111
+ actionview (4.2.4) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
114112
+ actionview (4.2.4) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
114113
+ actionview (4.2.4) lib/action_view/renderer/template_renderer.rb:14:in `render'
114114
+ actionview (4.2.4) lib/action_view/renderer/renderer.rb:42:in `render_template'
114115
+ actionview (4.2.4) lib/action_view/renderer/renderer.rb:23:in `render'
114116
+ actionview (4.2.4) lib/action_view/rendering.rb:100:in `_render_template'
114117
+ actionpack (4.2.4) lib/action_controller/metal/streaming.rb:217:in `_render_template'
114118
+ actionview (4.2.4) lib/action_view/rendering.rb:83:in `render_to_body'
114119
+ actionpack (4.2.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
114120
+ actionpack (4.2.4) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
114121
+ actionpack (4.2.4) lib/abstract_controller/rendering.rb:25:in `render'
114122
+ actionpack (4.2.4) lib/action_controller/metal/rendering.rb:16:in `render'
114123
+ actionpack (4.2.4) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
114124
+ activesupport (4.2.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
114125
+ /Users/benoit/.rbenv/versions/2.2.3/lib/ruby/2.2.0/benchmark.rb:303:in `realtime'
114126
+ activesupport (4.2.4) lib/active_support/core_ext/benchmark.rb:12:in `ms'
114127
+ actionpack (4.2.4) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
114128
+ actionpack (4.2.4) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
114129
+ activerecord (4.2.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
114130
+ actionpack (4.2.4) lib/action_controller/metal/instrumentation.rb:43:in `render'
114131
+ actionpack (4.2.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
114132
+ actionpack (4.2.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
114133
+ actionpack (4.2.4) lib/abstract_controller/base.rb:198:in `process_action'
114134
+ actionpack (4.2.4) lib/action_controller/metal/rendering.rb:10:in `process_action'
114135
+ actionpack (4.2.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
114136
+ activesupport (4.2.4) lib/active_support/callbacks.rb:117:in `call'
114137
+ activesupport (4.2.4) lib/active_support/callbacks.rb:117:in `call'
114138
+ activesupport (4.2.4) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
114139
+ activesupport (4.2.4) lib/active_support/callbacks.rb:505:in `call'
114140
+ activesupport (4.2.4) lib/active_support/callbacks.rb:505:in `call'
114141
+ activesupport (4.2.4) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
114142
+ activesupport (4.2.4) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
114143
+ activesupport (4.2.4) lib/active_support/callbacks.rb:81:in `run_callbacks'
114144
+ actionpack (4.2.4) lib/abstract_controller/callbacks.rb:19:in `process_action'
114145
+ actionpack (4.2.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
114146
+ actionpack (4.2.4) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
114147
+ activesupport (4.2.4) lib/active_support/notifications.rb:164:in `block in instrument'
114148
+ activesupport (4.2.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
114149
+ activesupport (4.2.4) lib/active_support/notifications.rb:164:in `instrument'
114150
+ actionpack (4.2.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
114151
+ actionpack (4.2.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
114152
+ activerecord (4.2.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
114153
+ actionpack (4.2.4) lib/abstract_controller/base.rb:137:in `process'
114154
+ actionview (4.2.4) lib/action_view/rendering.rb:30:in `process'
114155
+ actionpack (4.2.4) lib/action_controller/metal.rb:196:in `dispatch'
114156
+ actionpack (4.2.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
114157
+ actionpack (4.2.4) lib/action_controller/metal.rb:237:in `block in action'
114158
+ actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:76:in `call'
114159
+ actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:76:in `dispatch'
114160
+ actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:45:in `serve'
114161
+ actionpack (4.2.4) lib/action_dispatch/journey/router.rb:43:in `block in serve'
114162
+ actionpack (4.2.4) lib/action_dispatch/journey/router.rb:30:in `each'
114163
+ actionpack (4.2.4) lib/action_dispatch/journey/router.rb:30:in `serve'
114164
+ actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:821:in `call'
114165
+ railties (4.2.4) lib/rails/engine.rb:518:in `call'
114166
+ railties (4.2.4) lib/rails/railtie.rb:194:in `public_send'
114167
+ railties (4.2.4) lib/rails/railtie.rb:194:in `method_missing'
114168
+ actionpack (4.2.4) lib/action_dispatch/routing/mapper.rb:51:in `serve'
114169
+ actionpack (4.2.4) lib/action_dispatch/journey/router.rb:43:in `block in serve'
114170
+ actionpack (4.2.4) lib/action_dispatch/journey/router.rb:30:in `each'
114171
+ actionpack (4.2.4) lib/action_dispatch/journey/router.rb:30:in `serve'
114172
+ actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:821:in `call'
114173
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
114174
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
114175
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
114176
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
114177
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
114178
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
114179
+ actionpack (4.2.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
114180
+ actionpack (4.2.4) lib/action_dispatch/middleware/flash.rb:260:in `call'
114181
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
114182
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
114183
+ actionpack (4.2.4) lib/action_dispatch/middleware/cookies.rb:560:in `call'
114184
+ activerecord (4.2.4) lib/active_record/query_cache.rb:36:in `call'
114185
+ activerecord (4.2.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
114186
+ activerecord (4.2.4) lib/active_record/migration.rb:377:in `call'
114187
+ actionpack (4.2.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
114188
+ activesupport (4.2.4) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
114189
+ activesupport (4.2.4) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
114190
+ activesupport (4.2.4) lib/active_support/callbacks.rb:81:in `run_callbacks'
114191
+ actionpack (4.2.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
114192
+ actionpack (4.2.4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
114193
+ actionpack (4.2.4) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
114194
+ actionpack (4.2.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
114195
+ actionpack (4.2.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
114196
+ railties (4.2.4) lib/rails/rack/logger.rb:38:in `call_app'
114197
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `block in call'
114198
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
114199
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:26:in `tagged'
114200
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `tagged'
114201
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `call'
114202
+ actionpack (4.2.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
114203
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
114204
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
114205
+ activesupport (4.2.4) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
114206
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
114207
+ actionpack (4.2.4) lib/action_dispatch/middleware/static.rb:116:in `call'
114208
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
114209
+ railties (4.2.4) lib/rails/engine.rb:518:in `call'
114210
+ railties (4.2.4) lib/rails/application.rb:165:in `call'
114211
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
114212
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
114213
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
114214
+ /Users/benoit/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
114215
+ /Users/benoit/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
114216
+ /Users/benoit/.rbenv/versions/2.2.3/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
114217
+
114218
+
114219
+ Rendered /Users/benoit/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (10.5ms)
114220
+ Rendered /Users/benoit/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms)
114221
+ Rendered /Users/benoit/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
114222
+ Rendered /Users/benoit/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (81.3ms)
114223
+
114224
+
114225
+ Started GET "/dorsale/customer_vault/people/activity" for ::1 at 2015-12-29 16:49:37 +0100
114226
+ Processing by Dorsale::CustomerVault::PeopleController#activity as HTML
114227
+ Dorsale::CustomerVault::Individual Load (0.7ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals"
114228
+ Dorsale::CustomerVault::Corporation Load (0.2ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations"
114229
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/_breadcrumb.html.slim (1.9ms)
114230
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_new_people_contexts.html.slim (2.1ms)
114231
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/search/_form.html.slim (0.3ms)
114232
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_index_tabs.html.slim (5.5ms)
114233
+  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "dorsale_comments" WHERE (commentable_type LIKE '%CustomerVault%') LIMIT 50 OFFSET 0) subquery_for_count
114234
+ Dorsale::Comment Load (0.4ms) SELECT "dorsale_comments".* FROM "dorsale_comments" WHERE (commentable_type LIKE '%CustomerVault%') ORDER BY "dorsale_comments"."created_at" DESC, created_at DESC, id DESC LIMIT 50 OFFSET 0
114235
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
114236
+ Dorsale::CustomerVault::Individual Load (0.2ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
114237
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (19.0ms)
114238
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (23.6ms)
114239
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
114240
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
114241
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (7.3ms)
114242
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (11.3ms)
114243
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
114244
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
114245
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (6.6ms)
114246
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (10.5ms)
114247
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
114248
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
114249
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (7.2ms)
114250
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (11.5ms)
114251
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
114252
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
114253
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (6.2ms)
114254
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (10.4ms)
114255
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
114256
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
114257
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (6.1ms)
114258
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (10.3ms)
114259
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
114260
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
114261
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (6.6ms)
114262
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (11.3ms)
114263
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
114264
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
114265
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (6.9ms)
114266
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (11.4ms)
114267
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
114268
+ CACHE (0.0ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals" WHERE "dorsale_customer_vault_individuals"."id" = ? LIMIT 1 [["id", 1]]
114269
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/comments/_comment.html.slim (6.1ms)
114270
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/_comment.html.slim (10.6ms)
114271
+  (0.2ms) SELECT COUNT(*) FROM "dorsale_comments" WHERE (commentable_type LIKE '%CustomerVault%')
114272
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_contextual.html.slim (0.6ms)
114273
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/customer_vault/people/activity.slim within layouts/application (219.7ms)
114274
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_flash.html.slim (0.1ms)
114275
+ Completed 200 OK in 468ms (Views: 375.9ms | ActiveRecord: 3.7ms)
114276
+
114277
+
114278
+ Started GET "/assets/application.self.css?body=1" for ::1 at 2015-12-29 16:49:38 +0100
114279
+
114280
+
114281
+ Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-12-29 16:49:38 +0100
114282
+
114283
+
114284
+ Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-12-29 16:49:38 +0100
114285
+
114286
+
114287
+ Started GET "/assets/turbolinks.self.js?body=1" for ::1 at 2015-12-29 16:49:38 +0100
114288
+
114289
+
114290
+ Started GET "/assets/cocoon.self.js?body=1" for ::1 at 2015-12-29 16:49:38 +0100
114291
+
114292
+
114293
+ Started GET "/assets/bootstrap.self.js?body=1" for ::1 at 2015-12-29 16:49:38 +0100
114294
+
114295
+
114296
+ Started GET "/assets/accounting.self.js?body=1" for ::1 at 2015-12-29 16:49:38 +0100
114297
+
114298
+
114299
+ Started GET "/assets/selectize.self.js?body=1" for ::1 at 2015-12-29 16:49:38 +0100
114300
+
114301
+
114302
+ Started GET "/assets/bootstrap-datepicker/core.self.js?body=1" for ::1 at 2015-12-29 16:49:38 +0100
114303
+
114304
+
114305
+ Started GET "/assets/bootstrap-datepicker/locales/bootstrap-datepicker.fr.self.js?body=1" for ::1 at 2015-12-29 16:49:38 +0100
114306
+
114307
+
114308
+ Started GET "/assets/dorsale/alexandrie/all.self.js?body=1" for ::1 at 2015-12-29 16:49:38 +0100
114309
+
114310
+
114311
+ Started GET "/assets/dorsale/billing_machine/all.self.js?body=1" for ::1 at 2015-12-29 16:49:38 +0100
114312
+
114313
+
114314
+ Started GET "/assets/dorsale/comments.self.js?body=1" for ::1 at 2015-12-29 16:49:38 +0100
114315
+
114316
+
114317
+ Started GET "/assets/dorsale/customer_vault/all.self.js?body=1" for ::1 at 2015-12-29 16:49:38 +0100
114318
+
114319
+
114320
+ Started GET "/assets/dorsale/datepicker.self.js?body=1" for ::1 at 2015-12-29 16:49:38 +0100
114321
+
114322
+
114323
+ Started GET "/assets/dorsale/flyboy/all.self.js?body=1" for ::1 at 2015-12-29 16:49:38 +0100
114324
+
114325
+
114326
+ Started GET "/assets/dorsale/forms.self.js?body=1" for ::1 at 2015-12-29 16:49:38 +0100
114327
+
114328
+
114329
+ Started GET "/assets/dorsale/tabs_loader.self.js?body=1" for ::1 at 2015-12-29 16:49:38 +0100
114330
+
114331
+
114332
+ Started GET "/assets/dorsale/all.self.js?body=1" for ::1 at 2015-12-29 16:49:38 +0100
114333
+
114334
+
114335
+ Started GET "/assets/application.self.js?body=1" for ::1 at 2015-12-29 16:49:38 +0100
114336
+
114337
+
114338
+ Started GET "/assets/dorsale/avatar.png" for ::1 at 2015-12-29 16:49:38 +0100
114339
+
114340
+
114341
+ Started GET "/assets/font-awesome/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2015-12-29 16:49:38 +0100
114342
+
114343
+
114344
+ Started GET "/dorsale/billing_machine/quotations" for ::1 at 2015-12-29 16:57:07 +0100
114345
+ Processing by Dorsale::BillingMachine::QuotationsController#index as HTML
114346
+ Dorsale::CustomerVault::Individual Load (0.2ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals"
114347
+ Dorsale::CustomerVault::Corporation Load (0.1ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations"
114348
+ Dorsale::BillingMachine::Quotation Load (0.2ms) SELECT "dorsale_billing_machine_quotations".* FROM "dorsale_billing_machine_quotations" WHERE "dorsale_billing_machine_quotations"."state" = ? ORDER BY "dorsale_billing_machine_quotations"."unique_index" DESC [["state", "accepted"]]
114349
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/_filters.html.slim (7.3ms)
114350
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/_header_infos.html.slim (1.3ms)
114351
+ Dorsale::BillingMachine::Quotation Load (0.3ms) SELECT "dorsale_billing_machine_quotations".* FROM "dorsale_billing_machine_quotations" WHERE "dorsale_billing_machine_quotations"."state" = ? ORDER BY "dorsale_billing_machine_quotations"."unique_index" DESC LIMIT 50 OFFSET 0 [["state", "accepted"]]
114352
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/_list.html.slim (3.4ms)
114353
+  (0.2ms) SELECT COUNT(*) FROM "dorsale_billing_machine_quotations" WHERE "dorsale_billing_machine_quotations"."state" = ? [["state", "accepted"]]
114354
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/index.html.slim within layouts/application (35.0ms)
114355
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_flash.html.slim (0.2ms)
114356
+ Completed 200 OK in 228ms (Views: 196.7ms | ActiveRecord: 1.4ms)
114357
+
114358
+
114359
+ Started GET "/dorsale/billing_machine/quotations" for ::1 at 2015-12-29 16:57:38 +0100
114360
+ Processing by Dorsale::BillingMachine::QuotationsController#index as HTML
114361
+ Dorsale::CustomerVault::Individual Load (0.2ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals"
114362
+ Dorsale::CustomerVault::Corporation Load (0.1ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations"
114363
+ Dorsale::BillingMachine::Quotation Load (0.2ms) SELECT "dorsale_billing_machine_quotations".* FROM "dorsale_billing_machine_quotations" WHERE "dorsale_billing_machine_quotations"."state" = ? ORDER BY "dorsale_billing_machine_quotations"."unique_index" DESC [["state", "accepted"]]
114364
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/_filters.html.slim (5.8ms)
114365
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/_header_infos.html.slim (6.6ms)
114366
+ Dorsale::BillingMachine::Quotation Load (0.2ms) SELECT "dorsale_billing_machine_quotations".* FROM "dorsale_billing_machine_quotations" WHERE "dorsale_billing_machine_quotations"."state" = ? ORDER BY "dorsale_billing_machine_quotations"."unique_index" DESC LIMIT 50 OFFSET 0 [["state", "accepted"]]
114367
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/_list.html.slim (3.0ms)
114368
+  (0.1ms) SELECT COUNT(*) FROM "dorsale_billing_machine_quotations" WHERE "dorsale_billing_machine_quotations"."state" = ? [["state", "accepted"]]
114369
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/index.html.slim within layouts/application (37.5ms)
114370
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_flash.html.slim (0.1ms)
114371
+ Completed 200 OK in 192ms (Views: 186.8ms | ActiveRecord: 0.8ms)
114372
+
114373
+
114374
+ Started GET "/assets/application.self.css?body=1" for ::1 at 2015-12-29 16:57:38 +0100
114375
+
114376
+
114377
+ Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-12-29 16:57:39 +0100
114378
+
114379
+
114380
+ Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-12-29 16:57:39 +0100
114381
+
114382
+
114383
+ Started GET "/assets/turbolinks.self.js?body=1" for ::1 at 2015-12-29 16:57:39 +0100
114384
+
114385
+
114386
+ Started GET "/assets/cocoon.self.js?body=1" for ::1 at 2015-12-29 16:57:39 +0100
114387
+
114388
+
114389
+ Started GET "/assets/bootstrap.self.js?body=1" for ::1 at 2015-12-29 16:57:39 +0100
114390
+
114391
+
114392
+ Started GET "/assets/accounting.self.js?body=1" for ::1 at 2015-12-29 16:57:39 +0100
114393
+
114394
+
114395
+ Started GET "/assets/bootstrap-datepicker/core.self.js?body=1" for ::1 at 2015-12-29 16:57:39 +0100
114396
+
114397
+
114398
+ Started GET "/assets/selectize.self.js?body=1" for ::1 at 2015-12-29 16:57:39 +0100
114399
+
114400
+
114401
+ Started GET "/assets/bootstrap-datepicker/locales/bootstrap-datepicker.fr.self.js?body=1" for ::1 at 2015-12-29 16:57:39 +0100
114402
+
114403
+
114404
+ Started GET "/assets/dorsale/alexandrie/all.self.js?body=1" for ::1 at 2015-12-29 16:57:39 +0100
114405
+
114406
+
114407
+ Started GET "/assets/dorsale/billing_machine/all.self.js?body=1" for ::1 at 2015-12-29 16:57:39 +0100
114408
+
114409
+
114410
+ Started GET "/assets/dorsale/comments.self.js?body=1" for ::1 at 2015-12-29 16:57:39 +0100
114411
+
114412
+
114413
+ Started GET "/assets/dorsale/customer_vault/all.self.js?body=1" for ::1 at 2015-12-29 16:57:39 +0100
114414
+
114415
+
114416
+ Started GET "/assets/dorsale/datepicker.self.js?body=1" for ::1 at 2015-12-29 16:57:39 +0100
114417
+
114418
+
114419
+ Started GET "/assets/dorsale/flyboy/all.self.js?body=1" for ::1 at 2015-12-29 16:57:39 +0100
114420
+
114421
+
114422
+ Started GET "/assets/dorsale/forms.self.js?body=1" for ::1 at 2015-12-29 16:57:39 +0100
114423
+
114424
+
114425
+ Started GET "/assets/dorsale/tabs_loader.self.js?body=1" for ::1 at 2015-12-29 16:57:39 +0100
114426
+
114427
+
114428
+ Started GET "/assets/application.self.js?body=1" for ::1 at 2015-12-29 16:57:39 +0100
114429
+
114430
+
114431
+ Started GET "/assets/dorsale/all.self.js?body=1" for ::1 at 2015-12-29 16:57:39 +0100
114432
+
114433
+
114434
+ Started GET "/assets/font-awesome/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2015-12-29 16:57:39 +0100
114435
+
114436
+
114437
+ Started GET "/dorsale/billing_machine/quotations" for ::1 at 2015-12-29 16:58:31 +0100
114438
+ Processing by Dorsale::BillingMachine::QuotationsController#index as HTML
114439
+ Dorsale::CustomerVault::Individual Load (0.2ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals"
114440
+ Dorsale::CustomerVault::Corporation Load (0.2ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations"
114441
+ Dorsale::BillingMachine::Quotation Load (0.2ms) SELECT "dorsale_billing_machine_quotations".* FROM "dorsale_billing_machine_quotations" WHERE "dorsale_billing_machine_quotations"."state" = ? ORDER BY "dorsale_billing_machine_quotations"."unique_index" DESC [["state", "accepted"]]
114442
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/_filters.html.slim (7.0ms)
114443
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/_header_infos.html.slim (6.6ms)
114444
+ Dorsale::BillingMachine::Quotation Load (0.2ms) SELECT "dorsale_billing_machine_quotations".* FROM "dorsale_billing_machine_quotations" WHERE "dorsale_billing_machine_quotations"."state" = ? ORDER BY "dorsale_billing_machine_quotations"."unique_index" DESC LIMIT 50 OFFSET 0 [["state", "accepted"]]
114445
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/_list.html.slim (3.1ms)
114446
+  (0.1ms) SELECT COUNT(*) FROM "dorsale_billing_machine_quotations" WHERE "dorsale_billing_machine_quotations"."state" = ? [["state", "accepted"]]
114447
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/index.html.slim within layouts/application (39.4ms)
114448
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_flash.html.slim (0.2ms)
114449
+ Completed 200 OK in 198ms (Views: 192.6ms | ActiveRecord: 0.8ms)
114450
+
114451
+
114452
+ Started GET "/assets/application.self.css?body=1" for ::1 at 2015-12-29 16:58:32 +0100
114453
+
114454
+
114455
+ Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-12-29 16:58:32 +0100
114456
+
114457
+
114458
+ Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-12-29 16:58:32 +0100
114459
+
114460
+
114461
+ Started GET "/assets/turbolinks.self.js?body=1" for ::1 at 2015-12-29 16:58:32 +0100
114462
+
114463
+
114464
+ Started GET "/assets/bootstrap.self.js?body=1" for ::1 at 2015-12-29 16:58:32 +0100
114465
+
114466
+
114467
+ Started GET "/assets/cocoon.self.js?body=1" for ::1 at 2015-12-29 16:58:32 +0100
114468
+
114469
+
114470
+ Started GET "/assets/accounting.self.js?body=1" for ::1 at 2015-12-29 16:58:32 +0100
114471
+
114472
+
114473
+ Started GET "/assets/selectize.self.js?body=1" for ::1 at 2015-12-29 16:58:32 +0100
114474
+
114475
+
114476
+ Started GET "/assets/bootstrap-datepicker/core.self.js?body=1" for ::1 at 2015-12-29 16:58:32 +0100
114477
+
114478
+
114479
+ Started GET "/assets/bootstrap-datepicker/locales/bootstrap-datepicker.fr.self.js?body=1" for ::1 at 2015-12-29 16:58:32 +0100
114480
+
114481
+
114482
+ Started GET "/assets/dorsale/alexandrie/all.self.js?body=1" for ::1 at 2015-12-29 16:58:32 +0100
114483
+
114484
+
114485
+ Started GET "/assets/dorsale/billing_machine/all.self.js?body=1" for ::1 at 2015-12-29 16:58:32 +0100
114486
+
114487
+
114488
+ Started GET "/assets/dorsale/comments.self.js?body=1" for ::1 at 2015-12-29 16:58:32 +0100
114489
+
114490
+
114491
+ Started GET "/assets/dorsale/customer_vault/all.self.js?body=1" for ::1 at 2015-12-29 16:58:32 +0100
114492
+
114493
+
114494
+ Started GET "/assets/dorsale/datepicker.self.js?body=1" for ::1 at 2015-12-29 16:58:32 +0100
114495
+
114496
+
114497
+ Started GET "/assets/dorsale/flyboy/all.self.js?body=1" for ::1 at 2015-12-29 16:58:32 +0100
114498
+
114499
+
114500
+ Started GET "/assets/dorsale/forms.self.js?body=1" for ::1 at 2015-12-29 16:58:32 +0100
114501
+
114502
+
114503
+ Started GET "/assets/dorsale/all.self.js?body=1" for ::1 at 2015-12-29 16:58:32 +0100
114504
+
114505
+
114506
+ Started GET "/assets/application.self.js?body=1" for ::1 at 2015-12-29 16:58:32 +0100
114507
+
114508
+
114509
+ Started GET "/assets/dorsale/tabs_loader.self.js?body=1" for ::1 at 2015-12-29 16:58:32 +0100
114510
+
114511
+
114512
+ Started GET "/assets/font-awesome/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2015-12-29 16:58:32 +0100
114513
+
114514
+
114515
+ Started GET "/dorsale/billing_machine/invoices" for ::1 at 2015-12-29 16:58:34 +0100
114516
+ Processing by Dorsale::BillingMachine::InvoicesController#index as HTML
114517
+ Dorsale::CustomerVault::Individual Load (0.2ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals"
114518
+ Dorsale::CustomerVault::Corporation Load (0.1ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations"
114519
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_filters.html.slim (7.4ms)
114520
+ Dorsale::BillingMachine::Invoice Load (0.5ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f') ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC
114521
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_header_infos.html.slim (20.4ms)
114522
+ Dorsale::BillingMachine::Invoice Load (0.4ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f') ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC LIMIT 50 OFFSET 0
114523
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_list.html.slim (18.3ms)
114524
+  (0.2ms) SELECT COUNT(*) FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f')
114525
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/index.html.slim within layouts/application (90.7ms)
114526
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_flash.html.slim (0.1ms)
114527
+ Completed 200 OK in 245ms (Views: 236.9ms | ActiveRecord: 1.7ms)
114528
+
114529
+
114530
+ Started GET "/dorsale/billing_machine/quotations" for ::1 at 2015-12-29 16:58:36 +0100
114531
+ Processing by Dorsale::BillingMachine::QuotationsController#index as HTML
114532
+ Dorsale::CustomerVault::Individual Load (0.2ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals"
114533
+ Dorsale::CustomerVault::Corporation Load (0.1ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations"
114534
+ Dorsale::BillingMachine::Quotation Load (0.1ms) SELECT "dorsale_billing_machine_quotations".* FROM "dorsale_billing_machine_quotations" WHERE "dorsale_billing_machine_quotations"."state" = ? ORDER BY "dorsale_billing_machine_quotations"."unique_index" DESC [["state", "accepted"]]
114535
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/_filters.html.slim (6.3ms)
114536
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/_header_infos.html.slim (1.9ms)
114537
+ Dorsale::BillingMachine::Quotation Load (0.2ms) SELECT "dorsale_billing_machine_quotations".* FROM "dorsale_billing_machine_quotations" WHERE "dorsale_billing_machine_quotations"."state" = ? ORDER BY "dorsale_billing_machine_quotations"."unique_index" DESC LIMIT 50 OFFSET 0 [["state", "accepted"]]
114538
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/_list.html.slim (2.9ms)
114539
+  (0.1ms) SELECT COUNT(*) FROM "dorsale_billing_machine_quotations" WHERE "dorsale_billing_machine_quotations"."state" = ? [["state", "accepted"]]
114540
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/index.html.slim within layouts/application (32.9ms)
114541
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_flash.html.slim (0.1ms)
114542
+ Completed 200 OK in 201ms (Views: 195.9ms | ActiveRecord: 0.7ms)
114543
+
114544
+
114545
+ Started GET "/dorsale/billing_machine/invoices" for ::1 at 2015-12-29 16:58:37 +0100
114546
+ Processing by Dorsale::BillingMachine::InvoicesController#index as HTML
114547
+ Dorsale::CustomerVault::Individual Load (0.3ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals"
114548
+ Dorsale::CustomerVault::Corporation Load (0.2ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations"
114549
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_filters.html.slim (5.8ms)
114550
+ Dorsale::BillingMachine::Invoice Load (0.4ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f') ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC
114551
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_header_infos.html.slim (2.8ms)
114552
+ Dorsale::BillingMachine::Invoice Load (0.4ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f') ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC LIMIT 50 OFFSET 0
114553
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_list.html.slim (17.6ms)
114554
+  (0.2ms) SELECT COUNT(*) FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f')
114555
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/index.html.slim within layouts/application (49.7ms)
114556
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_flash.html.slim (0.1ms)
114557
+ Completed 200 OK in 216ms (Views: 211.0ms | ActiveRecord: 1.3ms)
114558
+
114559
+
114560
+ Started GET "/dorsale/billing_machine/quotations" for ::1 at 2015-12-29 16:58:38 +0100
114561
+ Processing by Dorsale::BillingMachine::QuotationsController#index as HTML
114562
+ Dorsale::CustomerVault::Individual Load (0.2ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals"
114563
+ Dorsale::CustomerVault::Corporation Load (0.1ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations"
114564
+ Dorsale::BillingMachine::Quotation Load (0.1ms) SELECT "dorsale_billing_machine_quotations".* FROM "dorsale_billing_machine_quotations" WHERE "dorsale_billing_machine_quotations"."state" = ? ORDER BY "dorsale_billing_machine_quotations"."unique_index" DESC [["state", "accepted"]]
114565
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/_filters.html.slim (6.1ms)
114566
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/_header_infos.html.slim (1.9ms)
114567
+ Dorsale::BillingMachine::Quotation Load (0.2ms) SELECT "dorsale_billing_machine_quotations".* FROM "dorsale_billing_machine_quotations" WHERE "dorsale_billing_machine_quotations"."state" = ? ORDER BY "dorsale_billing_machine_quotations"."unique_index" DESC LIMIT 50 OFFSET 0 [["state", "accepted"]]
114568
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/_list.html.slim (3.0ms)
114569
+  (0.1ms) SELECT COUNT(*) FROM "dorsale_billing_machine_quotations" WHERE "dorsale_billing_machine_quotations"."state" = ? [["state", "accepted"]]
114570
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/index.html.slim within layouts/application (33.7ms)
114571
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_flash.html.slim (0.2ms)
114572
+ Completed 200 OK in 221ms (Views: 216.4ms | ActiveRecord: 0.7ms)
114573
+
114574
+
114575
+ Started GET "/dorsale/billing_machine/quotations" for ::1 at 2015-12-29 16:59:53 +0100
114576
+ Processing by Dorsale::BillingMachine::QuotationsController#index as HTML
114577
+ Dorsale::CustomerVault::Individual Load (0.7ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals"
114578
+ Dorsale::CustomerVault::Corporation Load (0.2ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations"
114579
+ Dorsale::BillingMachine::Quotation Load (0.2ms) SELECT "dorsale_billing_machine_quotations".* FROM "dorsale_billing_machine_quotations" WHERE "dorsale_billing_machine_quotations"."state" = ? ORDER BY "dorsale_billing_machine_quotations"."unique_index" DESC [["state", "accepted"]]
114580
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/_filters.html.slim (7.7ms)
114581
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/_header_infos.html.slim (5.8ms)
114582
+ Dorsale::BillingMachine::Quotation Load (0.3ms) SELECT "dorsale_billing_machine_quotations".* FROM "dorsale_billing_machine_quotations" WHERE "dorsale_billing_machine_quotations"."state" = ? ORDER BY "dorsale_billing_machine_quotations"."unique_index" DESC LIMIT 50 OFFSET 0 [["state", "accepted"]]
114583
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/_list.html.slim (3.6ms)
114584
+  (0.2ms) SELECT COUNT(*) FROM "dorsale_billing_machine_quotations" WHERE "dorsale_billing_machine_quotations"."state" = ? [["state", "accepted"]]
114585
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/index.html.slim within layouts/application (38.5ms)
114586
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_flash.html.slim (0.1ms)
114587
+ Completed 200 OK in 326ms (Views: 217.7ms | ActiveRecord: 2.7ms)
114588
+
114589
+
114590
+ Started GET "/assets/application.self.css?body=1" for ::1 at 2015-12-29 16:59:54 +0100
114591
+
114592
+
114593
+ Started GET "/assets/turbolinks.self.js?body=1" for ::1 at 2015-12-29 16:59:54 +0100
114594
+
114595
+
114596
+ Started GET "/assets/bootstrap.self.js?body=1" for ::1 at 2015-12-29 16:59:54 +0100
114597
+
114598
+
114599
+ Started GET "/assets/accounting.self.js?body=1" for ::1 at 2015-12-29 16:59:54 +0100
114600
+
114601
+
114602
+ Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-12-29 16:59:54 +0100
114603
+
114604
+
114605
+ Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-12-29 16:59:54 +0100
114606
+
114607
+
114608
+ Started GET "/assets/cocoon.self.js?body=1" for ::1 at 2015-12-29 16:59:54 +0100
114609
+
114610
+
114611
+ Started GET "/assets/selectize.self.js?body=1" for ::1 at 2015-12-29 16:59:54 +0100
114612
+
114613
+
114614
+ Started GET "/assets/bootstrap-datepicker/core.self.js?body=1" for ::1 at 2015-12-29 16:59:54 +0100
114615
+
114616
+
114617
+ Started GET "/assets/dorsale/customer_vault/all.self.js?body=1" for ::1 at 2015-12-29 16:59:54 +0100
114618
+
114619
+
114620
+ Started GET "/assets/dorsale/alexandrie/all.self.js?body=1" for ::1 at 2015-12-29 16:59:54 +0100
114621
+
114622
+
114623
+ Started GET "/assets/dorsale/billing_machine/all.self.js?body=1" for ::1 at 2015-12-29 16:59:54 +0100
114624
+
114625
+
114626
+ Started GET "/assets/dorsale/comments.self.js?body=1" for ::1 at 2015-12-29 16:59:54 +0100
114627
+
114628
+
114629
+ Started GET "/assets/bootstrap-datepicker/locales/bootstrap-datepicker.fr.self.js?body=1" for ::1 at 2015-12-29 16:59:54 +0100
114630
+
114631
+
114632
+ Started GET "/assets/dorsale/datepicker.self.js?body=1" for ::1 at 2015-12-29 16:59:54 +0100
114633
+
114634
+
114635
+ Started GET "/assets/dorsale/flyboy/all.self.js?body=1" for ::1 at 2015-12-29 16:59:54 +0100
114636
+
114637
+
114638
+ Started GET "/assets/dorsale/forms.self.js?body=1" for ::1 at 2015-12-29 16:59:54 +0100
114639
+
114640
+
114641
+ Started GET "/assets/dorsale/tabs_loader.self.js?body=1" for ::1 at 2015-12-29 16:59:54 +0100
114642
+
114643
+
114644
+ Started GET "/assets/dorsale/all.self.js?body=1" for ::1 at 2015-12-29 16:59:54 +0100
114645
+
114646
+
114647
+ Started GET "/assets/application.self.js?body=1" for ::1 at 2015-12-29 16:59:55 +0100
114648
+
114649
+
114650
+ Started GET "/assets/font-awesome/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2015-12-29 16:59:55 +0100
114651
+
114652
+
114653
+ Started GET "/dorsale/billing_machine/invoices" for ::1 at 2015-12-29 16:59:59 +0100
114654
+ Processing by Dorsale::BillingMachine::InvoicesController#index as HTML
114655
+ Dorsale::CustomerVault::Individual Load (0.2ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals"
114656
+ Dorsale::CustomerVault::Corporation Load (0.1ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations"
114657
+ Dorsale::BillingMachine::Invoice Load (0.6ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f') ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC
114658
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_filters.html.slim (9.3ms)
114659
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_header_infos.html.slim (2.4ms)
114660
+ Dorsale::BillingMachine::Invoice Load (0.4ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f') ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC LIMIT 50 OFFSET 0
114661
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_list.html.slim (23.2ms)
114662
+  (0.2ms) SELECT COUNT(*) FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f')
114663
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/index.html.slim within layouts/application (60.0ms)
114664
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_flash.html.slim (0.1ms)
114665
+ Completed 200 OK in 273ms (Views: 243.6ms | ActiveRecord: 1.8ms)
114666
+
114667
+
114668
+ Started GET "/dorsale/billing_machine/invoices" for ::1 at 2015-12-29 17:00:01 +0100
114669
+ Processing by Dorsale::BillingMachine::InvoicesController#index as HTML
114670
+ Dorsale::CustomerVault::Individual Load (0.3ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals"
114671
+ Dorsale::CustomerVault::Corporation Load (0.1ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations"
114672
+ Dorsale::BillingMachine::Invoice Load (0.3ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f') ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC
114673
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_filters.html.slim (6.1ms)
114674
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_header_infos.html.slim (1.2ms)
114675
+ Dorsale::BillingMachine::Invoice Load (0.4ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f') ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC LIMIT 50 OFFSET 0
114676
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_list.html.slim (19.5ms)
114677
+  (0.2ms) SELECT COUNT(*) FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f')
114678
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/index.html.slim within layouts/application (49.3ms)
114679
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_flash.html.slim (0.1ms)
114680
+ Completed 200 OK in 216ms (Views: 209.5ms | ActiveRecord: 1.3ms)
114681
+
114682
+
114683
+ Started GET "/assets/application.self.css?body=1" for ::1 at 2015-12-29 17:00:02 +0100
114684
+
114685
+
114686
+ Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-12-29 17:00:02 +0100
114687
+
114688
+
114689
+ Started GET "/assets/bootstrap.self.js?body=1" for ::1 at 2015-12-29 17:00:02 +0100
114690
+
114691
+
114692
+ Started GET "/assets/turbolinks.self.js?body=1" for ::1 at 2015-12-29 17:00:02 +0100
114693
+
114694
+
114695
+ Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-12-29 17:00:02 +0100
114696
+
114697
+
114698
+ Started GET "/assets/cocoon.self.js?body=1" for ::1 at 2015-12-29 17:00:02 +0100
114699
+
114700
+
114701
+ Started GET "/assets/accounting.self.js?body=1" for ::1 at 2015-12-29 17:00:02 +0100
114702
+
114703
+
114704
+ Started GET "/assets/selectize.self.js?body=1" for ::1 at 2015-12-29 17:00:02 +0100
114705
+
114706
+
114707
+ Started GET "/assets/bootstrap-datepicker/core.self.js?body=1" for ::1 at 2015-12-29 17:00:02 +0100
114708
+
114709
+
114710
+ Started GET "/assets/bootstrap-datepicker/locales/bootstrap-datepicker.fr.self.js?body=1" for ::1 at 2015-12-29 17:00:02 +0100
114711
+
114712
+
114713
+ Started GET "/assets/dorsale/alexandrie/all.self.js?body=1" for ::1 at 2015-12-29 17:00:02 +0100
114714
+
114715
+
114716
+ Started GET "/assets/dorsale/billing_machine/all.self.js?body=1" for ::1 at 2015-12-29 17:00:02 +0100
114717
+
114718
+
114719
+ Started GET "/assets/dorsale/comments.self.js?body=1" for ::1 at 2015-12-29 17:00:02 +0100
114720
+
114721
+
114722
+ Started GET "/assets/dorsale/customer_vault/all.self.js?body=1" for ::1 at 2015-12-29 17:00:02 +0100
114723
+
114724
+
114725
+ Started GET "/assets/dorsale/datepicker.self.js?body=1" for ::1 at 2015-12-29 17:00:02 +0100
114726
+
114727
+
114728
+ Started GET "/assets/dorsale/flyboy/all.self.js?body=1" for ::1 at 2015-12-29 17:00:02 +0100
114729
+
114730
+
114731
+ Started GET "/assets/dorsale/forms.self.js?body=1" for ::1 at 2015-12-29 17:00:02 +0100
114732
+
114733
+
114734
+ Started GET "/assets/dorsale/tabs_loader.self.js?body=1" for ::1 at 2015-12-29 17:00:02 +0100
114735
+
114736
+
114737
+ Started GET "/assets/dorsale/all.self.js?body=1" for ::1 at 2015-12-29 17:00:02 +0100
114738
+
114739
+
114740
+ Started GET "/assets/application.self.js?body=1" for ::1 at 2015-12-29 17:00:02 +0100
114741
+
114742
+
114743
+ Started GET "/assets/font-awesome/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2015-12-29 17:00:02 +0100
114744
+
114745
+
114746
+ Started GET "/dorsale/billing_machine/invoices" for ::1 at 2015-12-29 17:00:13 +0100
114747
+ Processing by Dorsale::BillingMachine::InvoicesController#index as HTML
114748
+ Dorsale::CustomerVault::Individual Load (0.2ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals"
114749
+ Dorsale::CustomerVault::Corporation Load (0.1ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations"
114750
+ Dorsale::BillingMachine::Invoice Load (0.9ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f') ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC
114751
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_filters.html.slim (6.2ms)
114752
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_header_infos.html.slim (7.4ms)
114753
+ Dorsale::BillingMachine::Invoice Load (0.3ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f') ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC LIMIT 50 OFFSET 0
114754
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_list.html.slim (16.0ms)
114755
+  (0.2ms) SELECT COUNT(*) FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f')
114756
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/index.html.slim within layouts/application (52.4ms)
114757
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_flash.html.slim (0.1ms)
114758
+ Completed 200 OK in 219ms (Views: 211.3ms | ActiveRecord: 1.8ms)
114759
+
114760
+
114761
+ Started GET "/assets/application.self.css?body=1" for ::1 at 2015-12-29 17:00:13 +0100
114762
+
114763
+
114764
+ Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-12-29 17:00:13 +0100
114765
+
114766
+
114767
+ Started GET "/assets/cocoon.self.js?body=1" for ::1 at 2015-12-29 17:00:13 +0100
114768
+
114769
+
114770
+ Started GET "/assets/bootstrap.self.js?body=1" for ::1 at 2015-12-29 17:00:13 +0100
114771
+
114772
+
114773
+ Started GET "/assets/turbolinks.self.js?body=1" for ::1 at 2015-12-29 17:00:13 +0100
114774
+
114775
+
114776
+ Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-12-29 17:00:13 +0100
114777
+
114778
+
114779
+ Started GET "/assets/accounting.self.js?body=1" for ::1 at 2015-12-29 17:00:13 +0100
114780
+
114781
+
114782
+ Started GET "/assets/selectize.self.js?body=1" for ::1 at 2015-12-29 17:00:13 +0100
114783
+
114784
+
114785
+ Started GET "/assets/bootstrap-datepicker/core.self.js?body=1" for ::1 at 2015-12-29 17:00:13 +0100
114786
+
114787
+
114788
+ Started GET "/assets/bootstrap-datepicker/locales/bootstrap-datepicker.fr.self.js?body=1" for ::1 at 2015-12-29 17:00:13 +0100
114789
+
114790
+
114791
+ Started GET "/assets/dorsale/alexandrie/all.self.js?body=1" for ::1 at 2015-12-29 17:00:13 +0100
114792
+
114793
+
114794
+ Started GET "/assets/dorsale/comments.self.js?body=1" for ::1 at 2015-12-29 17:00:13 +0100
114795
+
114796
+
114797
+ Started GET "/assets/dorsale/customer_vault/all.self.js?body=1" for ::1 at 2015-12-29 17:00:13 +0100
114798
+
114799
+
114800
+ Started GET "/assets/dorsale/billing_machine/all.self.js?body=1" for ::1 at 2015-12-29 17:00:13 +0100
114801
+
114802
+
114803
+ Started GET "/assets/dorsale/datepicker.self.js?body=1" for ::1 at 2015-12-29 17:00:13 +0100
114804
+
114805
+
114806
+ Started GET "/assets/dorsale/flyboy/all.self.js?body=1" for ::1 at 2015-12-29 17:00:13 +0100
114807
+
114808
+
114809
+ Started GET "/assets/dorsale/forms.self.js?body=1" for ::1 at 2015-12-29 17:00:13 +0100
114810
+
114811
+
114812
+ Started GET "/assets/dorsale/tabs_loader.self.js?body=1" for ::1 at 2015-12-29 17:00:14 +0100
114813
+
114814
+
114815
+ Started GET "/assets/dorsale/all.self.js?body=1" for ::1 at 2015-12-29 17:00:14 +0100
114816
+
114817
+
114818
+ Started GET "/assets/application.self.js?body=1" for ::1 at 2015-12-29 17:00:14 +0100
114819
+
114820
+
114821
+ Started GET "/assets/font-awesome/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2015-12-29 17:00:14 +0100
114822
+
114823
+
114824
+ Started GET "/dorsale/billing_machine/invoices" for ::1 at 2015-12-29 17:00:34 +0100
114825
+ Processing by Dorsale::BillingMachine::InvoicesController#index as HTML
114826
+ Dorsale::CustomerVault::Individual Load (0.2ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals"
114827
+ Dorsale::CustomerVault::Corporation Load (0.1ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations"
114828
+ Dorsale::BillingMachine::Invoice Load (0.3ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f') ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC
114829
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_filters.html.slim (6.7ms)
114830
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_header_infos.html.slim (1.9ms)
114831
+ Dorsale::BillingMachine::Invoice Load (0.4ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f') ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC LIMIT 50 OFFSET 0
114832
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_list.html.slim (18.9ms)
114833
+  (0.2ms) SELECT COUNT(*) FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f')
114834
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/index.html.slim within layouts/application (49.4ms)
114835
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_flash.html.slim (0.1ms)
114836
+ Completed 200 OK in 207ms (Views: 199.5ms | ActiveRecord: 1.2ms)
114837
+
114838
+
114839
+ Started GET "/assets/application.self.css?body=1" for ::1 at 2015-12-29 17:00:34 +0100
114840
+
114841
+
114842
+ Started GET "/assets/turbolinks.self.js?body=1" for ::1 at 2015-12-29 17:00:34 +0100
114843
+
114844
+
114845
+ Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-12-29 17:00:34 +0100
114846
+
114847
+
114848
+ Started GET "/assets/cocoon.self.js?body=1" for ::1 at 2015-12-29 17:00:34 +0100
114849
+
114850
+
114851
+ Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-12-29 17:00:34 +0100
114852
+
114853
+
114854
+ Started GET "/assets/bootstrap.self.js?body=1" for ::1 at 2015-12-29 17:00:34 +0100
114855
+
114856
+
114857
+ Started GET "/assets/accounting.self.js?body=1" for ::1 at 2015-12-29 17:00:34 +0100
114858
+
114859
+
114860
+ Started GET "/assets/selectize.self.js?body=1" for ::1 at 2015-12-29 17:00:34 +0100
114861
+
114862
+
114863
+ Started GET "/assets/bootstrap-datepicker/core.self.js?body=1" for ::1 at 2015-12-29 17:00:34 +0100
114864
+
114865
+
114866
+ Started GET "/assets/bootstrap-datepicker/locales/bootstrap-datepicker.fr.self.js?body=1" for ::1 at 2015-12-29 17:00:34 +0100
114867
+
114868
+
114869
+ Started GET "/assets/dorsale/alexandrie/all.self.js?body=1" for ::1 at 2015-12-29 17:00:34 +0100
114870
+
114871
+
114872
+ Started GET "/assets/dorsale/billing_machine/all.self.js?body=1" for ::1 at 2015-12-29 17:00:34 +0100
114873
+
114874
+
114875
+ Started GET "/assets/dorsale/comments.self.js?body=1" for ::1 at 2015-12-29 17:00:34 +0100
114876
+
114877
+
114878
+ Started GET "/assets/dorsale/customer_vault/all.self.js?body=1" for ::1 at 2015-12-29 17:00:34 +0100
114879
+
114880
+
114881
+ Started GET "/assets/dorsale/flyboy/all.self.js?body=1" for ::1 at 2015-12-29 17:00:34 +0100
114882
+
114883
+
114884
+ Started GET "/assets/dorsale/datepicker.self.js?body=1" for ::1 at 2015-12-29 17:00:34 +0100
114885
+
114886
+
114887
+ Started GET "/assets/dorsale/forms.self.js?body=1" for ::1 at 2015-12-29 17:00:34 +0100
114888
+
114889
+
114890
+ Started GET "/assets/dorsale/tabs_loader.self.js?body=1" for ::1 at 2015-12-29 17:00:34 +0100
114891
+
114892
+
114893
+ Started GET "/assets/dorsale/all.self.js?body=1" for ::1 at 2015-12-29 17:00:34 +0100
114894
+
114895
+
114896
+ Started GET "/assets/application.self.js?body=1" for ::1 at 2015-12-29 17:00:35 +0100
114897
+
114898
+
114899
+ Started GET "/assets/font-awesome/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2015-12-29 17:00:35 +0100
114900
+
114901
+
114902
+ Started GET "/dorsale/billing_machine/quotations" for ::1 at 2015-12-29 17:00:35 +0100
114903
+ Processing by Dorsale::BillingMachine::QuotationsController#index as HTML
114904
+ Dorsale::CustomerVault::Individual Load (0.2ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals"
114905
+ Dorsale::CustomerVault::Corporation Load (0.2ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations"
114906
+ Dorsale::BillingMachine::Quotation Load (0.1ms) SELECT "dorsale_billing_machine_quotations".* FROM "dorsale_billing_machine_quotations" WHERE "dorsale_billing_machine_quotations"."state" = ? ORDER BY "dorsale_billing_machine_quotations"."unique_index" DESC [["state", "accepted"]]
114907
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/_filters.html.slim (6.6ms)
114908
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_header_infos.html.slim (8.5ms)
114909
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/_header_infos.html.slim (15.5ms)
114910
+ Dorsale::BillingMachine::Quotation Load (0.2ms) SELECT "dorsale_billing_machine_quotations".* FROM "dorsale_billing_machine_quotations" WHERE "dorsale_billing_machine_quotations"."state" = ? ORDER BY "dorsale_billing_machine_quotations"."unique_index" DESC LIMIT 50 OFFSET 0 [["state", "accepted"]]
114911
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/_list.html.slim (3.2ms)
114912
+  (0.1ms) SELECT COUNT(*) FROM "dorsale_billing_machine_quotations" WHERE "dorsale_billing_machine_quotations"."state" = ? [["state", "accepted"]]
114913
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/quotations/index.html.slim within layouts/application (46.6ms)
114914
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_flash.html.slim (0.1ms)
114915
+ Completed 200 OK in 230ms (Views: 224.4ms | ActiveRecord: 0.9ms)
114916
+
114917
+
114918
+ Started GET "/dorsale/billing_machine/invoices" for ::1 at 2015-12-29 17:00:36 +0100
114919
+ Processing by Dorsale::BillingMachine::InvoicesController#index as HTML
114920
+ Dorsale::CustomerVault::Individual Load (0.2ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals"
114921
+ Dorsale::CustomerVault::Corporation Load (0.2ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations"
114922
+ Dorsale::BillingMachine::Invoice Load (0.3ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f') ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC
114923
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_filters.html.slim (6.6ms)
114924
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_header_infos.html.slim (2.5ms)
114925
+ Dorsale::BillingMachine::Invoice Load (0.6ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f') ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC LIMIT 50 OFFSET 0
114926
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_list.html.slim (16.0ms)
114927
+  (0.2ms) SELECT COUNT(*) FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f')
114928
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/index.html.slim within layouts/application (47.5ms)
114929
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_flash.html.slim (0.3ms)
114930
+ Completed 200 OK in 222ms (Views: 215.0ms | ActiveRecord: 1.5ms)
114931
+
114932
+
114933
+ Started GET "/dorsale/billing_machine/invoices" for ::1 at 2015-12-29 17:01:12 +0100
114934
+ Processing by Dorsale::BillingMachine::InvoicesController#index as HTML
114935
+ Dorsale::CustomerVault::Individual Load (0.6ms) SELECT "dorsale_customer_vault_individuals".* FROM "dorsale_customer_vault_individuals"
114936
+ Dorsale::CustomerVault::Corporation Load (0.4ms) SELECT "dorsale_customer_vault_corporations".* FROM "dorsale_customer_vault_corporations"
114937
+ Dorsale::BillingMachine::Invoice Load (0.4ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f') ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC
114938
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_filters.html.slim (7.3ms)
114939
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_header_infos.html.slim (3.4ms)
114940
+ Dorsale::BillingMachine::Invoice Load (0.3ms) SELECT "dorsale_billing_machine_invoices".* FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f') ORDER BY "dorsale_billing_machine_invoices"."unique_index" DESC LIMIT 50 OFFSET 0
114941
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/_list.html.slim (17.3ms)
114942
+  (0.2ms) SELECT COUNT(*) FROM "dorsale_billing_machine_invoices" WHERE (dorsale_billing_machine_invoices.paid = 'f')
114943
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/billing_machine/invoices/index.html.slim within layouts/application (54.4ms)
114944
+ Rendered /Users/benoit/www/agilidee/dorsale/app/views/dorsale/_flash.html.slim (0.1ms)
114945
+ Completed 200 OK in 237ms (Views: 222.8ms | ActiveRecord: 1.9ms)
114946
+
114947
+
114948
+ Started GET "/assets/application.self.css?body=1" for ::1 at 2015-12-29 17:01:12 +0100
114949
+
114950
+
114951
+ Started GET "/assets/jquery.self.js?body=1" for ::1 at 2015-12-29 17:01:12 +0100
114952
+
114953
+
114954
+ Started GET "/assets/jquery_ujs.self.js?body=1" for ::1 at 2015-12-29 17:01:12 +0100
114955
+
114956
+
114957
+ Started GET "/assets/accounting.self.js?body=1" for ::1 at 2015-12-29 17:01:12 +0100
114958
+
114959
+
114960
+ Started GET "/assets/selectize.self.js?body=1" for ::1 at 2015-12-29 17:01:12 +0100
114961
+
114962
+
114963
+ Started GET "/assets/turbolinks.self.js?body=1" for ::1 at 2015-12-29 17:01:12 +0100
114964
+
114965
+
114966
+ Started GET "/assets/bootstrap.self.js?body=1" for ::1 at 2015-12-29 17:01:12 +0100
114967
+
114968
+
114969
+ Started GET "/assets/bootstrap-datepicker/core.self.js?body=1" for ::1 at 2015-12-29 17:01:12 +0100
114970
+
114971
+
114972
+ Started GET "/assets/cocoon.self.js?body=1" for ::1 at 2015-12-29 17:01:12 +0100
114973
+
114974
+
114975
+ Started GET "/assets/bootstrap-datepicker/locales/bootstrap-datepicker.fr.self.js?body=1" for ::1 at 2015-12-29 17:01:12 +0100
114976
+
114977
+
114978
+ Started GET "/assets/dorsale/billing_machine/all.self.js?body=1" for ::1 at 2015-12-29 17:01:12 +0100
114979
+
114980
+
114981
+ Started GET "/assets/dorsale/comments.self.js?body=1" for ::1 at 2015-12-29 17:01:12 +0100
114982
+
114983
+
114984
+ Started GET "/assets/dorsale/customer_vault/all.self.js?body=1" for ::1 at 2015-12-29 17:01:12 +0100
114985
+
114986
+
114987
+ Started GET "/assets/dorsale/alexandrie/all.self.js?body=1" for ::1 at 2015-12-29 17:01:12 +0100
114988
+
114989
+
114990
+ Started GET "/assets/dorsale/datepicker.self.js?body=1" for ::1 at 2015-12-29 17:01:12 +0100
114991
+
114992
+
114993
+ Started GET "/assets/dorsale/forms.self.js?body=1" for ::1 at 2015-12-29 17:01:12 +0100
114994
+
114995
+
114996
+ Started GET "/assets/dorsale/flyboy/all.self.js?body=1" for ::1 at 2015-12-29 17:01:12 +0100
114997
+
114998
+
114999
+ Started GET "/assets/dorsale/tabs_loader.self.js?body=1" for ::1 at 2015-12-29 17:01:12 +0100
115000
+
115001
+
115002
+ Started GET "/assets/dorsale/all.self.js?body=1" for ::1 at 2015-12-29 17:01:12 +0100
115003
+
115004
+
115005
+ Started GET "/assets/application.self.js?body=1" for ::1 at 2015-12-29 17:01:12 +0100
115006
+
115007
+
115008
+ Started GET "/assets/font-awesome/fontawesome-webfont.woff2?v=4.5.0" for ::1 at 2015-12-29 17:01:12 +0100