Merge branch 'develop' of git.znuny.com:zammad/zammad into develop

This commit is contained in:
Martin Edenhofer 2017-11-17 11:40:47 +01:00
commit f627df1447
3 changed files with 34 additions and 23 deletions

View file

@ -1,6 +1,16 @@
<!--
Hi there - thanks for filling an issue. Please ensure the following things before creating an issue - thank you! 🤓
Hi there - thanks for filing an issue. Please ensure the following things before creating an issue - thank you! 🤓
Since november 15th we handle all requests, except real bugs, at our community board.https://community.zammad.org/t/major-change-regarding-github-issues-community-board/21
Please post:
- Feature requests
- Development questions
- Technical questions
on the board.
If you think you hit a bug, please continue:
- Search existing issues and the CHANGELOG.md for your issue - there might be a solution already
- Make sure to use the latest version of Zammad if possible
- Add the `log/production.log` file from your system. Attention: Make sure no confidential data is in it!
@ -8,7 +18,7 @@ Hi there - thanks for filling an issue. Please ensure the following things befor
- Don't remove the template - otherwise we will close the issue without further comments
- Ask questions about Zammad configuration and usage at our mailinglist. See: https://zammad.org/participate
Note: We always do our best. Unfortunately, sometimes the requests are too much and we can't handle everything at once. If you want to prioritize/escalate your issue, you can do so by means of a support contract (see https://zammad.com/pricing#selfhosted).
Note: We always do our best. Unfortunately, sometimes there are too many requests and we can't handle everything at once. If you want to prioritize/escalate your issue, you can do so by means of a support contract (see https://zammad.com/pricing#selfhosted).
* The upper textblock will be removed automatically when you submit your issue *
-->
@ -35,3 +45,4 @@ Note: We always do our best. Unfortunately, sometimes the requests are too much
*
Yes I'm sure this is a bug and no feature request or a general question.

View file

@ -114,7 +114,7 @@ returns
order_by = "tickets.#{order_by} #{overview.order[:direction]}"
# check if group by exists
if overview.group_by && !overview.group_by.empty?
if overview.group_by.present?
group_by = overview.group_by
if !ticket_attributes.key?(group_by)
group_by = if ticket_attributes.key?("#{group_by}_id")

View file

@ -3,7 +3,7 @@ require 'test_helper'
class TicketTest < ActiveSupport::TestCase
test 'ticket create' do
ticket = Ticket.create(
ticket = Ticket.create!(
title: "some title\n äöüß",
group: Group.lookup(name: 'Users'),
customer_id: 2,
@ -19,7 +19,7 @@ class TicketTest < ActiveSupport::TestCase
assert_equal(ticket.state.name, 'new', 'ticket.state verify')
# create inbound article #1
article_inbound1 = Ticket::Article.create(
article_inbound1 = Ticket::Article.create!(
ticket_id: ticket.id,
from: 'some_sender@example.com',
to: 'some_recipient@example.com',
@ -44,7 +44,7 @@ class TicketTest < ActiveSupport::TestCase
# create inbound article #2
travel 2.seconds
article_inbound2 = Ticket::Article.create(
article_inbound2 = Ticket::Article.create!(
ticket_id: ticket.id,
from: 'some_sender@example.com',
to: 'some_recipient@example.com',
@ -68,7 +68,7 @@ class TicketTest < ActiveSupport::TestCase
assert_nil(ticket.close_at, 'ticket.close_at verify - inbound')
# create note article
article_note = Ticket::Article.create(
article_note = Ticket::Article.create!(
ticket_id: ticket.id,
from: 'some person',
subject: "some\nnote",
@ -92,7 +92,7 @@ class TicketTest < ActiveSupport::TestCase
# create outbound article
travel 2.seconds
article_outbound = Ticket::Article.create(
article_outbound = Ticket::Article.create!(
ticket_id: ticket.id,
from: 'some_recipient@example.com',
to: 'some_sender@example.com',
@ -115,7 +115,7 @@ class TicketTest < ActiveSupport::TestCase
assert_nil(ticket.close_at, 'ticket.close_at verify - outbound')
# create inbound article #3
article_inbound3 = Ticket::Article.create(
article_inbound3 = Ticket::Article.create!(
ticket_id: ticket.id,
from: 'some_sender@example.com',
to: 'some_recipient@example.com',
@ -140,7 +140,7 @@ class TicketTest < ActiveSupport::TestCase
# create inbound article #4
travel 2.seconds
article_inbound4 = Ticket::Article.create(
article_inbound4 = Ticket::Article.create!(
ticket_id: ticket.id,
from: 'some_sender@example.com',
to: 'some_recipient@example.com',
@ -192,7 +192,7 @@ class TicketTest < ActiveSupport::TestCase
assert_nil(ticket.pending_time)
# delete article
article_note = Ticket::Article.create(
article_note = Ticket::Article.create!(
ticket_id: ticket.id,
from: 'some person',
subject: 'some note',
@ -218,7 +218,7 @@ class TicketTest < ActiveSupport::TestCase
end
test 'ticket latest change' do
ticket1 = Ticket.create(
ticket1 = Ticket.create!(
title: 'latest change 1',
group: Group.lookup(name: 'Users'),
customer_id: 2,
@ -231,7 +231,7 @@ class TicketTest < ActiveSupport::TestCase
travel 1.minute
ticket2 = Ticket.create(
ticket2 = Ticket.create!(
title: 'latest change 2',
group: Group.lookup(name: 'Users'),
customer_id: 2,
@ -267,7 +267,7 @@ class TicketTest < ActiveSupport::TestCase
ticket.save!
end
ticket = Ticket.create(
ticket = Ticket.create!(
title: 'pending close test',
group: Group.lookup(name: 'Users'),
customer_id: 2,
@ -289,7 +289,7 @@ class TicketTest < ActiveSupport::TestCase
test 'ticket subject' do
ticket = Ticket.create(
ticket = Ticket.create!(
title: 'subject test 1',
group: Group.lookup(name: 'Users'),
customer_id: 2,
@ -307,7 +307,7 @@ class TicketTest < ActiveSupport::TestCase
Setting.set('ticket_hook_position', 'left')
ticket = Ticket.create(
ticket = Ticket.create!(
title: 'subject test 1',
group: Group.lookup(name: 'Users'),
customer_id: 2,
@ -325,7 +325,7 @@ class TicketTest < ActiveSupport::TestCase
Setting.set('ticket_hook_position', 'none')
ticket = Ticket.create(
ticket = Ticket.create!(
title: 'subject test 1',
group: Group.lookup(name: 'Users'),
customer_id: 2,
@ -348,7 +348,7 @@ class TicketTest < ActiveSupport::TestCase
origin_backend = Setting.get('ticket_number')
Setting.set('ticket_number', 'Ticket::Number::Increment')
ticket1 = Ticket.create(
ticket1 = Ticket.create!(
title: 'subject test 1234-1',
group: Group.lookup(name: 'Users'),
customer_id: 2,
@ -362,7 +362,7 @@ class TicketTest < ActiveSupport::TestCase
assert_equal(ticket1.id, Ticket::Number.check("Re: Help [Ticket##{ticket1.number}]").id)
Setting.set('ticket_number', 'Ticket::Number::Date')
ticket1 = Ticket.create(
ticket1 = Ticket.create!(
title: 'subject test 1234-2',
group: Group.lookup(name: 'Users'),
customer_id: 2,
@ -380,7 +380,7 @@ class TicketTest < ActiveSupport::TestCase
test 'article attachment helper 1' do
ticket1 = Ticket.create(
ticket1 = Ticket.create!(
title: 'some article helper test1',
group: Group.lookup(name: 'Users'),
customer_id: 2,
@ -392,7 +392,7 @@ class TicketTest < ActiveSupport::TestCase
assert(ticket1, 'ticket created')
# create inbound article #1
article1 = Ticket::Article.create(
article1 = Ticket::Article.create!(
ticket_id: ticket1.id,
from: 'some_sender@example.com',
to: 'some_recipient@example.com',
@ -466,7 +466,7 @@ class TicketTest < ActiveSupport::TestCase
test 'article attachment helper 2' do
ticket1 = Ticket.create(
ticket1 = Ticket.create!(
title: 'some article helper test2',
group: Group.lookup(name: 'Users'),
customer_id: 2,
@ -478,7 +478,7 @@ class TicketTest < ActiveSupport::TestCase
assert(ticket1, 'ticket created')
# create inbound article #1
article1 = Ticket::Article.create(
article1 = Ticket::Article.create!(
ticket_id: ticket1.id,
from: 'some_sender@example.com',
to: 'some_recipient@example.com',