Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. (
  2. $parts := [
  3. {
  4. "Part_Key": 1,
  5. "Part_No_Revision": "Screw"
  6. },
  7. {
  8. "Part_Key": 2,
  9. "Part_No_Revision": "Wall Bracket"
  10. },
  11. {
  12. "Part_Key": 3,
  13. "Part_No_Revision": "Oak Board"
  14. },
  15. {
  16. "Part_Key": 4,
  17. "Part_No_Revision": "Floating Shelf"
  18. }
  19. ];
  20.  
  21. $bomParts := [
  22. {
  23. "Part_Key": 4,
  24. "Component_Part_Key": 1
  25. },
  26. {
  27. "Part_Key": 4,
  28. "Component_Part_Key": 2
  29. },
  30. {
  31. "Part_Key": 4,
  32. "Component_Part_Key": 3
  33. }
  34. ];
  35.  
  36. $innerJoin(
  37. $parts,
  38. $bomParts,
  39. "Part_Key",
  40. "Part_Key",
  41. "bomParts",
  42. {
  43. "grouped": true
  44. }
  45. );
  46. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement