Files
crm.twinpol.com/modules/EcmPrices/importproductrels.php

10 lines
447 B
PHP
Raw Permalink Normal View History

2025-05-12 15:44:39 +00:00
<?
$GLOBALS['db']->query("truncate table ecmprices_ecmproducts");
$w=$GLOBALS['db']->query("select * from pricebookproductrel");
while($r=$GLOBALS['db']->fetchByAssoc($w)) {
if($GLOBALS['db']->query("insert into ecmprices_ecmproducts values('".create_guid()."','".$r['pricebookid']."','".$r['productid']."','0','".$r['listprice']."','1','".date("Y-m-d H:i:s")."','".date("Y-m-d H:i:s")."','1')"))print "ok";
else print "no";
print "<br>";
}
?>