mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-05-29 18:55:53 -04:00
- getDateAdded and getDatesAdded in Inventory.php - GetDistinctCategories in Item.php - GetBulkItemQuantities in Item_quantity.php - GetBulkInfo in Item_taxes.php - GetStockLocationsByItem in Stock_location.php Signed-off-by: objec <objecttothis@gmail.com>
143 lines
4.2 KiB
PHP
143 lines
4.2 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
use stdClass;
|
|
|
|
/**
|
|
* Item_quantity class
|
|
*/
|
|
class Item_quantity extends Model
|
|
{
|
|
protected $table = 'item_quantities';
|
|
protected $primaryKey = 'item_id';
|
|
protected $useAutoIncrement = false;
|
|
protected $useSoftDeletes = false;
|
|
protected $allowedFields = [
|
|
'quantity'
|
|
];
|
|
|
|
protected $item_id;
|
|
protected $location_id;
|
|
protected $quantity;
|
|
|
|
/**
|
|
* @param int $item_id
|
|
* @param int $location_id
|
|
* @return bool
|
|
*/
|
|
public function exists(int $item_id, int $location_id): bool
|
|
{
|
|
$builder = $this->db->table('item_quantities');
|
|
$builder->where('item_id', $item_id);
|
|
$builder->where('location_id', $location_id);
|
|
|
|
return ($builder->get()->getNumRows() == 1); // TODO: ===
|
|
}
|
|
|
|
/**
|
|
* @param array $location_detail
|
|
* @param int $item_id
|
|
* @param int $location_id
|
|
* @return bool
|
|
*/
|
|
public function save_value(array $location_detail, int $item_id, int $location_id): bool
|
|
{
|
|
if (!$this->exists($item_id, $location_id)) {
|
|
$builder = $this->db->table('item_quantities');
|
|
return $builder->insert($location_detail);
|
|
}
|
|
|
|
$builder = $this->db->table('item_quantities');
|
|
$builder->where('item_id', $item_id);
|
|
$builder->where('location_id', $location_id);
|
|
|
|
return $builder->update($location_detail);
|
|
}
|
|
|
|
/**
|
|
* @param int $item_id
|
|
* @param int $location_id
|
|
* @return array|Item_quantity|stdClass|null
|
|
*/
|
|
public function get_item_quantity(int $item_id, int $location_id): array|Item_quantity|StdClass|null
|
|
{
|
|
$builder = $this->db->table('item_quantities');
|
|
$builder->where('item_id', $item_id);
|
|
$builder->where('location_id', $location_id);
|
|
$result = $builder->get()->getRow();
|
|
|
|
if (empty($result)) {
|
|
// Get empty base parent object, as $item_id is NOT an item
|
|
$result = model(Item_quantity::class);
|
|
|
|
// Get all the fields from items table (TODO: to be reviewed)
|
|
foreach ($this->db->getFieldNames('item_quantities') as $field) {
|
|
$result->$field = '';
|
|
}
|
|
|
|
$result->quantity = 0;
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* Get all the quantities of the given items. Used by plugins. Do not remove from code.
|
|
*
|
|
* @param array $itemIds
|
|
* @param bool $getDeleted
|
|
* @return array
|
|
*/
|
|
public function getBulkItemQuantities(array $itemIds, bool $getDeleted = false): array
|
|
{
|
|
$builder = $this->db->table('item_quantities');
|
|
$builder->whereIn('item_quantities.item_id', $itemIds);
|
|
|
|
if (!$getDeleted) {
|
|
$builder->join('stock_locations', 'stock_locations.location_id = item_quantities.location_id');
|
|
$builder->where('stock_locations.deleted', 0);
|
|
$builder->select('item_quantities.*');
|
|
}
|
|
|
|
return $builder->get()->getResultArray();
|
|
}
|
|
|
|
/**
|
|
* changes to quantity of an item according to the given amount.
|
|
* if $quantity_change is negative, it will be subtracted,
|
|
* if it is positive, it will be added to the current quantity
|
|
*/
|
|
public function change_quantity(int $item_id, int $location_id, int $quantity_change): bool
|
|
{
|
|
$quantity_old = $this->get_item_quantity($item_id, $location_id);
|
|
$quantity_new = $quantity_old->quantity + $quantity_change;
|
|
$location_detail = ['item_id' => $item_id, 'location_id' => $location_id, 'quantity' => $quantity_new];
|
|
|
|
return $this->save_value($location_detail, $item_id, $location_id);
|
|
}
|
|
|
|
/**
|
|
* Set to 0 all quantity in the given item
|
|
*/
|
|
public function reset_quantity(int $item_id): bool
|
|
{
|
|
$builder = $this->db->table('item_quantities');
|
|
$builder->where('item_id', $item_id);
|
|
|
|
return $builder->update(['quantity' => 0]);
|
|
}
|
|
|
|
/**
|
|
* Set to 0 all quantity in the given list of items
|
|
*/
|
|
public function reset_quantity_list(array $item_ids): bool
|
|
{
|
|
$builder = $this->db->table('item_quantities');
|
|
$builder->whereIn('item_id', $item_ids);
|
|
|
|
return $builder->update(['quantity' => 0]);
|
|
}
|
|
}
|