Guest User

Untitled

a guest
Mar 19th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. const a = produto
  2. .then(R.head)
  3. .then(mapProduct)
  4. .then(console.log)
  5.  
  6. const produto = erp
  7. .from('VIASOFTBASE.ITEM')
  8. .innerJoin(
  9. 'VIASOFTMCP.ITEMPRVDA',
  10. 'VIASOFTBASE.ITEM.IDITEM',
  11. 'VIASOFTMCP.ITEMPRVDA.IDITEM'
  12. )
  13. .limit(1)
Add Comment
Please, Sign In to add comment