Merge foodcoop1040:order_message into master
Conflicts: plugins/messages/app/models/message.rb
This commit is contained in:
commit
4239843b3e
5 changed files with 36 additions and 21 deletions
|
@ -8,6 +8,7 @@ class Order < ActiveRecord::Base
|
||||||
has_many :articles, :through => :order_articles
|
has_many :articles, :through => :order_articles
|
||||||
has_many :group_orders, :dependent => :destroy
|
has_many :group_orders, :dependent => :destroy
|
||||||
has_many :ordergroups, :through => :group_orders
|
has_many :ordergroups, :through => :group_orders
|
||||||
|
has_many :users_ordered, :through => :ordergroups, :source => :users
|
||||||
has_one :invoice
|
has_one :invoice
|
||||||
has_many :comments, -> { order('created_at') }, :class_name => "OrderComment"
|
has_many :comments, -> { order('created_at') }, :class_name => "OrderComment"
|
||||||
has_many :stock_changes
|
has_many :stock_changes
|
||||||
|
|
20
app/views/orders/_show_js.html.haml
Normal file
20
app/views/orders/_show_js.html.haml
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
-# this needs to be in a separate file from show.html.erb to allow deface overrides
|
||||||
|
- content_for :javascript do
|
||||||
|
:javascript
|
||||||
|
function activate_search(view, placeholder) {
|
||||||
|
new List(document.body, {
|
||||||
|
valueNames: ['name'],
|
||||||
|
engine: 'unlist',
|
||||||
|
plugins: [
|
||||||
|
['reset', {highlightClass: 'btn-primary'}],
|
||||||
|
['delay', {delayedSearchTime: 500}],
|
||||||
|
],
|
||||||
|
// make large pages work too (as we don't have paging)
|
||||||
|
page: 10000,
|
||||||
|
indexAsync: true
|
||||||
|
});
|
||||||
|
$('#query').attr('placeholder', placeholder);
|
||||||
|
}
|
||||||
|
$(function() {
|
||||||
|
activate_search('#{j @view}', '#{j t(".search_placeholder.#{@view}")}');
|
||||||
|
});
|
|
@ -79,25 +79,5 @@
|
||||||
#new_comment= render partial: 'order_comments/form', locals: { order_comment: @order.comments.build(user: current_user)}
|
#new_comment= render partial: 'order_comments/form', locals: { order_comment: @order.comments.build(user: current_user)}
|
||||||
= link_to_top
|
= link_to_top
|
||||||
|
|
||||||
|
= render 'show_js'
|
||||||
- content_for :javascript do
|
|
||||||
:javascript
|
|
||||||
function activate_search(view, placeholder) {
|
|
||||||
new List(document.body, {
|
|
||||||
valueNames: ['name'],
|
|
||||||
engine: 'unlist',
|
|
||||||
plugins: [
|
|
||||||
['reset', {highlightClass: 'btn-primary'}],
|
|
||||||
['delay', {delayedSearchTime: 500}],
|
|
||||||
],
|
|
||||||
// make large pages work too (as we don't have paging)
|
|
||||||
page: 10000,
|
|
||||||
indexAsync: true
|
|
||||||
});
|
|
||||||
$('#query').attr('placeholder', placeholder);
|
|
||||||
}
|
|
||||||
$(function() {
|
|
||||||
activate_search('#{j @view}', '#{j t(".search_placeholder.#{@view}")}');
|
|
||||||
});
|
|
||||||
|
|
||||||
= render 'shared/articles_by/common', order: @order
|
= render 'shared/articles_by/common', order: @order
|
||||||
|
|
|
@ -38,6 +38,16 @@ class Message < ActiveRecord::Base
|
||||||
self.recipients_ids += users.collect(&:id) unless users.blank?
|
self.recipients_ids += users.collect(&:id) unless users.blank?
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def group_id=(group_id)
|
||||||
|
@group_id = group_id
|
||||||
|
add_recipients Group.find(group_id).users unless group_id.blank?
|
||||||
|
end
|
||||||
|
|
||||||
|
def order_id=(order_id)
|
||||||
|
@order_id = order_id
|
||||||
|
add_recipients Order.find(order_id).users_ordered unless order_id.blank?
|
||||||
|
end
|
||||||
|
|
||||||
def recipient_tokens=(ids)
|
def recipient_tokens=(ids)
|
||||||
@recipient_tokens = ids
|
@recipient_tokens = ids
|
||||||
add_recipients ids.split(",").collect { |id| User.find(id) }
|
add_recipients ids.split(",").collect { |id| User.find(id) }
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
/ insert_after 'erb:contains("title t(\'.title\'")'
|
||||||
|
- content_for :actionbar do
|
||||||
|
- if FoodsoftMessages.enabled?
|
||||||
|
= link_to_new_message message_params: {order_id: @order.id}
|
Loading…
Add table
Reference in a new issue