// fines summary
fieldmapper.standardRequest(
['open-ils.actor', 'open-ils.actor.user.fines.summary'],
- { async : true,
+ { async : false,
params : [this.authtoken, this.patron.id()],
oncomplete : function(r) {
var summary = openils.Util.readResponse(r);
fieldmapper.standardRequest(
['open-ils.circ', 'open-ils.circ.actor.user.checked_out.atomic'],
{
- async : true,
+ async : false,
params : [this.authtoken, this.patron.id()],
oncomplete : function(r) {
var resp = openils.Util.readResponse(r);
fieldmapper.standardRequest( // fetch the hold IDs
['open-ils.circ', 'open-ils.circ.holds.id_list.retrieve'],
- { async : true,
+ { async : false,
params : [this.authtoken, this.patron.id()],
oncomplete : function(r) {
fieldmapper.standardRequest( // fetch the hold objects with fleshed details
['open-ils.circ', 'open-ils.circ.hold.details.batch.retrieve'],
- { async : true,
+ { async : false,
params : [self.authtoken, ids],
onresponse : function(rr) {
fieldmapper.standardRequest(
['open-ils.actor', 'open-ils.actor.user.transactions.have_balance.fleshed'],
- { async : true,
+ { async : false,
params : [this.authtoken, this.patron.id()],
oncomplete : function(r) {
progressDialog.hide();
fieldmapper.standardRequest(
['open-ils.circ', 'open-ils.circ.fire_circ_trigger_events'],
{
- async : true,
+ async : false,
params : params,
oncomplete : function(r) {
var resp = openils.Util.readResponse(r);
fieldmapper.standardRequest(
['open-ils.circ', 'open-ils.circ.fire_circ_trigger_events'],
{
- async : true,
+ async : false,
params : params,
oncomplete : function(r) {
progressDialog.hide();
fieldmapper.standardRequest(
['open-ils.circ', 'open-ils.circ.fire_hold_trigger_events'],
{
- async : true,
+ async : false,
params : params,
oncomplete : function(r) {
progressDialog.hide();
fieldmapper.standardRequest(
['open-ils.circ', 'open-ils.circ.money.payment_receipt.print'],
{
- async : true,
+ async : false,
params : [this.authtoken, paymentIds],
oncomplete : function(r) {
var resp = openils.Util.readResponse(r);
fieldmapper.standardRequest(
['open-ils.circ', 'open-ils.circ.fire_user_trigger_events'],
{
- async : true,
+ async : false,
params : params,
oncomplete : function(r) {
progressDialog.hide();