-
Notifications
You must be signed in to change notification settings - Fork 6
/
checkBarcodeAsync.php
executable file
·209 lines (191 loc) · 6.22 KB
/
checkBarcodeAsync.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
<?php
/*
Copyright 2006-2018 Felix Rudolphi and Lukas Goossen
open enventory is distributed under the terms of the GNU Affero General Public License, see COPYING for details. You can also find the license under http://www.gnu.org/licenses/agpl.txt
open enventory is a registered trademark of Felix Rudolphi and Lukas Goossen. Usage of the name "open enventory" or the logo requires prior written permission of the trademark holders.
This file is part of open enventory.
open enventory is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
open enventory is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with open enventory. If not, see <http://www.gnu.org/licenses/>.
*/
require_once "lib_global_funcs.php";
require_once "lib_global_settings.php";
require_once "lib_db_query.php";
require_once "lib_formatting.php";
require_once "lib_constants_barcode.php";
// print_r($_REQUEST);
$page_type="async";
$barcodeTerminal=true;
pageHeader();
setGlobalVars();
function gotoBarcode($barcodeData,$targetFrame="parent") {
// ask if to go to scanned dataset
$targetFrame=ifempty($targetFrame,"parent");
$url="edit.php?db_id=".$barcodeData["db_id"]."&".getSelfRef(array("~script~","table","db_id","pk","cached_query","no_cache"))."&";
if ($barcodeData["table"]=="mpi_order_item") {
$url.="table=chemical_storage&db_id=".$barcodeData["db_id"]."&mpi_order_item_id=".$barcodeData["pk"];
$retval=$targetFrame.".location.href=".fixStr($url).";\n";
}
elseif ($barcodeData["table"]=="chemical_storage" && !empty($barcodeData["result"]["transferred_to_db_id"])) {
$url.="table=chemical_storage&db_id=".$barcodeData["db_id"]."&transferred_to_db_id=".$barcodeData["pk"];
$retval=$targetFrame.".location.href=".fixStr($url).";\n";
}
else {
$url.="dbs=".$barcodeData["db_id"]."&table=".$barcodeData["table"]."&query=&pk=".$barcodeData["pk"];
if (isset($barcodeData["view"])) {
$url.="&view=".$barcodeData["view"];
}
$retval="if (confirm(".fixStr( s("change_barcode1").s($barcodeData["table"]).s("change_barcode2") ).")) {
".$targetFrame.".location.href=".fixStr($url).";
}\n";
}
return $retval;
}
$handleScanCurrent="
if (parent.readOnly) {
parent.startEditMode();
}
else {
parent.valChanged();
if (parent.editMode) {
parent.saveChanges();
}
else {
parent.saveDataset();
}
}
";
echo script."
if (parent) {
";
// parameter: barcode=, table=
$barcodeData=interpretBarcode($_REQUEST["barcode"]);
//~ print_r($barcodeData);print_r($_REQUEST);die();
if (!is_array($_REQUEST["tables"]??null)) {
$_REQUEST["tables"]=array($_REQUEST["tables"]);
}
if (in_array("mpi_order",$_REQUEST["tables"])) {
$_REQUEST["tables"][]="chemical_storage";
}
if (is_null($barcodeData["table"]??null)) {
$barcodeData["table"]=null;
}
if (is_null($barcodeData["pk"]??null)) {
$barcodeData["pk"]="";
}
if (is_null($barcodeData["db_id"]??null)) {
$barcodeData["db_id"]="";
}
if (
in_array($barcodeData["table"],$_REQUEST["tables"])
&& $barcodeData["pk"]==($_REQUEST["pk"]??null)
&& $barcodeData["db_id"]==($_REQUEST["db_id"]??null)
) { // !$barcodeData["variable"] &&
// Datensatz ist aktueller und gedrucktes Label gescannt
echo $handleScanCurrent;
}
elseif ($barcodeData["table"]=="chemical_storage" && !empty($barcodeData["result"]["transferred_to_db_id"])) { // abgegeben
echo gotoBarcode($barcodeData,$_REQUEST["target"]);
}
elseif ($barcodeData["table"]=="mpi_order_item") {
echo gotoBarcode($barcodeData,$_REQUEST["target"]);
}
elseif (
(
($g_settings["barcode_ignore_prefix"]??false) ||
(
in_array($barcodeData["table"],$_REQUEST["tables"])
&& $barcodeData["variable"]
)
)
&& $barcodeData["pk"]==""
&& $barcodeData["db_id"]=="" // nicht verwendet
) {
// aufgeklebten Barcode gescannt, dieser ist noch nicht vergeben
// set field and either start or end edit
if (!empty($barcodeData["result"]["transferred_to_db_id"])) {
$dataset=$barcodeData["result"];
}
else {
if ($g_settings["barcode_ignore_prefix"]) { // can be any table
$barcodeData["fieldName"]=getBarcodeFieldName($_REQUEST["tables"][0]);
}
$dataset=array($barcodeData["fieldName"] => $_REQUEST["barcode"]);
}
echo "
var currentBarcode=parent.getControlValue(".fixStr($barcodeData["fieldName"]).");
if (currentBarcode==".fixStr($_REQUEST["barcode"]).") { // Barcode ist aktueller Datensatz
".$handleScanCurrent."
}
else if (currentBarcode==\"\" || currentBarcode==0 || confirm(".fixStr(s("overwrite_barcode")).")) { // Barcode setzen
var dataset=".json_encode($dataset).";
if (parent.readOnly) {
parent.loadValues=dataset;
parent.startEditMode(true);
}
else {
parent.setControlValues(dataset,true);
parent.valChanged();
if (parent.editMode) {
parent.saveChanges();
}
else if (!parent.editMode) {
parent.saveDataset();
}
}
}
";
}
elseif ( // Wert in Formular setzen
($barcodeData["table"]=="storage" || $barcodeData["table"]=="person")
&& in_array("chemical_storage",$_REQUEST["tables"])
&& $barcodeData["pk"]!="" && $barcodeData["db_id"]=="-1" // Wert setzen in Formular
) {
if ($barcodeData["table"]=="storage") {
$dataset=array("storage_id" => $barcodeData["pk"]);
}
elseif ($barcodeData["table"]=="person") {
$dataset=array("owner_person_id" => $barcodeData["pk"]);
}
// barcode von lager gescannt für offenes Gebinde, setzen
echo "
var dataset=".json_encode($dataset).";
if (parent.readOnly) {
parent.loadValues=dataset;
parent.startEditMode(true);
}
else {
parent.setControlValues(dataset,true);
// do not save dataset after this
}
";
}
elseif (
$barcodeData["pk"]!="" &&
$barcodeData["db_id"]!="" &&
(
$barcodeData["pk"]!=$_REQUEST["pk"] ||
$barcodeData["db_id"]!=$_REQUEST["db_id"] ||
$barcodeData["table"]!=$_REQUEST["table"]
)
) { // zum Datensatz wechseln
echo gotoBarcode($barcodeData,$_REQUEST["target"]);
}
// print_r($barcodeData);
echo <<<END
}
</script>
</head>
<body>
</body>
</html>
END;
completeDoc();
?>