Skip to content
Snippets Groups Projects
  1. Oct 22, 2018
    • Peter Rotich's avatar
      Make Primary Queues Buckets · 78e7114b
      Peter Rotich authored
      This commit makes Primary Queues buckets for sub queues with forced inheritance of
      criteria. Primary queues are now hidden unless there are no sub queues
      attached. Agents can still get to primary queue by clicking on it.
      
      The commit also adds default sub queues for Closed queue, utilizing DateTime
      periods.
      78e7114b
  2. Oct 03, 2018
    • aydreeihn's avatar
      File Disposition · 0c6e9acc
      aydreeihn authored
      This commit ensures that we use the correct disposition for downloading files.
      0c6e9acc
  3. Oct 02, 2018
    • aydreeihn's avatar
      Attachment Names Issue · 86946d58
      aydreeihn authored
      This commit ensures that we will always get the correct attachment name regardless of if the file content is the same. Additionally, it ensures that the file_ids for attachments are compared in the correct order (elseifs)
      86946d58
  4. Oct 01, 2018
    • aydreeihn's avatar
      Attachment Names Issue · 08c0ac71
      aydreeihn authored
      This commit ensures that we will always get the correct attachment name regardless of if the file content is the same. Additionally, it ensures that the file_ids for attachments are compared in the correct order (elseifs)
      08c0ac71
  5. Sep 27, 2018
    • aydreeihn's avatar
      Form Attachment Issues · 31591904
      aydreeihn authored
      - Make sure we keep attachments in the session even if the page refreshes to display an error message
      - Reverse the array of files to be id => name instead of name => id
      - Make sure we retain the old ticket or task id if we encounter an error while trying to create a ticket or task from a thread entry
      - Make sure we have a valid fileId before returning file info
      - Make sure we can still add files for Canned Responses (id and name flip issue)
      - Make sure we can still add attachments to Internal Notes for Tickets and Tasks
      31591904
    • Peter Rotich's avatar
      Add period to DateTimeField · 7d3dfd0a
      Peter Rotich authored
      Add support for periods to DateTimeField allowing the search on range of
      dates based on set period like 'Today', 'This Quarter' or 'Last Week' etc.
      7d3dfd0a
  6. Sep 26, 2018
    • aydreeihn's avatar
      Ticket Sources · a20e98ed
      aydreeihn authored
      This commit ensures that we will always have the correct display of values for the Ticket Source regardless of if the key and value differ.
      Ex: if we had a Ticket Source that contained a space in the value, the key would be camelcased
      a20e98ed
  7. Sep 14, 2018
  8. Sep 13, 2018
    • aydreeihn's avatar
      Advanced Search Column Conditions · 417acb96
      aydreeihn authored
      This commit fixes an issue we had where the bolding on the Ticket Number and Subject columns of advanced searches showed the opposite of what they should have. We instead want them to be bold if the Tickets are Unanswered.
      417acb96
  9. Sep 12, 2018
    • aydreeihn's avatar
      Filter Action Validation Fixes · 3d45adc5
      aydreeihn authored
      - Let validate_actions pass if we are trying to disable/archive a Help Topic so that the filter flag can be set.
      - Make sure we do not throw validation errors when deleting a filter action. Just delete it.
      3d45adc5
    • Peter Rotich's avatar
      export: Field Display · 8adbd37d
      Peter Rotich authored
      Only use field display when fetch value is not string
      8adbd37d
    • aydreeihn's avatar
      Retain Help Topics for Emails · a4c02622
      aydreeihn authored
      If a Help Topic is disabled or archived and it is also selected as the Help Topic for an Email, make sure we do not remove that Help Topic from the Email. Instead, if that email receives a Ticket, we should just assign the ticket to the Default Help Topic. If there is no Default Help Topic, the Ticket will not have a Help Topic at all.
      a4c02622
    • Peter Rotich's avatar
      Add Queue Columns Annotation as Fields. · aa0924a8
      Peter Rotich authored
      aa0924a8
  10. Sep 11, 2018
  11. Sep 10, 2018
    • aydreeihn's avatar
      Oops: Creating Tickets with Attachments · da6075c4
      aydreeihn authored
      This addresses a careless copy/paste mistake made with 4496
      da6075c4
    • Peter Rotich's avatar
      DatetimeField: Format · 8623ed60
      Peter Rotich authored
      This commit adds the ability for DatetimeField to specify format string -
      this is useful when the field display requires specific format different
      from the system defined formats. For example during export.
      8623ed60
    • Peter Rotich's avatar
      Export: Make Export Fast Again · a0115226
      Peter Rotich authored
      This commit addresses longstanding memory and speed issues with ticket
      export especially when exporting large set of tickets.
      
      The implementation borrows heavily on Custom Columns, which introduced the
      idea of using placeholder field to parse the data from query (db) instead of
      making models to do the  parsing which led to related models getting fetched
      too -- and hence the memory issues.
      
      The commit also addresses caching of choices for selection fields and such
      to avoid expensive trips to database for each row!
      a0115226
  12. Sep 05, 2018
  13. Sep 04, 2018
    • aydreeihn's avatar
      Email Name Format · 015d45a6
      aydreeihn authored
      This commit further corrects issues where emails were being sent out with names being improperly formatted if the name format is set as 'Last, First' or if it has special characters.
      015d45a6
  14. Aug 31, 2018
    • JediKev's avatar
      oops: Selection Search Bug · 2f3ecc59
      JediKev authored
      This addresses an issue introduced with 4124 where searching for a Selection
      Field with the criteria "does not have a value" throws an `implode()`
      warning.
      2f3ecc59
  15. Aug 29, 2018
  16. Aug 28, 2018
    • aydreeihn's avatar
      Implement Referral Internal Notes · 74ed76b9
      aydreeihn authored
      This commit stores internal notes if an Agent includes one while creating a Thread Referral.
      74ed76b9
    • JediKev's avatar
      issue: Default Help Topic Issue Summary · 77e44464
      JediKev authored
      This addresses issue 4473 where users creating a ticket with the Help Topic
      preselected shows a validation error for the Issue Summary field. This is
      due to the new `getFormName()` function that creates new field form names
      based on the user’s/agent’s session. When the Help Topic is preselected,
      `_form` is not set for each field so the hashed name of the fields before
      ticket submit is different than after ticket submit.
      77e44464
  17. Aug 27, 2018
  18. Aug 24, 2018
    • aydreeihn's avatar
      Filter Action Saving Fix: · a3a144ec
      aydreeihn authored
      This commit fixes the way we validate filter actions before saving a filter. Now, the code will accurately validate the action without needing a filter_id first while making sure all validations stay withing the validate_actions function.
      a3a144ec
  19. Aug 23, 2018
    • JediKev's avatar
      issue: Image CID Attributes · 9fab35a5
      JediKev authored
      This addresses an issue where images in email signatures containing a
      `data-cid` attribute will either crash the ticket page or not show the image
      in the signature.
      9fab35a5
    • JediKev's avatar
      forms: Disabled By Help Topic Users · 0780eb7d
      JediKev authored
      This addresses issue 4470 where Users creating tickets via Client Portal and
      failing to fill out a required field makes disabled fields by Help Topic
      appear on the page. When the disabled fields appear they allow Users to
      populate and save data that they were not meant to submit.
      0780eb7d
  20. Aug 22, 2018
    • JediKev's avatar
      issue: CDATA Phone Contains · e9214c2e
      JediKev authored
      This addresses an issue where people who do not have a phone field on the
      contact information form go to search for a User in the User Directory and
      the system crashes. This is due to the search query that always contains the
      phone field variable. This only adds the phone variable to the search query
      if the field actually exists.
      e9214c2e
    • Peter Rotich's avatar
      Charset: Add generic transcode php_user_filter · 0ac985f9
      Peter Rotich authored
      This will be useful when converting content on the fly on write or read -
      allowing for support for output filter for file storage backend.
      0ac985f9
Loading