Using one pod to find related information and update another pod
-
Hello, I have the following setup.
pod called ‘televisoes’ with records like:
'manufactuer_model' => 'UN32H5203' , 'manufacturer' => 'Samsung', 'LED' => ' ', //Yes/No 'Plasma' => ' ', //Yes/No 'Smart_Tv' => ' ', //Yes/No 'EAN_Code' => ' ', //Number 'UPC_Code' => ' ' //Number
and so on.
and then I got another pod called ‘ofertas’, with offers from several merchants, and records like:
'Description' => 'Samsung 32" 1080p 60Hz LED Smart TV (UN32H5203) - Black' , 'EAN_Code' => '1234567890123 ', 'UPC_Code' => '012345678901 '
and so on.
So what I need to to is to grow my unique product database (pod called ‘televisoes’), with all the info I can find on the offers.
So I want to first check the the field description on the pod ‘ofertas’ to see if the manufactuer_model i’m seaching exist in there.
and after that I need to pass some data from one to another.
I know its a bit much what i’m asking, but I’m not sure which pod should I loop first, and how to fetch and loop trough the data using pods.
Any help is very welcome, thanks in advance.
- The topic ‘Using one pod to find related information and update another pod’ is closed to new replies.