@@ -240,7 +240,9 @@ |
||
| 240 | 240 | /* |
| 241 | 241 | * Statistics |
| 242 | 242 | */ |
| 243 | - if ($user->socid > 0) $socid = $user->socid; |
|
| 243 | + if ($user->socid > 0) { |
|
| 244 | + $socid = $user->socid; |
|
| 245 | + } |
|
| 244 | 246 | $sql = "SELECT count(c.rowid) as nb, c.fk_statut as status"; |
| 245 | 247 | $sql .= " FROM ".MAIN_DB_PREFIX."societe as s"; |
| 246 | 248 | $sql .= ", ".MAIN_DB_PREFIX."commande as c"; |
@@ -187,9 +187,15 @@ |
||
| 187 | 187 | $sql .= " OR t.date_begin = '" . $this->db->idate($this->date_end) . "' OR t.date_end = '" . $this->db->idate($this->date_end) . "'"; |
| 188 | 188 | $sql .= " OR (t.date_begin <= '" . $this->db->idate($this->date_begin) . "' AND '" . $this->db->idate($this->date_begin) . "' <= t.date_end)"; |
| 189 | 189 | $sql .= " OR (t.date_begin <= '" . $this->db->idate($this->date_end) . "' AND '" . $this->db->idate($this->date_end) . "' <= t.date_end))"; |
| 190 | - if ($this->fk_product > 0) $sql .= " AND t.fk_product = " . ((int) $this->fk_product); |
|
| 191 | - if ($this->fk_soc > 0) $sql .= " AND t.fk_soc = " . ((int) $this->fk_soc); |
|
| 192 | - if ($this->id > 0) $sql .= " AND t.rowid != " . ((int) $this->id); |
|
| 190 | + if ($this->fk_product > 0) { |
|
| 191 | + $sql .= " AND t.fk_product = " . ((int) $this->fk_product); |
|
| 192 | + } |
|
| 193 | + if ($this->fk_soc > 0) { |
|
| 194 | + $sql .= " AND t.fk_soc = " . ((int) $this->fk_soc); |
|
| 195 | + } |
|
| 196 | + if ($this->id > 0) { |
|
| 197 | + $sql .= " AND t.rowid != " . ((int) $this->id); |
|
| 198 | + } |
|
| 193 | 199 | |
| 194 | 200 | dol_syslog(get_class($this) . "::fetch", LOG_DEBUG); |
| 195 | 201 | $resql = $this->db->query($sql); |
@@ -48,35 +48,51 @@ discard block |
||
| 48 | 48 | */ |
| 49 | 49 | |
| 50 | 50 | // include class for decoding filters |
| 51 | -if (defined('TCPDF_PATH')) require_once(constant('TCPDF_PATH').'/include/tcpdf_filters.php'); |
|
| 52 | -else require_once(dirname(__FILE__).'/../tecnickcom/tcpdf/include/tcpdf_filters.php'); |
|
| 51 | +if (defined('TCPDF_PATH')) { |
|
| 52 | + require_once(constant('TCPDF_PATH').'/include/tcpdf_filters.php'); |
|
| 53 | +} else { |
|
| 54 | + require_once(dirname(__FILE__).'/../tecnickcom/tcpdf/include/tcpdf_filters.php'); |
|
| 55 | +} |
|
| 53 | 56 | |
| 54 | -if (!defined ('PDF_TYPE_NULL')) |
|
| 57 | +if (!defined ('PDF_TYPE_NULL')) { |
|
| 55 | 58 | define ('PDF_TYPE_NULL', 0); |
| 56 | -if (!defined ('PDF_TYPE_NUMERIC')) |
|
| 59 | +} |
|
| 60 | +if (!defined ('PDF_TYPE_NUMERIC')) { |
|
| 57 | 61 | define ('PDF_TYPE_NUMERIC', 1); |
| 58 | -if (!defined ('PDF_TYPE_TOKEN')) |
|
| 62 | +} |
|
| 63 | +if (!defined ('PDF_TYPE_TOKEN')) { |
|
| 59 | 64 | define ('PDF_TYPE_TOKEN', 2); |
| 60 | -if (!defined ('PDF_TYPE_HEX')) |
|
| 65 | +} |
|
| 66 | +if (!defined ('PDF_TYPE_HEX')) { |
|
| 61 | 67 | define ('PDF_TYPE_HEX', 3); |
| 62 | -if (!defined ('PDF_TYPE_STRING')) |
|
| 68 | +} |
|
| 69 | +if (!defined ('PDF_TYPE_STRING')) { |
|
| 63 | 70 | define ('PDF_TYPE_STRING', 4); |
| 64 | -if (!defined ('PDF_TYPE_DICTIONARY')) |
|
| 71 | +} |
|
| 72 | +if (!defined ('PDF_TYPE_DICTIONARY')) { |
|
| 65 | 73 | define ('PDF_TYPE_DICTIONARY', 5); |
| 66 | -if (!defined ('PDF_TYPE_ARRAY')) |
|
| 74 | +} |
|
| 75 | +if (!defined ('PDF_TYPE_ARRAY')) { |
|
| 67 | 76 | define ('PDF_TYPE_ARRAY', 6); |
| 68 | -if (!defined ('PDF_TYPE_OBJDEC')) |
|
| 77 | +} |
|
| 78 | +if (!defined ('PDF_TYPE_OBJDEC')) { |
|
| 69 | 79 | define ('PDF_TYPE_OBJDEC', 7); |
| 70 | -if (!defined ('PDF_TYPE_OBJREF')) |
|
| 80 | +} |
|
| 81 | +if (!defined ('PDF_TYPE_OBJREF')) { |
|
| 71 | 82 | define ('PDF_TYPE_OBJREF', 8); |
| 72 | -if (!defined ('PDF_TYPE_OBJECT')) |
|
| 83 | +} |
|
| 84 | +if (!defined ('PDF_TYPE_OBJECT')) { |
|
| 73 | 85 | define ('PDF_TYPE_OBJECT', 9); |
| 74 | -if (!defined ('PDF_TYPE_STREAM')) |
|
| 86 | +} |
|
| 87 | +if (!defined ('PDF_TYPE_STREAM')) { |
|
| 75 | 88 | define ('PDF_TYPE_STREAM', 10); |
| 76 | -if (!defined ('PDF_TYPE_BOOLEAN')) |
|
| 89 | +} |
|
| 90 | +if (!defined ('PDF_TYPE_BOOLEAN')) { |
|
| 77 | 91 | define ('PDF_TYPE_BOOLEAN', 11); |
| 78 | -if (!defined ('PDF_TYPE_REAL')) |
|
| 92 | +} |
|
| 93 | +if (!defined ('PDF_TYPE_REAL')) { |
|
| 79 | 94 | define ('PDF_TYPE_REAL', 12); |
| 95 | +} |
|
| 80 | 96 | |
| 81 | 97 | /** |
| 82 | 98 | * @class tcpdi_parser |
@@ -245,8 +261,9 @@ discard block |
||
| 245 | 261 | */ |
| 246 | 262 | public function getPDFVersion() { |
| 247 | 263 | preg_match('/\d\.\d/', substr($this->pdfdata, 0, 16), $m); |
| 248 | - if (isset($m[0])) |
|
| 249 | - $this->pdfVersion = $m[0]; |
|
| 264 | + if (isset($m[0])) { |
|
| 265 | + $this->pdfVersion = $m[0]; |
|
| 266 | + } |
|
| 250 | 267 | return $this->pdfVersion; |
| 251 | 268 | } |
| 252 | 269 | |
@@ -1205,16 +1222,18 @@ discard block |
||
| 1205 | 1222 | // parent object. |
| 1206 | 1223 | if (isset ($obj[1][1]['/Resources'])) { |
| 1207 | 1224 | $res = $obj[1][1]['/Resources']; |
| 1208 | - if ($res[0] == PDF_TYPE_OBJECT) |
|
| 1209 | - return $res[1]; |
|
| 1225 | + if ($res[0] == PDF_TYPE_OBJECT) { |
|
| 1226 | + return $res[1]; |
|
| 1227 | + } |
|
| 1210 | 1228 | return $res; |
| 1211 | 1229 | } else { |
| 1212 | 1230 | if (!isset ($obj[1][1]['/Parent'])) { |
| 1213 | 1231 | return false; |
| 1214 | 1232 | } else { |
| 1215 | 1233 | $res = $this->_getPageResources($obj[1][1]['/Parent']); |
| 1216 | - if ($res[0] == PDF_TYPE_OBJECT) |
|
| 1217 | - return $res[1]; |
|
| 1234 | + if ($res[0] == PDF_TYPE_OBJECT) { |
|
| 1235 | + return $res[1]; |
|
| 1236 | + } |
|
| 1218 | 1237 | return $res; |
| 1219 | 1238 | } |
| 1220 | 1239 | } |
@@ -1251,8 +1270,9 @@ discard block |
||
| 1251 | 1270 | } |
| 1252 | 1271 | } |
| 1253 | 1272 | |
| 1254 | - if ($annots[0] == PDF_TYPE_OBJREF) |
|
| 1255 | - return $this->getObjectVal($annots); |
|
| 1273 | + if ($annots[0] == PDF_TYPE_OBJREF) { |
|
| 1274 | + return $this->getObjectVal($annots); |
|
| 1275 | + } |
|
| 1256 | 1276 | return $annots; |
| 1257 | 1277 | } |
| 1258 | 1278 | |
@@ -1350,8 +1370,9 @@ discard block |
||
| 1350 | 1370 | public function getPageBox($page, $box_index, $k) { |
| 1351 | 1371 | $page = $this->getObjectVal($page); |
| 1352 | 1372 | $box = null; |
| 1353 | - if (isset($page[1][1][$box_index])) |
|
| 1354 | - $box =& $page[1][1][$box_index]; |
|
| 1373 | + if (isset($page[1][1][$box_index])) { |
|
| 1374 | + $box =& $page[1][1][$box_index]; |
|
| 1375 | + } |
|
| 1355 | 1376 | |
| 1356 | 1377 | if (!is_null($box) && $box[0] == PDF_TYPE_OBJREF) { |
| 1357 | 1378 | $tmp_box = $this->getObjectVal($box); |
@@ -1419,16 +1440,18 @@ discard block |
||
| 1419 | 1440 | $obj = $this->getObjectVal($obj); |
| 1420 | 1441 | if (isset ($obj[1][1]['/Rotate'])) { |
| 1421 | 1442 | $res = $this->getObjectVal($obj[1][1]['/Rotate']); |
| 1422 | - if (isset($res[0]) && $res[0] == PDF_TYPE_OBJECT) |
|
| 1423 | - return $res[1]; |
|
| 1443 | + if (isset($res[0]) && $res[0] == PDF_TYPE_OBJECT) { |
|
| 1444 | + return $res[1]; |
|
| 1445 | + } |
|
| 1424 | 1446 | return $res; |
| 1425 | 1447 | } else { |
| 1426 | 1448 | if (!isset ($obj[1][1]['/Parent'])) { |
| 1427 | 1449 | return false; |
| 1428 | 1450 | } else { |
| 1429 | 1451 | $res = $this->_getPageRotation($obj[1][1]['/Parent']); |
| 1430 | - if (isset($res[0]) && $res[0] == PDF_TYPE_OBJECT) |
|
| 1431 | - return $res[1]; |
|
| 1452 | + if (isset($res[0]) && $res[0] == PDF_TYPE_OBJECT) { |
|
| 1453 | + return $res[1]; |
|
| 1454 | + } |
|
| 1432 | 1455 | return $res; |
| 1433 | 1456 | } |
| 1434 | 1457 | } |
@@ -102,8 +102,9 @@ discard block |
||
| 102 | 102 | function setSourceFile($filename) { |
| 103 | 103 | $this->current_filename = $filename; |
| 104 | 104 | |
| 105 | - if (!isset($this->parsers[$filename])) |
|
| 106 | - $this->parsers[$filename] = $this->_getPdfParser($filename); |
|
| 105 | + if (!isset($this->parsers[$filename])) { |
|
| 106 | + $this->parsers[$filename] = $this->_getPdfParser($filename); |
|
| 107 | + } |
|
| 107 | 108 | $this->current_parser =& $this->parsers[$filename]; |
| 108 | 109 | $this->setPDFVersion(max($this->getPDFVersion(), $this->current_parser->getPDFVersion())); |
| 109 | 110 | |
@@ -120,8 +121,9 @@ discard block |
||
| 120 | 121 | $filename = uniqid('tcpdi-'); |
| 121 | 122 | $this->current_filename = $filename; |
| 122 | 123 | |
| 123 | - if (!isset($this->parsers[$filename])) |
|
| 124 | - $this->parsers[$filename] = new tcpdi_parser($pdfdata, $filename); |
|
| 124 | + if (!isset($this->parsers[$filename])) { |
|
| 125 | + $this->parsers[$filename] = new tcpdi_parser($pdfdata, $filename); |
|
| 126 | + } |
|
| 125 | 127 | $this->current_parser =& $this->parsers[$filename]; |
| 126 | 128 | $this->setPDFVersion(max($this->getPDFVersion(), $this->current_parser->getPDFVersion())); |
| 127 | 129 | |
@@ -172,14 +174,16 @@ discard block |
||
| 172 | 174 | |
| 173 | 175 | // check if page already imported |
| 174 | 176 | $pageKey = $fn . '-' . ((int)$pageno) . $boxName; |
| 175 | - if (isset($this->_importedPages[$pageKey])) |
|
| 176 | - return $this->_importedPages[$pageKey]; |
|
| 177 | + if (isset($this->_importedPages[$pageKey])) { |
|
| 178 | + return $this->_importedPages[$pageKey]; |
|
| 179 | + } |
|
| 177 | 180 | |
| 178 | 181 | $parser =& $this->parsers[$fn]; |
| 179 | 182 | $parser->setPageno($pageno); |
| 180 | 183 | |
| 181 | - if (!in_array($boxName, $parser->availableBoxes)) |
|
| 182 | - return $this->Error(sprintf('Unknown box: %s', $boxName)); |
|
| 184 | + if (!in_array($boxName, $parser->availableBoxes)) { |
|
| 185 | + return $this->Error(sprintf('Unknown box: %s', $boxName)); |
|
| 186 | + } |
|
| 183 | 187 | |
| 184 | 188 | $pageboxes = $parser->getPageBoxes($pageno, $this->k); |
| 185 | 189 | |
@@ -190,13 +194,16 @@ discard block |
||
| 190 | 194 | * TrimBox: Default -> CropBox |
| 191 | 195 | * ArtBox: Default -> CropBox |
| 192 | 196 | */ |
| 193 | - if (!isset($pageboxes[$boxName]) && ($boxName == '/BleedBox' || $boxName == '/TrimBox' || $boxName == '/ArtBox')) |
|
| 194 | - $boxName = '/CropBox'; |
|
| 195 | - if (!isset($pageboxes[$boxName]) && $boxName == '/CropBox') |
|
| 196 | - $boxName = '/MediaBox'; |
|
| 197 | + if (!isset($pageboxes[$boxName]) && ($boxName == '/BleedBox' || $boxName == '/TrimBox' || $boxName == '/ArtBox')) { |
|
| 198 | + $boxName = '/CropBox'; |
|
| 199 | + } |
|
| 200 | + if (!isset($pageboxes[$boxName]) && $boxName == '/CropBox') { |
|
| 201 | + $boxName = '/MediaBox'; |
|
| 202 | + } |
|
| 197 | 203 | |
| 198 | - if (!isset($pageboxes[$boxName])) |
|
| 199 | - return false; |
|
| 204 | + if (!isset($pageboxes[$boxName])) { |
|
| 205 | + return false; |
|
| 206 | + } |
|
| 200 | 207 | |
| 201 | 208 | $this->lastUsedPageBox = $boxName; |
| 202 | 209 | |
@@ -228,8 +235,9 @@ discard block |
||
| 228 | 235 | $tpl['w'] = $steps % 2 == 0 ? $_w : $_h; |
| 229 | 236 | $tpl['h'] = $steps % 2 == 0 ? $_h : $_w; |
| 230 | 237 | |
| 231 | - if ($angle < 0) |
|
| 232 | - $angle += 360; |
|
| 238 | + if ($angle < 0) { |
|
| 239 | + $angle += 360; |
|
| 240 | + } |
|
| 233 | 241 | |
| 234 | 242 | $tpl['_rotationAngle'] = $angle * -1; |
| 235 | 243 | } |
@@ -282,10 +290,12 @@ discard block |
||
| 282 | 290 | $annots = $parser->getPageAnnotations(); |
| 283 | 291 | |
| 284 | 292 | if (is_array($annots) && $annots[0] == PDF_TYPE_ARRAY // It's an array |
| 285 | - && is_array($annots[1]) && count($annots[1]) > 1) // It's not empty - there are annotations for this page |
|
| 293 | + && is_array($annots[1]) && count($annots[1]) > 1) { |
|
| 294 | + // It's not empty - there are annotations for this page |
|
| 286 | 295 | { |
| 287 | 296 | if (!isset($this->_obj_stack[$fn])) { |
| 288 | 297 | $this->_obj_stack[$fn] = array(); |
| 298 | + } |
|
| 289 | 299 | } |
| 290 | 300 | |
| 291 | 301 | $this->_importedAnnots[$this->page] = array(); |
@@ -296,10 +306,12 @@ discard block |
||
| 296 | 306 | |
| 297 | 307 | if (is_array($annots) && $annots[0] == PDF_TYPE_OBJECT // We got an object |
| 298 | 308 | && is_array($annots[1]) && $annots[1][0] == PDF_TYPE_ARRAY // It's an array |
| 299 | - && is_array($annots[1][1]) && count($annots[1][1]) > 1) // It's not empty - there are annotations for this page |
|
| 309 | + && is_array($annots[1][1]) && count($annots[1][1]) > 1) { |
|
| 310 | + // It's not empty - there are annotations for this page |
|
| 300 | 311 | { |
| 301 | 312 | if (!isset($this->_obj_stack[$fn])) { |
| 302 | 313 | $this->_obj_stack[$fn] = array(); |
| 314 | + } |
|
| 303 | 315 | } |
| 304 | 316 | |
| 305 | 317 | $this->_importedAnnots[$this->page] = array(); |
@@ -512,8 +524,9 @@ discard block |
||
| 512 | 524 | $this->_out('<</ProcSet [/PDF /Text /ImageB /ImageC /ImageI]'); |
| 513 | 525 | if (isset($this->_res['tpl'][$tplidx]['fonts']) && count($this->_res['tpl'][$tplidx]['fonts'])) { |
| 514 | 526 | $this->_out('/Font <<'); |
| 515 | - foreach($this->_res['tpl'][$tplidx]['fonts'] as $font) |
|
| 516 | - $this->_out('/F' . $font['i'] . ' ' . $font['n'] . ' 0 R'); |
|
| 527 | + foreach($this->_res['tpl'][$tplidx]['fonts'] as $font) { |
|
| 528 | + $this->_out('/F' . $font['i'] . ' ' . $font['n'] . ' 0 R'); |
|
| 529 | + } |
|
| 517 | 530 | $this->_out('>>'); |
| 518 | 531 | } |
| 519 | 532 | if(isset($this->_res['tpl'][$tplidx]['images']) && count($this->_res['tpl'][$tplidx]['images']) || |
@@ -521,12 +534,14 @@ discard block |
||
| 521 | 534 | { |
| 522 | 535 | $this->_out('/XObject <<'); |
| 523 | 536 | if (isset($this->_res['tpl'][$tplidx]['images']) && count($this->_res['tpl'][$tplidx]['images'])) { |
| 524 | - foreach($this->_res['tpl'][$tplidx]['images'] as $image) |
|
| 525 | - $this->_out('/I' . $image['i'] . ' ' . $image['n'] . ' 0 R'); |
|
| 537 | + foreach($this->_res['tpl'][$tplidx]['images'] as $image) { |
|
| 538 | + $this->_out('/I' . $image['i'] . ' ' . $image['n'] . ' 0 R'); |
|
| 539 | + } |
|
| 526 | 540 | } |
| 527 | 541 | if (isset($this->_res['tpl'][$tplidx]['tpls']) && count($this->_res['tpl'][$tplidx]['tpls'])) { |
| 528 | - foreach($this->_res['tpl'][$tplidx]['tpls'] as $i => $tpl) |
|
| 529 | - $this->_out($this->tplprefix . $i . ' ' . $tpl['n'] . ' 0 R'); |
|
| 542 | + foreach($this->_res['tpl'][$tplidx]['tpls'] as $i => $tpl) { |
|
| 543 | + $this->_out($this->tplprefix . $i . ' ' . $tpl['n'] . ' 0 R'); |
|
| 544 | + } |
|
| 530 | 545 | } |
| 531 | 546 | $this->_out('>>'); |
| 532 | 547 | } |
@@ -804,8 +819,9 @@ discard block |
||
| 804 | 819 | $out .= chr(0x0A); |
| 805 | 820 | break; |
| 806 | 821 | case "\r": |
| 807 | - if ($count != $n-1 && $s[$count+1] == "\n") |
|
| 808 | - $count++; |
|
| 822 | + if ($count != $n-1 && $s[$count+1] == "\n") { |
|
| 823 | + $count++; |
|
| 824 | + } |
|
| 809 | 825 | break; |
| 810 | 826 | case "\n": |
| 811 | 827 | break; |
@@ -1138,7 +1138,9 @@ discard block |
||
| 1138 | 1138 | $sql .= ", fk_unit"; |
| 1139 | 1139 | $sql .= ", mandatory_period"; |
| 1140 | 1140 | $sql .= ", stockable_product"; |
| 1141 | - if (!empty($this->default_vat_code)) $sql.=", default_vat_code"; |
|
| 1141 | + if (!empty($this->default_vat_code)) { |
|
| 1142 | + $sql.=", default_vat_code"; |
|
| 1143 | + } |
|
| 1142 | 1144 | $sql .= ") VALUES ("; |
| 1143 | 1145 | $sql .= "'".$this->db->idate($this->date_creation)."'"; |
| 1144 | 1146 | $sql .= ", ".(!empty($this->entity) ? (int) $this->entity : (int) $conf->entity); |
@@ -1171,7 +1173,9 @@ discard block |
||
| 1171 | 1173 | $sql .= ", ".($this->fk_unit > 0 ? ((int) $this->fk_unit) : 'NULL'); |
| 1172 | 1174 | $sql .= ", '".$this->db->escape((string) $this->mandatory_period)."'"; |
| 1173 | 1175 | $sql .= ", ".((int) $this->stockable_product); |
| 1174 | - if (!empty($this->default_vat_code)) $sql.=", '".$this->db->escape($this->default_vat_code)."'"; |
|
| 1176 | + if (!empty($this->default_vat_code)) { |
|
| 1177 | + $sql.=", '".$this->db->escape($this->default_vat_code)."'"; |
|
| 1178 | + } |
|
| 1175 | 1179 | $sql .= ")"; |
| 1176 | 1180 | dol_syslog(get_class($this)."::Create", LOG_DEBUG); |
| 1177 | 1181 | |