Fixed customer change of ticket.

This commit is contained in:
Martin Edenhofer 2013-07-19 23:47:24 +02:00
parent 9224a183e7
commit 0aec08cc1f
2 changed files with 2 additions and 2 deletions

View file

@ -451,7 +451,7 @@ class App.ControllerForm extends App.Controller
select: ( event, ui ) => select: ( event, ui ) =>
b(event, ui.item) b(event, ui.item)
) )
@delay( a, 180 ) @delay( a, 280 )
# working_hour # working_hour
else if attribute.tag is 'working_hour' else if attribute.tag is 'working_hour'

View file

@ -3,7 +3,7 @@ class App.TicketCustomer extends App.ControllerModal
super super
@render() @render()
render: -> render: ->
configure_attributes = [ configure_attributes = [
{ name: 'customer_id', display: 'Customer', tag: 'autocompletion', type: 'text', limit: 100, null: false, relation: 'User', class: 'span5', autocapitalize: false, help: 'Select the new customer of the Ticket.', source: 'api/users/search', minLengt: 2 }, { name: 'customer_id', display: 'Customer', tag: 'autocompletion', type: 'text', limit: 100, null: false, relation: 'User', class: 'span5', autocapitalize: false, help: 'Select the new customer of the Ticket.', source: 'api/users/search', minLengt: 2 },
] ]