Hello
Please view the following abridged payload from a PurchaseOrder request:
{"request_id"=>"6501dc4b2b36d7a0b5fe32bb",
"complexity"=>257,
"data"=>
{"id"=>"UHVyY2hhc2VPcmRlcjoxNTk1MTg3",
"line_items"=>
{"edges"=>
[{"node"=>
{"id"=>"UHVyY2hhc2VPcmRlckxpbmVJdGVtOjIzMDQ5ODcw",
"expiration_lots"=>
{"edges"=>
[{"node"=>
{"id"=>"TG90OjE0NDE0NQ==",
"po_id"=>"UHVyY2hhc2VPcmRlcjoxNTgxNTkz",
"is_active"=>true}}]}}},
...
I am noticing that for some of our purchase_orders, the id
of the purchase order UHVyY2hhc2VPcmRlcjoxNTk1MTg3
does not match the po_id
of the expiration_lots attached to one of its line_items: UHVyY2hhc2VPcmRlcjoxNTgxNTkz
.
Is the po_id
of the expiration_lot a denormalized value of when the expiration_lot was first received? In this case, on a different PO?
Thank you!