var e3 = document.getElementById( 'patron_claimed_returned' ); if (e3) e3.setAttribute('value','...');
var e4 = document.getElementById( 'patron_long_overdue' ); if (e4) e4.setAttribute('value','...');
var e5 = document.getElementById( 'patron_lost' ); if (e5) e5.setAttribute('value','...');
+ var e6 = document.getElementById( 'patron_noncat' ); if (e6) e6.setAttribute('value','...');
obj.network.simple_request(
'FM_CIRC_COUNT_RETRIEVE_VIA_USER',
[ ses(), obj.patron.id() ],
if (e5) e5.setAttribute('value', robj.lost );
}
);
+ obj.network.simple_request(
+ 'FM_ANCC_RETRIEVE_VIA_USER',
+ [ ses(), obj.patron.id() ],
+ function(req) {
+ var robj = req.getResultObject();
+ if (e6) e6.setAttribute('value',robj.length);
+ }
+ );
};
}
],
<label id="PatronSummaryStatus_lost_label" value="Lost:" class="text_left items_lost label"/>
<label id="patron_lost" class="items_lost value"/>
</row>
+ <row id="pdsgr6a">
+ <label id="PatronSummaryStatus_noncat_label" value="Non Cat:" class="text_left items_noncat label"/>
+ <label id="patron_noncat" class="items_noncat value"/>
+ </row>
</rows>
</grid>