initial commit, code generated by AI

This commit is contained in:
daaric 2026-02-08 19:00:38 +01:00
commit 872ca92934
3 changed files with 85 additions and 0 deletions

View file

@ -0,0 +1,23 @@
<?php
include_once DOL_DOCUMENT_ROOT .'/core/modules/DolibarrModules.class.php';
class modCzQrPay extends DolibarrModules
{
public function __construct($db)
{
$this->db = $db;
$this->numero = 104000;
$this->rights_class = 'czqrpay';
$this->family = "financial";
$this->name = 'czqrpay';
$this->description = "CZ QR Platba (SPD) for invoices and POS";
$this->version = '0.1';
$this->const_name = 'MAIN_MODULE_CZQRPAY';
$this->picto = 'payment';
$this->module_parts = array(
'hooks' => array('invoicecard','pdfgeneration','posreceipt')
);
}
}