You are not logged in.
Pages: 1
Dear developer team,
I have one question. It is possible administrate a financial information per purchase, instead per installation?
Assume, that I buy a one license of software. I fill the financial information per install. By that time no problem.
In a few month more, I find this software useful and buy next 1000 licenses (same version but different serial number).
Oups, I must fill the same data for each installed license, because it is impossible to write only once for this purchase.
Use a "free" or "global" type of license is inapplicable for me.
How to do that?
Thank you,
Yours sincerely,
B. Michelsz
Debian 11, GLPI 10.0.6, OCS 2.3.1, MariaDB 10.5.18, Apache 2.4.52, PHP 7.4.33
Offline
I shall reply myself
Each license in table glpi_license has one record (example dump (truncated))
mysql> select * from glpi_licenses where serial like '%17';
+------+------+---------+-------------+--------+-----+--------------+-----+----------+
| ID | sID | version | serial | expire | oem | oem_computer | buy | comments |
+------+------+---------+-------------+--------+-----+--------------+-----+----------+
| 5509 | 3943 | 2007 | AC-XXXXXX17 | NULL | 0 | -1 | 1 | |
| 5510 | 3943 | 2007 | AC-XXXXXX17 | NULL | 0 | -1 | 1 | |
...
| 5657 | 3943 | 2007 | AC-XXXXXX17 | NULL | 0 | -1 | 1 | |
| 5658 | 3943 | 2007 | AC-XXXXXX17 | NULL | 0 | -1 | 1 | |
+------+------+---------+-------------+--------+-----+--------------+-----+----------+
150 rows in set (0.09 sec)
so I suppose that it is impossible add an one financial information per serial (purchase).
Or not?
B.M.
Debian 11, GLPI 10.0.6, OCS 2.3.1, MariaDB 10.5.18, Apache 2.4.52, PHP 7.4.33
Offline
Pages: 1