<field name="id" reporter:datatype="id" />
<field name="last_xact_id" />
<field name="marc" />
- <field name="source" />
+ <field name="source" reporter:datatype="link"/>
<field reporter:label="Control Set" name="control_set" reporter:datatype="link"/>
<field reporter:label="Owner" name="owner" reporter:datatype="org_unit"/>
<field name="heading" />
<link field="notes" reltype="has_many" key="record" map="" class="arn"/>
<link field="bib_links" reltype="has_many" key="authority" map="" class="abl"/>
<link field="fixed_fields" reltype="might_have" key="record" map="" class="ard"/>
+ <link field="source" reltype="has_a" key="id" map="" class="cbs"/>
</links>
<permacrud xmlns="http://open-ils.org/spec/opensrf/IDL/permacrud/v1">
<actions>
this.gridSource = new GridDataSource();
this.gridSource.getRows = (pager: Pager) => {
- return this.pcrud.search('are', {id: {'>': 0}}
+ return this.pcrud.search('are',
+ {id: {'>': 0}},
+ {flesh: 1,
+ flesh_fields: {are: ['ash', 'cbs']}}
);
};
}