User Tools

Site Tools


newdevs:angular_making_calls

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
newdevs:angular_making_calls [2023/12/12 19:13] – [Reading data from the database] fix one more copy/pasta sandbergjanewdevs:angular_making_calls [2024/03/28 22:53] – [Updating data in the database] add pcrud example sandbergja
Line 110: Line 110:
  
 The above assumes that you have injected the ''PcrudService'' as ''this.pcrud'' earlier in the file. The above assumes that you have injected the ''PcrudService'' as ''this.pcrud'' earlier in the file.
 +
 +==== NetService example ====
 +
 +Some interfaces need data in very specific formats, or need to use complicated JOINs
 +when querying the database.  In these cases, a nice approach is to create a custom
 +OpenSRF method in Perl and use the angular NetService to call it.  In this example,
 +we're calling the 'open-ils.acq.purchase_order.retrieve' OpenSRF method to gather a
 +ton of information about the purchase order with ID #1.  Refer to the OpenSRF method's
 +documentation to know which parameters you need to send with your request.
 +
 +    this.net.request(
 +        'open-ils.acq',
 +        'open-ils.acq.purchase_order.retrieve',
 +        this.auth.token(),
 +        1, {
 +            flesh_provider: true,
 +            flesh_notes: true,
 +            flesh_po_items: true,
 +            flesh_po_items_further: true,
 +            flesh_price_summary: true,
 +            flesh_lineitem_count: true
 +        }
 +    ).subscribe(po => console.log(po));
 +    
 +The above assumes that you have injected the ''NetService'' as ''this.net'' and the ''AuthService'' as ''this.auth'' earlier in the file.
 +
 ===== Updating data in the database ===== ===== Updating data in the database =====
 +==== PcrudService example ====
 +
 +The basic workflow for updating data in the database is to:
 +
 +  - Retrieve the object you wish to change.
 +  - Make your changes in memory.
 +  - Use the Pcrud service's ''update'' method to save the change to the database.
 +
 +
 +The following example retrieves the item with ID #1, changes its barcode to 1234567 in memory, then saves the updated barcode to the database:
 +
 +    this.pcrud.retrieve('acp', 1)
 +        .pipe(switchMap((item) => {
 +            item.barcode('1234567');
 +            return this.pcrud.update(item);
 +    })).subscribe();
 +
 +Notice that we use the rxjs ''switchMap'' operator to switch our observable halfway through, from a `retrieve` call to an `update` call.  This helps us to avoid nesting RxJs subscriptions within each other, which can get very complicated to troubleshoot.
  
-Examples coming soon 
  
 +==== NetService example ====
  
 +coming soon
 ===== Deleting data in the database ===== ===== Deleting data in the database =====
  
newdevs/angular_making_calls.txt · Last modified: 2024/03/28 23:16 by sandbergja

Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 4.0 International
CC Attribution-Share Alike 4.0 International Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki

© 2008-2022 GPLS and others. Evergreen is open source software, freely licensed under GNU GPLv2 or later.
The Evergreen Project is a U.S. 501(c)3 non-profit organization.