first commit

This commit is contained in:
2024-11-05 12:22:50 +01:00
commit e5682a3912
19641 changed files with 2948548 additions and 0 deletions

View File

@@ -0,0 +1,112 @@
<?php
/**
* Copyright since 2007 PrestaShop SA and Contributors
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License 3.0 (AFL-3.0)
* that is bundled with this package in the file LICENSE.md.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/AFL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
*/
class AdminAjaxPsgdprController extends ModuleAdminController
{
/**
* @var Psgdpr
*/
public $module;
/**
* This function allow to delete users
*/
public function ajaxProcessDeleteCustomer()
{
$delete = Tools::getValue('delete');
$value = Tools::getValue('value');
$this->module->deleteCustomer($delete, $value);
}
/**
* Return all customers matches for the search
*
* @throws PrestaShopDatabaseException
*/
public function ajaxProcessSearchCustomers()
{
$searches = explode(' ', Tools::getValue('customer_search'));
$customers = [];
$searches = array_unique($searches);
foreach ($searches as $search) {
if (!empty($search) && $results = Customer::searchByName($search, 50)) {
foreach ($results as $result) {
if ($result['active']) {
$result['fullname_and_email'] = $result['firstname'] . ' ' . $result['lastname'] . ' - ' . $result['email'];
$customers[$result['id_customer']] = $result;
}
}
}
}
if (!empty($customers) && !Tools::getValue('sf2')) {
$customerList = [];
foreach ($customers as $customer) {
array_push($customerList, [
'id_customer' => $customer['id_customer'],
'firstname' => $customer['firstname'],
'lastname' => $customer['lastname'],
'email' => $customer['email'],
'birthday' => $customer['birthday'],
'nb_orders' => Order::getCustomerNbOrders($customer['id_customer']),
'customerData' => [],
]);
}
$to_return = [
'customers' => $customerList,
'found' => true,
];
} else {
$to_return = Tools::getValue('sf2') ? [] : ['found' => false];
}
$this->ajaxDie(json_encode($to_return));
}
/**
* Return all collected for the giver customer
*
* @throws PrestaShopException
*/
public function ajaxProcessGetCustomerData()
{
$delete = Tools::getValue('delete');
$value = Tools::getValue('value');
$return = $this->module->getCustomerData($delete, $value);
$this->ajaxDie(json_encode($return['data']));
}
/**
* check if there are orders associated to the customer
*
* @throws PrestaShopDatabaseException
*/
public function ajaxProcessDownloadInvoicesByCustomer()
{
$id_customer = Tools::getValue('id_customer');
$order_invoice_list = (int) Db::getInstance()->getValue('SELECT COUNT(1)
FROM `' . _DB_PREFIX_ . 'order_invoice` oi
LEFT JOIN `' . _DB_PREFIX_ . 'orders` o ON (o.`id_order` = oi.`id_order`)
WHERE o.id_customer =' . (int) $id_customer . '
AND oi.number > 0');
$this->ajaxDie(json_encode($order_invoice_list));
}
}

View File

@@ -0,0 +1,88 @@
<?php
/**
* Copyright since 2007 PrestaShop SA and Contributors
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License 3.0 (AFL-3.0)
* that is bundled with this package in the file LICENSE.md.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/AFL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
*/
class AdminDownloadInvoicesPsgdprController extends ModuleAdminController
{
/**
* Download invoice
*/
public function postProcess()
{
$id_customer = (int) Tools::getValue('id_customer');
if (!empty($id_customer)) {
$this->downloadInvoices($id_customer);
}
}
/**
* download all invoices from specific customer into one .pdf file
*
* @param int $id_customer
*/
public function downloadInvoices($id_customer)
{
$order_invoice_collection = $this->getCustomerInvoiceList($id_customer);
if (empty($order_invoice_collection)) {
return;
}
$this->generatePDF($order_invoice_collection, PDF::TEMPLATE_INVOICE);
}
/**
* get all the invoices from specific customer into a list
*
* @param int $id_customer
*
* @return array|ObjectModel[]
*
* @throws PrestaShopDatabaseException
* @throws PrestaShopException
*/
public function getCustomerInvoiceList($id_customer)
{
$order_invoice_list = Db::getInstance()->executeS('SELECT oi.*
FROM `' . _DB_PREFIX_ . 'order_invoice` oi
LEFT JOIN `' . _DB_PREFIX_ . 'orders` o ON (o.`id_order` = oi.`id_order`)
WHERE o.id_customer =' . (int) $id_customer . '
AND oi.number > 0');
if (empty($order_invoice_list)) {
return [];
}
return ObjectModel::hydrateCollection('OrderInvoice', $order_invoice_list);
}
/**
* generate a .pdf file
*
* @param ObjectModel[] $object
* @param string $template
*
* @throws PrestaShopException
*/
public function generatePDF($object, $template)
{
$pdf = new PDF($object, $template, Context::getContext()->smarty);
$pdf->render(true);
}
}

View File

@@ -0,0 +1,28 @@
<?php
/**
* Copyright since 2007 PrestaShop SA and Contributors
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License 3.0 (AFL-3.0)
* that is bundled with this package in the file LICENSE.md.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/AFL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* @author PrestaShop SA <contact@prestashop.com>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
*/
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
header('Cache-Control: no-store, no-cache, must-revalidate');
header('Cache-Control: post-check=0, pre-check=0', false);
header('Pragma: no-cache');
header('Location: ../');
exit;