diff --git a/.gitignore b/.gitignore index 25556a5..6e22457 100644 --- a/.gitignore +++ b/.gitignore @@ -5,7 +5,7 @@ application/config/database.php application/controllers/Dbcompare.php .htaccess -uploads/temp_qr/*.png +uploads/temp_qr/* application/cache/* !application/cache/index.html diff --git a/application/controllers/Items.php b/application/controllers/Items.php index ce2329c..49b27a6 100644 --- a/application/controllers/Items.php +++ b/application/controllers/Items.php @@ -540,6 +540,7 @@ class Items extends CI_Controller { $btnDelete = ''; $btnInsertSn = 'Barcode'; $btnPrintBarcode = ''; + $btnPost = ''; if ($row->need_serial_number == 'true') { @@ -564,8 +565,10 @@ class Items extends CI_Controller { if ($row->status == 'draft') { if ($total_sn == $done_sn) { $btnSN = $btnInsertSn . $btnPrintBarcode; + $btnPostview = $btnPost; } else { $btnSN = $btnInsertSn ; + $btnPostview = ''; } } else { $btnSN = $btnPrintBarcode; @@ -574,11 +577,11 @@ class Items extends CI_Controller { } else { $btnSN = $btnPrintBarcode; + $btnPostview = $btnPost; } if($row->status == 'draft'){ - $btnPost = ''; - $action = $btnDetail . $btnPost . $btnDelete . $btnSN; + $action = $btnDetail . $btnPostview . $btnDelete . $btnSN; } else { @@ -1424,114 +1427,144 @@ class Items extends CI_Controller { echo json_encode($data); } -public function update_barcode_item() -{ - $items = $this->db - ->select(" - i.id, - i.nama_barang, - i.stok, - i.kode_detail, - kb.tracking_type - ") - ->from('items i') - ->join('kode_barang kb', 'kb.id=i.kode_id') - ->where('i.status', 'active') - ->get() - ->result(); - - $this->db->trans_begin(); - - foreach ($items as $item) { - - // =========================================== - // Hitung jumlah barcode yang seharusnya - // =========================================== - - if ($item->tracking_type == 'UNIT') { - $target = (int)$item->stok; - } else { - $target = (int)floor($item->stok / 1000); + public function update_barcode_item() + { + $items = $this->db + ->select(" + i.id, + i.nama_barang, + i.stok, + i.kode_detail, + kb.tracking_type, + kb.kode_barang + ") + ->from('items i') + ->join('kode_barang kb', 'kb.id=i.kode_id') + ->where('i.status', 'active') + ->get() + ->result(); + + $this->db->trans_begin(); + + foreach ($items as $item) { + + // =========================================== + // Qty per barcode + // =========================================== + + if ($item->tracking_type == 'UNIT') { + $qty_per_barcode = 1; + } else { + $qty_per_barcode = ($item->kode_barang == 'FO1') ? 1000 : 2000; + } + + // =========================================== + // Jumlah barcode yang seharusnya + // =========================================== + + $target = (int) ceil($item->stok / $qty_per_barcode); + + if ($target <= 0) { + continue; + } + + // =========================================== + // Jumlah barcode yang sudah ada + // =========================================== + + $barcode_exist = $this->db + ->where('item_id', $item->id) + ->count_all_results('item_barcodes'); + + if ($barcode_exist >= $target) { + continue; + } + + // =========================================== + // Total qty barcode yang sudah ada + // =========================================== + + $qty_existing = $this->db + ->select_sum('qty_awal') + ->where('item_id', $item->id) + ->get('item_barcodes') + ->row(); + + $qty_existing = (float) ($qty_existing->qty_awal ?? 0); + + // Sisa stok yang belum memiliki barcode + $qty_remaining = $item->stok - $qty_existing; + + if ($qty_remaining <= 0) { + continue; + } + + $need = $target - $barcode_exist; + + for ($i = 1; $i <= $need; $i++) { + + // Barcode terakhir akan berisi sisa stok + $qty = min($qty_per_barcode, $qty_remaining); + + $barcode = strtoupper($item->kode_detail) . '-' . strtoupper(bin2hex(random_bytes(2))); + + // ============================= + // Insert Barcode + // ============================= + + $this->db->insert('item_barcodes', [ + 'item_id' => $item->id, + 'barcode' => $barcode, + 'warehouse_id' => null, + 'qty_awal' => $qty, + 'qty_sisa' => $qty, + 'status' => 'available' + ]); + + $barcode_id = $this->db->insert_id(); + + // ============================= + // Insert Movement + // ============================= + + $this->db->insert('item_movements', [ + 'item_id' => $item->id, + 'barcode_id' => $barcode_id, + 'qty' => $qty, + 'from_type' => 'supplier', + 'from_id' => null, + 'to_type' => 'warehouse', + 'to_id' => null, + 'movement_type' => 'purchase', + 'reference_type' => 'system_generate', + 'reference_id' => null, + 'notes' => 'Generate barcode otomatis' + ]); + + $qty_remaining -= $qty; + + if ($qty_remaining <= 0) { + break; + } + } } - - if ($target <= 0) { - continue; - } - - // =========================================== - // Barcode yang sudah ada - // =========================================== - - $barcode_exist = $this->db - ->where('item_id', $item->id) - ->count_all_results('item_barcodes'); - - if ($barcode_exist >= $target) { - continue; - } - - $need = $target - $barcode_exist; - - for ($i = 1; $i <= $need; $i++) { - - $barcode = strtoupper($item->kode_detail) . '-' . strtoupper(bin2hex(random_bytes(2))); - - $qty = ($item->tracking_type == 'UNIT') - ? 1 - : 1000; - - // ============================= - // Insert Barcode - // ============================= - - $this->db->insert('item_barcodes', [ - 'item_id' => $item->id, - 'barcode' => $barcode, - 'warehouse_id' => null, - 'qty_awal' => $qty, - 'qty_sisa' => $qty, - 'status' => 'available' - ]); - - $barcode_id = $this->db->insert_id(); - - // ============================= - // Insert Movement - // ============================= - - $this->db->insert('item_movements', [ - 'item_id' => $item->id, - 'barcode_id' => $barcode_id, - 'qty' => $qty, - 'from_type' => 'supplier', - 'from_id' => null, - 'to_type' => 'warehouse', - 'to_id' => null, - 'movement_type' => 'purchase', - 'reference_type' => 'system_generate', - 'reference_id' => null, - 'notes' => 'Generate barcode otomatis' + + if ($this->db->trans_status() === FALSE) { + + $this->db->trans_rollback(); + + echo json_encode([ + 'status' => false, + 'message' => 'Gagal generate barcode.' ]); + return; } - } - - if ($this->db->trans_status() == false) { - - $this->db->trans_rollback(); - + + $this->db->trans_commit(); + echo json_encode([ - 'status' => false, - 'message' => 'Gagal generate barcode.' + 'status' => true, + 'message' => 'Barcode berhasil diperbarui.' ]); - - return; } - - $this->db->trans_commit(); - - echo json_encode([ - 'status' => true, - 'message' => 'Barcode berhasil diperbarui.' - ]); -} } \ No newline at end of file diff --git a/uploads/temp_qr/FO1-260626-0001.png b/uploads/temp_qr/FO1-260626-0001.png deleted file mode 100644 index b518a60..0000000 Binary files a/uploads/temp_qr/FO1-260626-0001.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0002.png b/uploads/temp_qr/FO1-260626-0002.png deleted file mode 100644 index cd41b01..0000000 Binary files a/uploads/temp_qr/FO1-260626-0002.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0003.png b/uploads/temp_qr/FO1-260626-0003.png deleted file mode 100644 index b5e5a51..0000000 Binary files a/uploads/temp_qr/FO1-260626-0003.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0004.png b/uploads/temp_qr/FO1-260626-0004.png deleted file mode 100644 index b0dcb4f..0000000 Binary files a/uploads/temp_qr/FO1-260626-0004.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0005.png b/uploads/temp_qr/FO1-260626-0005.png deleted file mode 100644 index f42e01a..0000000 Binary files a/uploads/temp_qr/FO1-260626-0005.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0006.png b/uploads/temp_qr/FO1-260626-0006.png deleted file mode 100644 index 08e3713..0000000 Binary files a/uploads/temp_qr/FO1-260626-0006.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0007.png b/uploads/temp_qr/FO1-260626-0007.png deleted file mode 100644 index c440bfb..0000000 Binary files a/uploads/temp_qr/FO1-260626-0007.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0008.png b/uploads/temp_qr/FO1-260626-0008.png deleted file mode 100644 index f378c15..0000000 Binary files a/uploads/temp_qr/FO1-260626-0008.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0009.png b/uploads/temp_qr/FO1-260626-0009.png deleted file mode 100644 index b602f1c..0000000 Binary files a/uploads/temp_qr/FO1-260626-0009.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0010.png b/uploads/temp_qr/FO1-260626-0010.png deleted file mode 100644 index 9f12048..0000000 Binary files a/uploads/temp_qr/FO1-260626-0010.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0011.png b/uploads/temp_qr/FO1-260626-0011.png deleted file mode 100644 index f4386b0..0000000 Binary files a/uploads/temp_qr/FO1-260626-0011.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0012.png b/uploads/temp_qr/FO1-260626-0012.png deleted file mode 100644 index 4cf6c62..0000000 Binary files a/uploads/temp_qr/FO1-260626-0012.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0013.png b/uploads/temp_qr/FO1-260626-0013.png deleted file mode 100644 index 0171e1d..0000000 Binary files a/uploads/temp_qr/FO1-260626-0013.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0014.png b/uploads/temp_qr/FO1-260626-0014.png deleted file mode 100644 index f75efcf..0000000 Binary files a/uploads/temp_qr/FO1-260626-0014.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0015.png b/uploads/temp_qr/FO1-260626-0015.png deleted file mode 100644 index aede46b..0000000 Binary files a/uploads/temp_qr/FO1-260626-0015.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0016.png b/uploads/temp_qr/FO1-260626-0016.png deleted file mode 100644 index 762318a..0000000 Binary files a/uploads/temp_qr/FO1-260626-0016.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0017.png b/uploads/temp_qr/FO1-260626-0017.png deleted file mode 100644 index 810a016..0000000 Binary files a/uploads/temp_qr/FO1-260626-0017.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0018.png b/uploads/temp_qr/FO1-260626-0018.png deleted file mode 100644 index 467e27f..0000000 Binary files a/uploads/temp_qr/FO1-260626-0018.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0019.png b/uploads/temp_qr/FO1-260626-0019.png deleted file mode 100644 index 924c5fe..0000000 Binary files a/uploads/temp_qr/FO1-260626-0019.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0020.png b/uploads/temp_qr/FO1-260626-0020.png deleted file mode 100644 index 95a0337..0000000 Binary files a/uploads/temp_qr/FO1-260626-0020.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0021.png b/uploads/temp_qr/FO1-260626-0021.png deleted file mode 100644 index 9c99373..0000000 Binary files a/uploads/temp_qr/FO1-260626-0021.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0022.png b/uploads/temp_qr/FO1-260626-0022.png deleted file mode 100644 index e92a0e2..0000000 Binary files a/uploads/temp_qr/FO1-260626-0022.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0023.png b/uploads/temp_qr/FO1-260626-0023.png deleted file mode 100644 index 3083b9a..0000000 Binary files a/uploads/temp_qr/FO1-260626-0023.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0024.png b/uploads/temp_qr/FO1-260626-0024.png deleted file mode 100644 index 813d09a..0000000 Binary files a/uploads/temp_qr/FO1-260626-0024.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0025.png b/uploads/temp_qr/FO1-260626-0025.png deleted file mode 100644 index f94ceb7..0000000 Binary files a/uploads/temp_qr/FO1-260626-0025.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0026.png b/uploads/temp_qr/FO1-260626-0026.png deleted file mode 100644 index fe1a189..0000000 Binary files a/uploads/temp_qr/FO1-260626-0026.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0027.png b/uploads/temp_qr/FO1-260626-0027.png deleted file mode 100644 index c98d206..0000000 Binary files a/uploads/temp_qr/FO1-260626-0027.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0028.png b/uploads/temp_qr/FO1-260626-0028.png deleted file mode 100644 index 71e88ac..0000000 Binary files a/uploads/temp_qr/FO1-260626-0028.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0029.png b/uploads/temp_qr/FO1-260626-0029.png deleted file mode 100644 index cfe6ae2..0000000 Binary files a/uploads/temp_qr/FO1-260626-0029.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0030.png b/uploads/temp_qr/FO1-260626-0030.png deleted file mode 100644 index dce4ed1..0000000 Binary files a/uploads/temp_qr/FO1-260626-0030.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0031.png b/uploads/temp_qr/FO1-260626-0031.png deleted file mode 100644 index 7527ed4..0000000 Binary files a/uploads/temp_qr/FO1-260626-0031.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0032.png b/uploads/temp_qr/FO1-260626-0032.png deleted file mode 100644 index ad25611..0000000 Binary files a/uploads/temp_qr/FO1-260626-0032.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0033.png b/uploads/temp_qr/FO1-260626-0033.png deleted file mode 100644 index c681af7..0000000 Binary files a/uploads/temp_qr/FO1-260626-0033.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0034.png b/uploads/temp_qr/FO1-260626-0034.png deleted file mode 100644 index 4b7ffbb..0000000 Binary files a/uploads/temp_qr/FO1-260626-0034.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0035.png b/uploads/temp_qr/FO1-260626-0035.png deleted file mode 100644 index 9f178df..0000000 Binary files a/uploads/temp_qr/FO1-260626-0035.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0036.png b/uploads/temp_qr/FO1-260626-0036.png deleted file mode 100644 index 3cdc576..0000000 Binary files a/uploads/temp_qr/FO1-260626-0036.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0037.png b/uploads/temp_qr/FO1-260626-0037.png deleted file mode 100644 index 0968b9f..0000000 Binary files a/uploads/temp_qr/FO1-260626-0037.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0038.png b/uploads/temp_qr/FO1-260626-0038.png deleted file mode 100644 index 2082e44..0000000 Binary files a/uploads/temp_qr/FO1-260626-0038.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0039.png b/uploads/temp_qr/FO1-260626-0039.png deleted file mode 100644 index d07e8cb..0000000 Binary files a/uploads/temp_qr/FO1-260626-0039.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0040.png b/uploads/temp_qr/FO1-260626-0040.png deleted file mode 100644 index f964f33..0000000 Binary files a/uploads/temp_qr/FO1-260626-0040.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0041.png b/uploads/temp_qr/FO1-260626-0041.png deleted file mode 100644 index 946a39c..0000000 Binary files a/uploads/temp_qr/FO1-260626-0041.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0042.png b/uploads/temp_qr/FO1-260626-0042.png deleted file mode 100644 index f4ca25e..0000000 Binary files a/uploads/temp_qr/FO1-260626-0042.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0043.png b/uploads/temp_qr/FO1-260626-0043.png deleted file mode 100644 index 50026ec..0000000 Binary files a/uploads/temp_qr/FO1-260626-0043.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0044.png b/uploads/temp_qr/FO1-260626-0044.png deleted file mode 100644 index db5141a..0000000 Binary files a/uploads/temp_qr/FO1-260626-0044.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0045.png b/uploads/temp_qr/FO1-260626-0045.png deleted file mode 100644 index e37f7e7..0000000 Binary files a/uploads/temp_qr/FO1-260626-0045.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0046.png b/uploads/temp_qr/FO1-260626-0046.png deleted file mode 100644 index e5c5eb7..0000000 Binary files a/uploads/temp_qr/FO1-260626-0046.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0047.png b/uploads/temp_qr/FO1-260626-0047.png deleted file mode 100644 index 0eb8e3d..0000000 Binary files a/uploads/temp_qr/FO1-260626-0047.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0048.png b/uploads/temp_qr/FO1-260626-0048.png deleted file mode 100644 index 389c23a..0000000 Binary files a/uploads/temp_qr/FO1-260626-0048.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0049.png b/uploads/temp_qr/FO1-260626-0049.png deleted file mode 100644 index 3cc518c..0000000 Binary files a/uploads/temp_qr/FO1-260626-0049.png and /dev/null differ diff --git a/uploads/temp_qr/FO1-260626-0050.png b/uploads/temp_qr/FO1-260626-0050.png deleted file mode 100644 index de9d5b2..0000000 Binary files a/uploads/temp_qr/FO1-260626-0050.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0001.png b/uploads/temp_qr/ONT-210626-0001.png deleted file mode 100644 index da101c9..0000000 Binary files a/uploads/temp_qr/ONT-210626-0001.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0002.png b/uploads/temp_qr/ONT-210626-0002.png deleted file mode 100644 index fb54183..0000000 Binary files a/uploads/temp_qr/ONT-210626-0002.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0003.png b/uploads/temp_qr/ONT-210626-0003.png deleted file mode 100644 index 9081cc4..0000000 Binary files a/uploads/temp_qr/ONT-210626-0003.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0004.png b/uploads/temp_qr/ONT-210626-0004.png deleted file mode 100644 index ee7bb90..0000000 Binary files a/uploads/temp_qr/ONT-210626-0004.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0005.png b/uploads/temp_qr/ONT-210626-0005.png deleted file mode 100644 index aa24f65..0000000 Binary files a/uploads/temp_qr/ONT-210626-0005.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0006.png b/uploads/temp_qr/ONT-210626-0006.png deleted file mode 100644 index e3877d7..0000000 Binary files a/uploads/temp_qr/ONT-210626-0006.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0007.png b/uploads/temp_qr/ONT-210626-0007.png deleted file mode 100644 index 19f17a3..0000000 Binary files a/uploads/temp_qr/ONT-210626-0007.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0008.png b/uploads/temp_qr/ONT-210626-0008.png deleted file mode 100644 index 089ab52..0000000 Binary files a/uploads/temp_qr/ONT-210626-0008.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0009.png b/uploads/temp_qr/ONT-210626-0009.png deleted file mode 100644 index a4b0c0e..0000000 Binary files a/uploads/temp_qr/ONT-210626-0009.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0010.png b/uploads/temp_qr/ONT-210626-0010.png deleted file mode 100644 index d11d585..0000000 Binary files a/uploads/temp_qr/ONT-210626-0010.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0011.png b/uploads/temp_qr/ONT-210626-0011.png deleted file mode 100644 index fc33438..0000000 Binary files a/uploads/temp_qr/ONT-210626-0011.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0012.png b/uploads/temp_qr/ONT-210626-0012.png deleted file mode 100644 index 37929d5..0000000 Binary files a/uploads/temp_qr/ONT-210626-0012.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0013.png b/uploads/temp_qr/ONT-210626-0013.png deleted file mode 100644 index 3ab83c8..0000000 Binary files a/uploads/temp_qr/ONT-210626-0013.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0014.png b/uploads/temp_qr/ONT-210626-0014.png deleted file mode 100644 index f012ed8..0000000 Binary files a/uploads/temp_qr/ONT-210626-0014.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0015.png b/uploads/temp_qr/ONT-210626-0015.png deleted file mode 100644 index 6b61fdc..0000000 Binary files a/uploads/temp_qr/ONT-210626-0015.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0016.png b/uploads/temp_qr/ONT-210626-0016.png deleted file mode 100644 index 28781ea..0000000 Binary files a/uploads/temp_qr/ONT-210626-0016.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0017.png b/uploads/temp_qr/ONT-210626-0017.png deleted file mode 100644 index 83786e9..0000000 Binary files a/uploads/temp_qr/ONT-210626-0017.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0018.png b/uploads/temp_qr/ONT-210626-0018.png deleted file mode 100644 index b77516b..0000000 Binary files a/uploads/temp_qr/ONT-210626-0018.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0019.png b/uploads/temp_qr/ONT-210626-0019.png deleted file mode 100644 index 234df6c..0000000 Binary files a/uploads/temp_qr/ONT-210626-0019.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0020.png b/uploads/temp_qr/ONT-210626-0020.png deleted file mode 100644 index e577f0e..0000000 Binary files a/uploads/temp_qr/ONT-210626-0020.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0021.png b/uploads/temp_qr/ONT-210626-0021.png deleted file mode 100644 index c30f571..0000000 Binary files a/uploads/temp_qr/ONT-210626-0021.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0022.png b/uploads/temp_qr/ONT-210626-0022.png deleted file mode 100644 index cd188ed..0000000 Binary files a/uploads/temp_qr/ONT-210626-0022.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0023.png b/uploads/temp_qr/ONT-210626-0023.png deleted file mode 100644 index d421b4c..0000000 Binary files a/uploads/temp_qr/ONT-210626-0023.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0024.png b/uploads/temp_qr/ONT-210626-0024.png deleted file mode 100644 index f4010d2..0000000 Binary files a/uploads/temp_qr/ONT-210626-0024.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0025.png b/uploads/temp_qr/ONT-210626-0025.png deleted file mode 100644 index 8191133..0000000 Binary files a/uploads/temp_qr/ONT-210626-0025.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0026.png b/uploads/temp_qr/ONT-210626-0026.png deleted file mode 100644 index 734ec11..0000000 Binary files a/uploads/temp_qr/ONT-210626-0026.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0027.png b/uploads/temp_qr/ONT-210626-0027.png deleted file mode 100644 index 3db3299..0000000 Binary files a/uploads/temp_qr/ONT-210626-0027.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0028.png b/uploads/temp_qr/ONT-210626-0028.png deleted file mode 100644 index 37b2b0f..0000000 Binary files a/uploads/temp_qr/ONT-210626-0028.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0029.png b/uploads/temp_qr/ONT-210626-0029.png deleted file mode 100644 index 3d42327..0000000 Binary files a/uploads/temp_qr/ONT-210626-0029.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0030.png b/uploads/temp_qr/ONT-210626-0030.png deleted file mode 100644 index 85dbe7c..0000000 Binary files a/uploads/temp_qr/ONT-210626-0030.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0031.png b/uploads/temp_qr/ONT-210626-0031.png deleted file mode 100644 index da8b197..0000000 Binary files a/uploads/temp_qr/ONT-210626-0031.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0032.png b/uploads/temp_qr/ONT-210626-0032.png deleted file mode 100644 index 891eded..0000000 Binary files a/uploads/temp_qr/ONT-210626-0032.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0033.png b/uploads/temp_qr/ONT-210626-0033.png deleted file mode 100644 index 167a150..0000000 Binary files a/uploads/temp_qr/ONT-210626-0033.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0034.png b/uploads/temp_qr/ONT-210626-0034.png deleted file mode 100644 index 9070ec7..0000000 Binary files a/uploads/temp_qr/ONT-210626-0034.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0035.png b/uploads/temp_qr/ONT-210626-0035.png deleted file mode 100644 index 6642b02..0000000 Binary files a/uploads/temp_qr/ONT-210626-0035.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0036.png b/uploads/temp_qr/ONT-210626-0036.png deleted file mode 100644 index 23f6394..0000000 Binary files a/uploads/temp_qr/ONT-210626-0036.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0037.png b/uploads/temp_qr/ONT-210626-0037.png deleted file mode 100644 index ca0ff70..0000000 Binary files a/uploads/temp_qr/ONT-210626-0037.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0038.png b/uploads/temp_qr/ONT-210626-0038.png deleted file mode 100644 index a159053..0000000 Binary files a/uploads/temp_qr/ONT-210626-0038.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0039.png b/uploads/temp_qr/ONT-210626-0039.png deleted file mode 100644 index 2a36f4c..0000000 Binary files a/uploads/temp_qr/ONT-210626-0039.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0040.png b/uploads/temp_qr/ONT-210626-0040.png deleted file mode 100644 index 32b8813..0000000 Binary files a/uploads/temp_qr/ONT-210626-0040.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0041.png b/uploads/temp_qr/ONT-210626-0041.png deleted file mode 100644 index 48b1b11..0000000 Binary files a/uploads/temp_qr/ONT-210626-0041.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0042.png b/uploads/temp_qr/ONT-210626-0042.png deleted file mode 100644 index 7707411..0000000 Binary files a/uploads/temp_qr/ONT-210626-0042.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0043.png b/uploads/temp_qr/ONT-210626-0043.png deleted file mode 100644 index dc2b80e..0000000 Binary files a/uploads/temp_qr/ONT-210626-0043.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0044.png b/uploads/temp_qr/ONT-210626-0044.png deleted file mode 100644 index 33dd5e5..0000000 Binary files a/uploads/temp_qr/ONT-210626-0044.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0045.png b/uploads/temp_qr/ONT-210626-0045.png deleted file mode 100644 index ea53765..0000000 Binary files a/uploads/temp_qr/ONT-210626-0045.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0046.png b/uploads/temp_qr/ONT-210626-0046.png deleted file mode 100644 index ecd23ac..0000000 Binary files a/uploads/temp_qr/ONT-210626-0046.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0047.png b/uploads/temp_qr/ONT-210626-0047.png deleted file mode 100644 index bcf1629..0000000 Binary files a/uploads/temp_qr/ONT-210626-0047.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0048.png b/uploads/temp_qr/ONT-210626-0048.png deleted file mode 100644 index 3466b21..0000000 Binary files a/uploads/temp_qr/ONT-210626-0048.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0049.png b/uploads/temp_qr/ONT-210626-0049.png deleted file mode 100644 index 2ce104b..0000000 Binary files a/uploads/temp_qr/ONT-210626-0049.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-210626-0050.png b/uploads/temp_qr/ONT-210626-0050.png deleted file mode 100644 index d7d69b5..0000000 Binary files a/uploads/temp_qr/ONT-210626-0050.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-260626-0001.png b/uploads/temp_qr/ONT-260626-0001.png deleted file mode 100644 index a24d12b..0000000 Binary files a/uploads/temp_qr/ONT-260626-0001.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-260626-0002.png b/uploads/temp_qr/ONT-260626-0002.png deleted file mode 100644 index 008396a..0000000 Binary files a/uploads/temp_qr/ONT-260626-0002.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-260626-0003.png b/uploads/temp_qr/ONT-260626-0003.png deleted file mode 100644 index 7e0f6e8..0000000 Binary files a/uploads/temp_qr/ONT-260626-0003.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-260626-0004.png b/uploads/temp_qr/ONT-260626-0004.png deleted file mode 100644 index 8553da2..0000000 Binary files a/uploads/temp_qr/ONT-260626-0004.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-260626-0005.png b/uploads/temp_qr/ONT-260626-0005.png deleted file mode 100644 index e4bda7e..0000000 Binary files a/uploads/temp_qr/ONT-260626-0005.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-260626-0006.png b/uploads/temp_qr/ONT-260626-0006.png deleted file mode 100644 index a7d4750..0000000 Binary files a/uploads/temp_qr/ONT-260626-0006.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-260626-0007.png b/uploads/temp_qr/ONT-260626-0007.png deleted file mode 100644 index a64017c..0000000 Binary files a/uploads/temp_qr/ONT-260626-0007.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-260626-0008.png b/uploads/temp_qr/ONT-260626-0008.png deleted file mode 100644 index 62ff3a7..0000000 Binary files a/uploads/temp_qr/ONT-260626-0008.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-260626-0009.png b/uploads/temp_qr/ONT-260626-0009.png deleted file mode 100644 index 886581d..0000000 Binary files a/uploads/temp_qr/ONT-260626-0009.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-260626-0010.png b/uploads/temp_qr/ONT-260626-0010.png deleted file mode 100644 index 499f9d0..0000000 Binary files a/uploads/temp_qr/ONT-260626-0010.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-260626-0011.png b/uploads/temp_qr/ONT-260626-0011.png deleted file mode 100644 index 22cb32d..0000000 Binary files a/uploads/temp_qr/ONT-260626-0011.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-260626-0012.png b/uploads/temp_qr/ONT-260626-0012.png deleted file mode 100644 index f1f6263..0000000 Binary files a/uploads/temp_qr/ONT-260626-0012.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-260626-0013.png b/uploads/temp_qr/ONT-260626-0013.png deleted file mode 100644 index 3d68032..0000000 Binary files a/uploads/temp_qr/ONT-260626-0013.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-260626-0014.png b/uploads/temp_qr/ONT-260626-0014.png deleted file mode 100644 index 7e4f06f..0000000 Binary files a/uploads/temp_qr/ONT-260626-0014.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-260626-0015.png b/uploads/temp_qr/ONT-260626-0015.png deleted file mode 100644 index 60cd08b..0000000 Binary files a/uploads/temp_qr/ONT-260626-0015.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-260626-0016.png b/uploads/temp_qr/ONT-260626-0016.png deleted file mode 100644 index 7581f36..0000000 Binary files a/uploads/temp_qr/ONT-260626-0016.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-260626-0017.png b/uploads/temp_qr/ONT-260626-0017.png deleted file mode 100644 index e11933c..0000000 Binary files a/uploads/temp_qr/ONT-260626-0017.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-260626-0018.png b/uploads/temp_qr/ONT-260626-0018.png deleted file mode 100644 index cd9b23f..0000000 Binary files a/uploads/temp_qr/ONT-260626-0018.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-260626-0019.png b/uploads/temp_qr/ONT-260626-0019.png deleted file mode 100644 index 2a6c35a..0000000 Binary files a/uploads/temp_qr/ONT-260626-0019.png and /dev/null differ diff --git a/uploads/temp_qr/ONT-260626-0020.png b/uploads/temp_qr/ONT-260626-0020.png deleted file mode 100644 index 9a7d33c..0000000 Binary files a/uploads/temp_qr/ONT-260626-0020.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0001.png b/uploads/temp_qr/PTC-270626-0001.png deleted file mode 100644 index db4da71..0000000 Binary files a/uploads/temp_qr/PTC-270626-0001.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0002.png b/uploads/temp_qr/PTC-270626-0002.png deleted file mode 100644 index 72fe8da..0000000 Binary files a/uploads/temp_qr/PTC-270626-0002.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0003.png b/uploads/temp_qr/PTC-270626-0003.png deleted file mode 100644 index a56bf89..0000000 Binary files a/uploads/temp_qr/PTC-270626-0003.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0004.png b/uploads/temp_qr/PTC-270626-0004.png deleted file mode 100644 index 1840aa6..0000000 Binary files a/uploads/temp_qr/PTC-270626-0004.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0005.png b/uploads/temp_qr/PTC-270626-0005.png deleted file mode 100644 index efdb33c..0000000 Binary files a/uploads/temp_qr/PTC-270626-0005.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0006.png b/uploads/temp_qr/PTC-270626-0006.png deleted file mode 100644 index 2f65cd7..0000000 Binary files a/uploads/temp_qr/PTC-270626-0006.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0007.png b/uploads/temp_qr/PTC-270626-0007.png deleted file mode 100644 index cbf4480..0000000 Binary files a/uploads/temp_qr/PTC-270626-0007.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0008.png b/uploads/temp_qr/PTC-270626-0008.png deleted file mode 100644 index b67e09c..0000000 Binary files a/uploads/temp_qr/PTC-270626-0008.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0009.png b/uploads/temp_qr/PTC-270626-0009.png deleted file mode 100644 index 0f753fa..0000000 Binary files a/uploads/temp_qr/PTC-270626-0009.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0010.png b/uploads/temp_qr/PTC-270626-0010.png deleted file mode 100644 index 46302bc..0000000 Binary files a/uploads/temp_qr/PTC-270626-0010.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0011.png b/uploads/temp_qr/PTC-270626-0011.png deleted file mode 100644 index c2c5f97..0000000 Binary files a/uploads/temp_qr/PTC-270626-0011.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0012.png b/uploads/temp_qr/PTC-270626-0012.png deleted file mode 100644 index 4095414..0000000 Binary files a/uploads/temp_qr/PTC-270626-0012.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0013.png b/uploads/temp_qr/PTC-270626-0013.png deleted file mode 100644 index 481713a..0000000 Binary files a/uploads/temp_qr/PTC-270626-0013.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0014.png b/uploads/temp_qr/PTC-270626-0014.png deleted file mode 100644 index 557adee..0000000 Binary files a/uploads/temp_qr/PTC-270626-0014.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0015.png b/uploads/temp_qr/PTC-270626-0015.png deleted file mode 100644 index ea5dc9e..0000000 Binary files a/uploads/temp_qr/PTC-270626-0015.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0016.png b/uploads/temp_qr/PTC-270626-0016.png deleted file mode 100644 index dad334e..0000000 Binary files a/uploads/temp_qr/PTC-270626-0016.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0017.png b/uploads/temp_qr/PTC-270626-0017.png deleted file mode 100644 index 6c52014..0000000 Binary files a/uploads/temp_qr/PTC-270626-0017.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0018.png b/uploads/temp_qr/PTC-270626-0018.png deleted file mode 100644 index 86f289e..0000000 Binary files a/uploads/temp_qr/PTC-270626-0018.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0019.png b/uploads/temp_qr/PTC-270626-0019.png deleted file mode 100644 index 949e393..0000000 Binary files a/uploads/temp_qr/PTC-270626-0019.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0020.png b/uploads/temp_qr/PTC-270626-0020.png deleted file mode 100644 index 028a71c..0000000 Binary files a/uploads/temp_qr/PTC-270626-0020.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0021.png b/uploads/temp_qr/PTC-270626-0021.png deleted file mode 100644 index 427fafd..0000000 Binary files a/uploads/temp_qr/PTC-270626-0021.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0022.png b/uploads/temp_qr/PTC-270626-0022.png deleted file mode 100644 index d7a24d1..0000000 Binary files a/uploads/temp_qr/PTC-270626-0022.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0023.png b/uploads/temp_qr/PTC-270626-0023.png deleted file mode 100644 index c140f34..0000000 Binary files a/uploads/temp_qr/PTC-270626-0023.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0024.png b/uploads/temp_qr/PTC-270626-0024.png deleted file mode 100644 index b37bf0d..0000000 Binary files a/uploads/temp_qr/PTC-270626-0024.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0025.png b/uploads/temp_qr/PTC-270626-0025.png deleted file mode 100644 index c9fe7b9..0000000 Binary files a/uploads/temp_qr/PTC-270626-0025.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0026.png b/uploads/temp_qr/PTC-270626-0026.png deleted file mode 100644 index cd3e7a3..0000000 Binary files a/uploads/temp_qr/PTC-270626-0026.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0027.png b/uploads/temp_qr/PTC-270626-0027.png deleted file mode 100644 index 420ed09..0000000 Binary files a/uploads/temp_qr/PTC-270626-0027.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0028.png b/uploads/temp_qr/PTC-270626-0028.png deleted file mode 100644 index ac3ff87..0000000 Binary files a/uploads/temp_qr/PTC-270626-0028.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0029.png b/uploads/temp_qr/PTC-270626-0029.png deleted file mode 100644 index edefe3c..0000000 Binary files a/uploads/temp_qr/PTC-270626-0029.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0030.png b/uploads/temp_qr/PTC-270626-0030.png deleted file mode 100644 index 04d714c..0000000 Binary files a/uploads/temp_qr/PTC-270626-0030.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0031.png b/uploads/temp_qr/PTC-270626-0031.png deleted file mode 100644 index fea6949..0000000 Binary files a/uploads/temp_qr/PTC-270626-0031.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0032.png b/uploads/temp_qr/PTC-270626-0032.png deleted file mode 100644 index 662594c..0000000 Binary files a/uploads/temp_qr/PTC-270626-0032.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0033.png b/uploads/temp_qr/PTC-270626-0033.png deleted file mode 100644 index a7557d4..0000000 Binary files a/uploads/temp_qr/PTC-270626-0033.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0034.png b/uploads/temp_qr/PTC-270626-0034.png deleted file mode 100644 index 5b7e32e..0000000 Binary files a/uploads/temp_qr/PTC-270626-0034.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0035.png b/uploads/temp_qr/PTC-270626-0035.png deleted file mode 100644 index 0592003..0000000 Binary files a/uploads/temp_qr/PTC-270626-0035.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0036.png b/uploads/temp_qr/PTC-270626-0036.png deleted file mode 100644 index 7299602..0000000 Binary files a/uploads/temp_qr/PTC-270626-0036.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0037.png b/uploads/temp_qr/PTC-270626-0037.png deleted file mode 100644 index 9adc501..0000000 Binary files a/uploads/temp_qr/PTC-270626-0037.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0038.png b/uploads/temp_qr/PTC-270626-0038.png deleted file mode 100644 index c8dd032..0000000 Binary files a/uploads/temp_qr/PTC-270626-0038.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0039.png b/uploads/temp_qr/PTC-270626-0039.png deleted file mode 100644 index 1240c8f..0000000 Binary files a/uploads/temp_qr/PTC-270626-0039.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0040.png b/uploads/temp_qr/PTC-270626-0040.png deleted file mode 100644 index 6a6ac54..0000000 Binary files a/uploads/temp_qr/PTC-270626-0040.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0041.png b/uploads/temp_qr/PTC-270626-0041.png deleted file mode 100644 index 3725aa7..0000000 Binary files a/uploads/temp_qr/PTC-270626-0041.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0042.png b/uploads/temp_qr/PTC-270626-0042.png deleted file mode 100644 index c60357d..0000000 Binary files a/uploads/temp_qr/PTC-270626-0042.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0043.png b/uploads/temp_qr/PTC-270626-0043.png deleted file mode 100644 index 1866228..0000000 Binary files a/uploads/temp_qr/PTC-270626-0043.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0044.png b/uploads/temp_qr/PTC-270626-0044.png deleted file mode 100644 index 705c708..0000000 Binary files a/uploads/temp_qr/PTC-270626-0044.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0045.png b/uploads/temp_qr/PTC-270626-0045.png deleted file mode 100644 index 7d16b89..0000000 Binary files a/uploads/temp_qr/PTC-270626-0045.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0046.png b/uploads/temp_qr/PTC-270626-0046.png deleted file mode 100644 index 4d50160..0000000 Binary files a/uploads/temp_qr/PTC-270626-0046.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0047.png b/uploads/temp_qr/PTC-270626-0047.png deleted file mode 100644 index c524329..0000000 Binary files a/uploads/temp_qr/PTC-270626-0047.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0048.png b/uploads/temp_qr/PTC-270626-0048.png deleted file mode 100644 index 388c721..0000000 Binary files a/uploads/temp_qr/PTC-270626-0048.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0049.png b/uploads/temp_qr/PTC-270626-0049.png deleted file mode 100644 index de42a3e..0000000 Binary files a/uploads/temp_qr/PTC-270626-0049.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0050.png b/uploads/temp_qr/PTC-270626-0050.png deleted file mode 100644 index 95d28e0..0000000 Binary files a/uploads/temp_qr/PTC-270626-0050.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0051.png b/uploads/temp_qr/PTC-270626-0051.png deleted file mode 100644 index b1b8f81..0000000 Binary files a/uploads/temp_qr/PTC-270626-0051.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0052.png b/uploads/temp_qr/PTC-270626-0052.png deleted file mode 100644 index 6f13c84..0000000 Binary files a/uploads/temp_qr/PTC-270626-0052.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0053.png b/uploads/temp_qr/PTC-270626-0053.png deleted file mode 100644 index 11c5f0a..0000000 Binary files a/uploads/temp_qr/PTC-270626-0053.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0054.png b/uploads/temp_qr/PTC-270626-0054.png deleted file mode 100644 index 0e37b8f..0000000 Binary files a/uploads/temp_qr/PTC-270626-0054.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0055.png b/uploads/temp_qr/PTC-270626-0055.png deleted file mode 100644 index b8dc152..0000000 Binary files a/uploads/temp_qr/PTC-270626-0055.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0056.png b/uploads/temp_qr/PTC-270626-0056.png deleted file mode 100644 index 24db253..0000000 Binary files a/uploads/temp_qr/PTC-270626-0056.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0057.png b/uploads/temp_qr/PTC-270626-0057.png deleted file mode 100644 index 3468aca..0000000 Binary files a/uploads/temp_qr/PTC-270626-0057.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0058.png b/uploads/temp_qr/PTC-270626-0058.png deleted file mode 100644 index 8d1d9f5..0000000 Binary files a/uploads/temp_qr/PTC-270626-0058.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0059.png b/uploads/temp_qr/PTC-270626-0059.png deleted file mode 100644 index ef8aa86..0000000 Binary files a/uploads/temp_qr/PTC-270626-0059.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0060.png b/uploads/temp_qr/PTC-270626-0060.png deleted file mode 100644 index 1fe848f..0000000 Binary files a/uploads/temp_qr/PTC-270626-0060.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0061.png b/uploads/temp_qr/PTC-270626-0061.png deleted file mode 100644 index aaa2fe5..0000000 Binary files a/uploads/temp_qr/PTC-270626-0061.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0062.png b/uploads/temp_qr/PTC-270626-0062.png deleted file mode 100644 index 78c3269..0000000 Binary files a/uploads/temp_qr/PTC-270626-0062.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0063.png b/uploads/temp_qr/PTC-270626-0063.png deleted file mode 100644 index ad3957a..0000000 Binary files a/uploads/temp_qr/PTC-270626-0063.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0064.png b/uploads/temp_qr/PTC-270626-0064.png deleted file mode 100644 index 18f3955..0000000 Binary files a/uploads/temp_qr/PTC-270626-0064.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0065.png b/uploads/temp_qr/PTC-270626-0065.png deleted file mode 100644 index 1dc9cad..0000000 Binary files a/uploads/temp_qr/PTC-270626-0065.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0066.png b/uploads/temp_qr/PTC-270626-0066.png deleted file mode 100644 index 3603fad..0000000 Binary files a/uploads/temp_qr/PTC-270626-0066.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0067.png b/uploads/temp_qr/PTC-270626-0067.png deleted file mode 100644 index cd3342e..0000000 Binary files a/uploads/temp_qr/PTC-270626-0067.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0068.png b/uploads/temp_qr/PTC-270626-0068.png deleted file mode 100644 index 15b77e4..0000000 Binary files a/uploads/temp_qr/PTC-270626-0068.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0069.png b/uploads/temp_qr/PTC-270626-0069.png deleted file mode 100644 index b88a9ac..0000000 Binary files a/uploads/temp_qr/PTC-270626-0069.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0070.png b/uploads/temp_qr/PTC-270626-0070.png deleted file mode 100644 index 9e85545..0000000 Binary files a/uploads/temp_qr/PTC-270626-0070.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0071.png b/uploads/temp_qr/PTC-270626-0071.png deleted file mode 100644 index c9d55cf..0000000 Binary files a/uploads/temp_qr/PTC-270626-0071.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0072.png b/uploads/temp_qr/PTC-270626-0072.png deleted file mode 100644 index da4f9b3..0000000 Binary files a/uploads/temp_qr/PTC-270626-0072.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0073.png b/uploads/temp_qr/PTC-270626-0073.png deleted file mode 100644 index 5b32f71..0000000 Binary files a/uploads/temp_qr/PTC-270626-0073.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0074.png b/uploads/temp_qr/PTC-270626-0074.png deleted file mode 100644 index 4d50714..0000000 Binary files a/uploads/temp_qr/PTC-270626-0074.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0075.png b/uploads/temp_qr/PTC-270626-0075.png deleted file mode 100644 index 489cfc7..0000000 Binary files a/uploads/temp_qr/PTC-270626-0075.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0076.png b/uploads/temp_qr/PTC-270626-0076.png deleted file mode 100644 index 031732e..0000000 Binary files a/uploads/temp_qr/PTC-270626-0076.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0077.png b/uploads/temp_qr/PTC-270626-0077.png deleted file mode 100644 index b8a13b1..0000000 Binary files a/uploads/temp_qr/PTC-270626-0077.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0078.png b/uploads/temp_qr/PTC-270626-0078.png deleted file mode 100644 index 284bace..0000000 Binary files a/uploads/temp_qr/PTC-270626-0078.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0079.png b/uploads/temp_qr/PTC-270626-0079.png deleted file mode 100644 index 17d8b7f..0000000 Binary files a/uploads/temp_qr/PTC-270626-0079.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0080.png b/uploads/temp_qr/PTC-270626-0080.png deleted file mode 100644 index b8f2c76..0000000 Binary files a/uploads/temp_qr/PTC-270626-0080.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0081.png b/uploads/temp_qr/PTC-270626-0081.png deleted file mode 100644 index cc2a2dd..0000000 Binary files a/uploads/temp_qr/PTC-270626-0081.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0082.png b/uploads/temp_qr/PTC-270626-0082.png deleted file mode 100644 index b18de22..0000000 Binary files a/uploads/temp_qr/PTC-270626-0082.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0083.png b/uploads/temp_qr/PTC-270626-0083.png deleted file mode 100644 index 96a6b41..0000000 Binary files a/uploads/temp_qr/PTC-270626-0083.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0084.png b/uploads/temp_qr/PTC-270626-0084.png deleted file mode 100644 index fa68f9e..0000000 Binary files a/uploads/temp_qr/PTC-270626-0084.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0085.png b/uploads/temp_qr/PTC-270626-0085.png deleted file mode 100644 index aa77893..0000000 Binary files a/uploads/temp_qr/PTC-270626-0085.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0086.png b/uploads/temp_qr/PTC-270626-0086.png deleted file mode 100644 index ae098c1..0000000 Binary files a/uploads/temp_qr/PTC-270626-0086.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0087.png b/uploads/temp_qr/PTC-270626-0087.png deleted file mode 100644 index b6d855b..0000000 Binary files a/uploads/temp_qr/PTC-270626-0087.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0088.png b/uploads/temp_qr/PTC-270626-0088.png deleted file mode 100644 index b106082..0000000 Binary files a/uploads/temp_qr/PTC-270626-0088.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0089.png b/uploads/temp_qr/PTC-270626-0089.png deleted file mode 100644 index ec00c53..0000000 Binary files a/uploads/temp_qr/PTC-270626-0089.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0090.png b/uploads/temp_qr/PTC-270626-0090.png deleted file mode 100644 index 03c3c84..0000000 Binary files a/uploads/temp_qr/PTC-270626-0090.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0091.png b/uploads/temp_qr/PTC-270626-0091.png deleted file mode 100644 index 5188558..0000000 Binary files a/uploads/temp_qr/PTC-270626-0091.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0092.png b/uploads/temp_qr/PTC-270626-0092.png deleted file mode 100644 index 8c67dd0..0000000 Binary files a/uploads/temp_qr/PTC-270626-0092.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0093.png b/uploads/temp_qr/PTC-270626-0093.png deleted file mode 100644 index 7c10617..0000000 Binary files a/uploads/temp_qr/PTC-270626-0093.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0094.png b/uploads/temp_qr/PTC-270626-0094.png deleted file mode 100644 index a868d84..0000000 Binary files a/uploads/temp_qr/PTC-270626-0094.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0095.png b/uploads/temp_qr/PTC-270626-0095.png deleted file mode 100644 index 69adee4..0000000 Binary files a/uploads/temp_qr/PTC-270626-0095.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0096.png b/uploads/temp_qr/PTC-270626-0096.png deleted file mode 100644 index f46e7d3..0000000 Binary files a/uploads/temp_qr/PTC-270626-0096.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0097.png b/uploads/temp_qr/PTC-270626-0097.png deleted file mode 100644 index 8ce0fc0..0000000 Binary files a/uploads/temp_qr/PTC-270626-0097.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0098.png b/uploads/temp_qr/PTC-270626-0098.png deleted file mode 100644 index 6242c12..0000000 Binary files a/uploads/temp_qr/PTC-270626-0098.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0099.png b/uploads/temp_qr/PTC-270626-0099.png deleted file mode 100644 index 35993ed..0000000 Binary files a/uploads/temp_qr/PTC-270626-0099.png and /dev/null differ diff --git a/uploads/temp_qr/PTC-270626-0100.png b/uploads/temp_qr/PTC-270626-0100.png deleted file mode 100644 index b27d29b..0000000 Binary files a/uploads/temp_qr/PTC-270626-0100.png and /dev/null differ