mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
31 lines
1016 B
PHP
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; |