initial commit, code generated by AI
This commit is contained in:
commit
872ca92934
3 changed files with 85 additions and 0 deletions
23
core/modules/modCzQrPay.class.php
Normal file
23
core/modules/modCzQrPay.class.php
Normal 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')
|
||||
);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue