Commit 280048ab11387ac26a4ec28ea64017192b2aee21
1 parent
75ef40cc
Exists in
master
and in
1 other branch
améliorationl libellés 4 formats étiquettes
Showing
4 changed files
with
10 additions
and
8 deletions
Show diff stats
CHANGES.txt
... | ... | @@ -83,7 +83,7 @@ Outre ces changements, voici d'autres changements importants : |
83 | 83 | ======= CHANGES ======= |
84 | 84 | |
85 | 85 | ------- |
86 | -03/09/2020 v3.7.9.93 (EP) | |
86 | +03/09/2020 v3.7.9.93-94 (EP) | |
87 | 87 | - (e) Nouveau format etiquette 19mm avec QrCode pour la nouvelle etiqueteuse Dymo MobileLabeler => format etiquette numéro 3 |
88 | 88 | |
89 | 89 | ------- | ... | ... |
README.md
... | ... | @@ -42,8 +42,8 @@ Logiciel testé et validé sur les configurations suivantes : |
42 | 42 | |
43 | 43 | -------------------------------------------------------------------------------------------- |
44 | 44 | |
45 | -Date: 03/09/2020 | |
46 | -Version: 3.7.9.93 | |
45 | +Date: 04/09/2020 | |
46 | +Version: 3.7.9.94 | |
47 | 47 | |
48 | 48 | |
49 | 49 | HISTORIQUE DES CHANGEMENTS DE VERSION : voir le fichier CHANGES.txt (ou la page web /pages/changes) | ... | ... |
src/Controller/MaterielsController.php
... | ... | @@ -3673,7 +3673,7 @@ class MaterielsController extends AppController { |
3673 | 3673 | |
3674 | 3674 | /* |
3675 | 3675 | * RUBAN (19mm) |
3676 | - * LABEL FOR PRINTER Dymo LabelManager PCII : 2 lines WITH LOGO | |
3676 | + * LABEL FOR PRINTER Dymo LabelManager PCII : 2 lines WITH QrCode | |
3677 | 3677 | * Format CRAL |
3678 | 3678 | */ |
3679 | 3679 | private function etiquette_format2($numeroLab, $organisme, $dateAcquisition, $numeroInventaireOrganisme) { | ... | ... |
src/Template/Configurations/edit.ctp
... | ... | @@ -103,16 +103,18 @@ function echoSection($title, $section) { |
103 | 103 | ]); |
104 | 104 | echo $this->Form->control('label_format_num', [ |
105 | 105 | 'options' => [ |
106 | - '1' => 1, | |
107 | - '2' => 2, | |
108 | - '3' => 3, | |
109 | - '4' => 4, | |
106 | + '1' => '1 - Etiquette 12mm, texte sur 2 lignes avec LOGO laboratoire (ruban, DYMO LabelManager PnP, IRAP)', | |
107 | + '2' => '2 - Etiquette 19mm, texte sur 2 lignes avec QrCode (ruban, Dymo LabelManager PCII, CRAL)', | |
108 | + '3' => '3 - Etiquette 19mm, texte sur 3 lignes avec QrCode (ruban, DYMO MobileLabeler, IRAP)', | |
109 | + '4' => '4 - Etiquette 12mm, texte sur 2 lignes avec QrCode (ruban, DYMO LabelManager PnP, IRAP)', | |
110 | + /* | |
110 | 111 | '5' => 5, |
111 | 112 | '6' => 6, |
112 | 113 | '7' => 7, |
113 | 114 | '8' => 8, |
114 | 115 | '9' => 9, |
115 | 116 | '10' => 10, |
117 | + */ | |
116 | 118 | ], |
117 | 119 | 'label' => 'Numéro Format Etiquette' |
118 | 120 | ]); | ... | ... |