Z
Asked
Hi,
I noticed when creating a new item it doesn't matter what I choose from the Barcode list it will use always the Code39.
If I try to update the Barcode it's leaving the code39. If I manually change it eg. Code128 in the database, it stays and can't be updated too.
Any suggeston?
Thanks!
I noticed when creating a new item it doesn't matter what I choose from the Barcode list it will use always the Code39.
If I try to update the Barcode it's leaving the code39. If I manually change it eg. Code128 in the database, it stays and can't be updated too.
Any suggeston?
Thanks!
- MSAnsweredHello,
Please add the following line to `$data` array of `add` & `edit` methods in the `app/controllers/Items.php`
```
'barcode_symbology' => $this->input->post('barcode_symbology'),
```
This should fix the issue.
Thank you - ZAnsweredHi,
thanks for the solution! It works now. :ok_hand:
Best regards - Login to Reply