From 8d7e8d6b9b3f70027d0eb745266cc6bec3f9cc17 Mon Sep 17 00:00:00 2001 From: objecttothis <17935339+objecttothis@users.noreply.github.com> Date: Tue, 12 Sep 2017 12:41:33 +0400 Subject: [PATCH] Save value of allow_duplicate_barcodes --- application/controllers/Config.php | 1 + 1 file changed, 1 insertion(+) diff --git a/application/controllers/Config.php b/application/controllers/Config.php index dc0bc8b17..c1f00367e 100644 --- a/application/controllers/Config.php +++ b/application/controllers/Config.php @@ -289,6 +289,7 @@ class Config extends Secure_Controller 'theme' => $this->input->post('theme'), 'default_sales_discount' => $this->input->post('default_sales_discount'), 'receiving_calculate_average_price' => $this->input->post('receiving_calculate_average_price') != NULL, + 'allow_duplicate_barcodes' => $this->input->post('allow_duplicate_barcodes') != NULL, 'lines_per_page' => $this->input->post('lines_per_page'), 'notify_horizontal_position' => $this->input->post('notify_horizontal_position'), 'notify_vertical_position' => $this->input->post('notify_vertical_position'),