mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
25 lines
633 B
TypeScript
25 lines
633 B
TypeScript
import { Inject, Service } from 'typedi';
|
|
import HasTenancyService from '@/services/Tenancy/TenancyService';
|
|
import { CRUDWarehouse } from './CRUDWarehouse';
|
|
|
|
@Service()
|
|
export class GetWarehouse extends CRUDWarehouse {
|
|
@Inject()
|
|
tenancy: HasTenancyService;
|
|
|
|
/**
|
|
* Retrieves warehouse details.
|
|
* @param {number} tenantId
|
|
* @returns
|
|
*/
|
|
public getWarehouse = async (tenantId: number, warehouseId: number) => {
|
|
const { Warehouse } = this.tenancy.models(tenantId);
|
|
|
|
const warehouse = await Warehouse.query().findById(warehouseId);
|
|
|
|
this.throwIfWarehouseNotFound(warehouse);
|
|
|
|
return warehouse;
|
|
};
|
|
}
|