Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* KASUS GANTI HARGA DI SERVICE EXTERNAL BERDASARKAN CODE */
- select * from service_external_pickup_receives sepr where code = 'SR.2404.00485';
- select * from se_product_change_parts spcp where service_external_pickup_receive_id = 3739;
- /* diambil dari id yang dihasilkan dari table service_external_pickup_receives */
- select * from se_product_change_part_spareparts spcps where se_product_change_part_id = 1963;
- /* diambil dari id yang dihasilkan dari table se_product_change_parts*/
- /*/biasa nya ada yang untuk pergantian harga di accesories, untuk querynya hampir sama dengan di table se_product_change_part */
- select * from se_product_change_part_accesories spcpa where se_product_change_part_id = 1963;
- /*setelah sudah dapat data yang diperlukan, update kolom price dan total_price di table se_product_change_part_spareparts atau di tabel se_product_change_part_accesories. Note: untuk update kolom price dan total price disesuaikan dengan permintaan user*/
- /* happy coding :)*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement