Difference between revisions of "Module Barcode (developer)"

From Dolibarr ERP CRM Wiki
Jump to navigation Jump to search
(New page: Category:Barcode {{ToTranslate}} {{BasculeDevUserEn| name=Barcode| devdoc=This page| userdoc=}} {{TemplateDocDevEn}} == Fonction == Gestion des codes barre. ''Numéro : 55'' == P...)
 
Tag: 2017 source edit
 
(16 intermediate revisions by 4 users not shown)
Line 1: Line 1:
 +
<!-- BEGIN origin interlang links -->
 +
<!-- You can edit this section but do NOT remove these comments
 +
    Links below will be automatically replicated on translated pages by PolyglotBot -->
 +
[[fr:Module_Codes_Barre_(développeur)]]
 +
[[es:Módulo_Código_de_barra_(desarrollador)]]
 +
[[de:Modul_Barcode_(Developer)]]
 +
<!-- END interlang links -->
 +
 
[[Category:Barcode]]
 
[[Category:Barcode]]
{{ToTranslate}}
+
[[Category:List of Modules (developer)‎]]
 +
{{TemplateDocDevEn}}
 +
{{TemplateModEN}}
 
{{BasculeDevUserEn|
 
{{BasculeDevUserEn|
name=Barcode|  
+
name=Barcode|
 +
num=55|  
 
devdoc=This page|
 
devdoc=This page|
userdoc=}}
+
userdoc=[[Module Barcode]]}}
{{TemplateDocDevEn}}
+
 
 +
 
 +
 
 +
 
 +
 
  
  
== Fonction ==
 
Gestion des codes barre.
 
  
''Numéro : 55''
 
  
 +
= Function =
 +
Management of barcode.
 +
This add ability to enter a barcode value for products or third parties and to see graphical barcodes where it suits.
  
== Permission ==
+
= Permissions =
 
*->barcode->lire
 
*->barcode->lire
 
*->barcode->creer
 
*->barcode->creer
 
*->barcode->supprimer
 
*->barcode->supprimer
  
== Tables SQL ==
+
= Tables SQL =
A compléter
+
No table. The barcode and the format of barcode is stored into the table of the object the barcode is related to. For example the barcode of a product and its format is stored into [[Table llx_product]]
 +
 
 +
= PHP Code =
 +
This is a sample of code to generate an image of a barcode in Dolibarr:
 +
 
 +
<syntaxhighlight lang="php">
 +
TODO
 +
</syntaxhighlight>

Latest revision as of 19:38, 31 March 2024

Barcode
Numero/ID of module 55
User doc. of module Module Barcode
Developer doc. of module This page





Function

Management of barcode. This add ability to enter a barcode value for products or third parties and to see graphical barcodes where it suits.

Permissions

  • ->barcode->lire
  • ->barcode->creer
  • ->barcode->supprimer

Tables SQL

No table. The barcode and the format of barcode is stored into the table of the object the barcode is related to. For example the barcode of a product and its format is stored into Table llx_product

PHP Code

This is a sample of code to generate an image of a barcode in Dolibarr:

TODO