|
Lines 186-192
our $to_api_mapping = {
Link Here
|
| 186 |
branchcode => 'library_id', |
186 |
branchcode => 'library_id', |
| 187 |
returndate => 'checkin_date', |
187 |
returndate => 'checkin_date', |
| 188 |
lastreneweddate => 'last_renewed_date', |
188 |
lastreneweddate => 'last_renewed_date', |
| 189 |
issuedate => 'checked_out_date', |
189 |
issuedate => 'checkout_date', |
| 190 |
notedate => 'note_date', |
190 |
notedate => 'note_date', |
| 191 |
}; |
191 |
}; |
| 192 |
|
192 |
|
|
Lines 202-208
our $to_model_mapping = {
Link Here
|
| 202 |
library_id => 'branchcode', |
202 |
library_id => 'branchcode', |
| 203 |
checkin_date => 'returndate', |
203 |
checkin_date => 'returndate', |
| 204 |
last_renewed_date => 'lastreneweddate', |
204 |
last_renewed_date => 'lastreneweddate', |
| 205 |
checked_out_date => 'issuedate', |
205 |
checkout_date => 'issuedate', |
| 206 |
note_date => 'notedate', |
206 |
note_date => 'notedate', |
| 207 |
}; |
207 |
}; |
| 208 |
|
208 |
|