Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This document shows how users can use JQL to find orders matching specific criteria. One benefit of the new JQL functionality is that we can configure things such as conditional approvals , create queues and even generate reports.

We’ve introduced functionality to search against the following Checkout properties:

  • Total

  • Order Status

  • Department Budget

  • Department Code

  • Department Name

  • Address Street Number

  • Address State

  • Address Country

  • Address Postal Code

The following values are searchable in a Checkout Order.

Attribute

JQL Reference

Type

Total

issue.property['com.mumosystems.checkout-order'].total

Number

Order Status

issue.property['com.mumosystems.checkout-order'].status

Text

Department Budget

issue.property['com.mumosystems.checkout-order'].department.budget

Number

Department Code

issue.property['com.mumosystems.checkout-order'].department.code

Text

Department Name

issue.property['com.mumosystems.checkout-order'].department.name

Text

Address Street Number

issue.property['com.mumosystems.checkout-order'].address.address

Text

Address State

issue.property['com.mumosystems.checkout-order'].address.state

Text

Address Country

issue.property['com.mumosystems.checkout-order'].address.country

Text

Address Postal Code

issue.property['com.mumosystems.checkout-order'].address.code

Text

Total

Every Checkout order has a total price associated with it.

...

Code Block
issue.property['com.mumosystems.checkout-order'].department.namecode ~ "TD"

Address Fields

The following information about an address can be searched:

...

Each address field is searchable as a text field.

wide
Code Block
breakoutMode
//Search for all tickets delivered to 6000 Grand Ave street address.
issue.property['com.mumosystems.checkout-order'].address.address ~ "6000 Grand Ave"

//Search for all tickets with an order placed to Iowa.
issue.property['com.mumosystems.checkout-order'].address.state ~ "Iowa"

//To search for a full address, perform a search like the following:  
issue.property['com.mumosystems.checkout-order'].address.address ~  "6000  Grand Ave" AND    
issue.property['com.mumosystems.checkout-order'].address.state ~ "Iowa" AND 
issue.property['com.mumosystems.checkout-order'].address.country  ~ "United States Of America" AND 
issue.property['com.mumosystems.checkout-order'].address.postalCode ~ "50265"

...