Advertisement
chrissharp123

Untitled

Nov 2nd, 2018
422
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.24 KB | None | 0 0
  1. {
  2.  
  3. "checkout.due" :
  4.     { "context_org" : "circ_lib",
  5.       "filter"      :
  6.             { "checkin_time"  : null,
  7.               "-or"           :
  8.                     [ { "stop_fines"  : ["MAXFINES", "LONGOVERDUE"] },
  9.                       { "stop_fines"  : null }
  10.                     ]
  11.             }
  12.     },
  13. "checkout.due.email_notify" :
  14.     { "context_org" : "circ_lib",
  15.       "filter"      :
  16.             { "checkin_time"  : null,
  17.               "-or"           :
  18.                     [ { "stop_fines"  : ["MAXFINES", "LONGOVERDUE"] },
  19.                       { "stop_fines"  : null }
  20.                     ],
  21.                                 "-exists" : {
  22.                 "select" : {"au" : ["id"]},
  23.                 "from"   : "au",
  24.                 "where"  : {
  25.                     "email" : { "!=" : null },
  26.                     "id" : { "=" : {"+circ" : "usr"} }
  27.                 }
  28.             }
  29.         }
  30.     },
  31. "au.created" :
  32.     { "context_org":"home_ou",
  33.       "filter":
  34.             {
  35.               "active":"t",
  36.               "deleted":"f"
  37.             }
  38.     },
  39. "au.expired" :
  40.     { "context_org" : "home_ou",
  41.       "filter":
  42.             {
  43.               "active":"t",
  44.               "deleted":"f"
  45.             }
  46.     }
  47.  
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement