I have a "product name" filed inside product module, Hence I can select drop down list value.
here my drop down list code:
Utils_CommonDataCommon::new_array('Custom/SalesProduct/Type',array(
1=>'Car',
10=>'Motor',
9=>'TV',
6=>'Radio',
8=>'Astro',
7=>'TV3',
4=>'TV7',
24=>'AXN',
2=>'TV8'
),true,true);
then will store to the database by the in front number, eg: I select Motor will store to database is 10.
Then I have a service module add to the product addon use to record the product service, when i click the add new service, how can I pass the value "Product name" to the service module? Mean the service module's "product name" filed will auto select the product name.
Please help me solve the problem.
Thanks