mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 14:20:31 +00:00
add server to monorepo.
This commit is contained in:
24
packages/server/src/services/Warehouses/GetWarehouse.ts
Normal file
24
packages/server/src/services/Warehouses/GetWarehouse.ts
Normal file
@@ -0,0 +1,24 @@
|
||||
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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user