mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-19 14:57:55 -05:00
add item_number duplication check when adding new items fix barcode on receivings receipt (after completion) change backup db download format to gz
22 lines
356 B
PHP
Executable File
22 lines
356 B
PHP
Executable File
<?php
|
|
|
|
class MY_Form_validation extends CI_Form_validation
|
|
{
|
|
function MY_Form_validation($rules = array())
|
|
{
|
|
parent::__construct($rules);
|
|
}
|
|
|
|
function get_error_message()
|
|
{
|
|
return $this->error_string;
|
|
}
|
|
|
|
function get_error_messages()
|
|
{
|
|
return $this->_error_array;
|
|
}
|
|
|
|
}
|
|
|
|
?>
|