Announcement

Collapse
No announcement yet.

Need to filter My Calls

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Need to filter My Calls

    I want to filter the calls in My Calls to be only now and into the future.
    I still want the full Calls listing to show everything
    Can I accomplish this?

  • #2
    /client/modules/crm/src/views/dashlets/calls.js

    Define dateStart filter:

    PHP Code:
                searchData: {
                    
    bool: {
                        
    onlyMytrue,
                    },
                    
    advanced: {
                        
    status: {
                            
    type'notIn',
                            
    value: ['Held''Not Held']
                        },
                        
    dateStart: {
                            
    type'future',
                            
    dateTimetrue
                        
    }
                    }
                }, 
    Clear cache

    Comment


    • #3
      It's also to define custom view for dashlet

      1. Create custom/Espo/Custom/Resources/metadata/dashlets/Calls.js
      {"view":"Customashlets.Calls"}

      2. Create client/custom/src/views/dashlets/calls.js

      Comment


      • #4
        I think i will add this filter as an option for the next version.

        Comment

        Working...
        X