Files
opensourcepos/app/Models/Inventory.php
objecttothis ba9bcd7786 PHPdocs
- Added missing PHPdocs
- Corrected Syntax
- Added noinspection parameters to PHPdoc for AJAX called functions
- Added missing function return types
- Added missing parameter types
- Added public keyword to functions without visibility modifier
- Corrected incorrectly formatted PHPdocs
- Added public to constants and functions missing a visibility keyword
2024-06-15 17:19:15 +02:00

118 lines
2.8 KiB
PHP

<?php
namespace App\Models;
use CodeIgniter\Database\BaseResult;
use CodeIgniter\Database\ResultInterface;
use CodeIgniter\Model;
use ReflectionException;
/**
* Inventory class
*
* @property employee employee
*
*/
class Inventory extends Model
{
protected $table = 'inventory';
protected $primaryKey = 'trans_id';
protected $useAutoIncrement = true;
protected $useSoftDeletes = false;
protected $allowedFields = [
'trans_items',
'trans_user',
'trans_date',
'trans_comment',
'trans_inventory',
'trans_location'
];
/**
* Insert new data into the Inventory table.
*
* @param array|null|object $inventory_data Data to be inserted into the inventory table.
* @param bool $returnID Returns the value of the ID column for the inserted row.
* @return int|string|bool The ID of the inserted row on success or false on failure
*/
public function insert($inventory_data = null, bool $returnID = true)
{
$builder = $this->db->table('inventory');
return $builder->insert($inventory_data, $returnID);
}
/**
* @param $comment
* @param $inventory_data
* @return bool
*/
public function update($comment = null, $inventory_data = null): bool
{
$builder = $this->db->table('inventory');
$builder->where('trans_comment', $comment);
return $builder->update($inventory_data);
}
/**
* Retrieves inventory data given an item_id. Called in the view.
* @param int $item_id
* @param bool $location_id
* @return ResultInterface
*/
public function get_inventory_data_for_item(int $item_id, bool $location_id = false): ResultInterface
{
$builder = $this->db->table('inventory');
$builder->where('trans_items', $item_id);
if($location_id)
{
$builder->where('trans_location', $location_id);
}
$builder->orderBy('trans_date', 'desc');
return $builder->get();
}
/**
* @throws ReflectionException
*/
public function reset_quantity(int $item_id): bool
{
$inventory_sums = $this->get_inventory_sum($item_id);
foreach($inventory_sums as $inventory_sum)
{
if($inventory_sum['sum'] > 0)
{//TODO: Reflection Exception
$employee = model(Employee::class);
return $this->insert([
'trans_inventory' => -1 * $inventory_sum['sum'],
'trans_items' => $item_id,
'trans_location' => $inventory_sum['location_id'],
'trans_comment' => lang('Items.is_deleted'),
'trans_user' => $employee->get_logged_in_employee_info()->person_id
]);
}
}
return true;
}
/**
* @param int $item_id
* @return array
*/
public function get_inventory_sum(int $item_id): array
{
$builder = $this->db->table('inventory');
$builder->select('SUM(trans_inventory) AS sum, MAX(trans_location) AS location_id');
$builder->where('trans_items', $item_id);
$builder->groupBy('trans_location');
return $builder->get()->getResultArray();
}
}