Advertisement
Guest User

Untitled

a guest
Dec 18th, 2014
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. <entity name="products_product"
  2. query="SELECT id, merchant_id, product_id, retail_price, date_created FROM products_product"
  3. transformer="script:generate_resource_uri">
  4.  
  5.  
  6. <entity name="merchant"
  7. query="SELECT merchant_name, commission, commission_type FROM products_merchant"
  8. cacheKey='id' cacheLookup='products_product.merchant_id'
  9. cacheImpl="SortedMapBackedCache">
  10. <!-- where="id=products_product.merchant_id"> -->
  11. <field column="merchant_name" name="merchant_name"/>
  12. <field column="commission" name="commission"/>
  13. <field column="commission_type" name="commission_type"/>
  14. </entity>
  15. </entity>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement