vtenext/modules/PDFMaker/SavePDFBreakline.php
2021-04-28 20:10:26 +02:00

31 lines
1016 B
PHP

<?php
/*************************************
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
* SPDX-License-Identifier: AGPL-3.0-only
************************************/
global $adb,$table_prefix;
$crmid = $_REQUEST["pid"];
$sql="DELETE FROM ".$table_prefix."_pdfmaker_breakline WHERE crmid=?";
$adb->pquery($sql,array($crmid));
$breaklines = rtrim($_REQUEST["breaklines"],"|");
if($breaklines!="")
{
$show_header=0;
$show_subtotal=0;
if($_REQUEST["show_header"]=="true")
$show_header=1;
if($_REQUEST["show_subtotal"]=="true")
$show_subtotal=1;
$products = explode("|",$breaklines);
for($i=0;$i<count($products);$i++)
{
list($productid,$sequence) = explode("_", $products[$i],2);
$sql="INSERT INTO ".$table_prefix."_pdfmaker_breakline (crmid, productid, sequence, show_header, show_subtotal) VALUES(?, ?, ?, ? ,?)";
$adb->pquery($sql, array($crmid, $productid, $sequence, $show_header, $show_subtotal));
}
}
exit;