mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-27 00:52:50 +00:00
Backend (edr-freight-api): - Warehouse, WarehouseYard, WarehouseZone, WarehouseInventory entities - CRUD for warehouses/yards/zones with scoped code uniqueness - Inventory receive with location-hierarchy + capacity validation and transactional capacity-counter updates - inspect / ready-for-loading status transitions - inventory inquiry (booking/customer/container/cargo-type joins) - migration creating freight.warehouse* tables Frontend (freight backoffice): - types, service, react-query hooks, URL constants - reusable components: badges, filters, table/card views, inventory and inquiry tables, create/receive modals - pages: Warehouse list, detail (overview/yards/zones/inventory tabs), inventory, inventory inquiry - Warehouse Information card + Receive At Warehouse on booking detail - routes + sidebar nav; app-wide ErrorBoundary Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
51 lines
1.9 KiB
TypeScript
51 lines
1.9 KiB
TypeScript
import { Body, Controller, Get, Param, ParseUUIDPipe, Patch, Post, Query } from '@nestjs/common';
|
|
import { ApiBearerAuth, ApiOperation, ApiTags } from '@nestjs/swagger';
|
|
|
|
import { FilterWarehouseInventoryDto } from './dto/filter-inventory.dto';
|
|
import { InquiryWarehouseInventoryDto } from './dto/inquiry-inventory.dto';
|
|
import { ReceiveWarehouseInventoryDto } from './dto/receive-inventory.dto';
|
|
import { WarehouseInventoryService } from './warehouse-inventory.service';
|
|
|
|
@ApiTags('warehouse-inventory')
|
|
@ApiBearerAuth()
|
|
@Controller('warehouse-inventory')
|
|
export class WarehouseInventoryController {
|
|
constructor(private readonly inventoryService: WarehouseInventoryService) {}
|
|
|
|
@Get()
|
|
@ApiOperation({ summary: 'List warehouse inventory' })
|
|
findAll(@Query() filter: FilterWarehouseInventoryDto) {
|
|
return this.inventoryService.findAll(filter);
|
|
}
|
|
|
|
@Get('ready-for-loading')
|
|
@ApiOperation({ summary: 'List inventory ready for loading' })
|
|
findReadyForLoading(@Query() filter: FilterWarehouseInventoryDto) {
|
|
return this.inventoryService.findReadyForLoading(filter);
|
|
}
|
|
|
|
@Get('inquiry')
|
|
@ApiOperation({ summary: 'Locate any item inside the warehouse' })
|
|
inquiry(@Query() filter: InquiryWarehouseInventoryDto) {
|
|
return this.inventoryService.inquiry(filter);
|
|
}
|
|
|
|
@Post('receive')
|
|
@ApiOperation({ summary: 'Receive inventory at a warehouse location' })
|
|
receive(@Body() dto: ReceiveWarehouseInventoryDto) {
|
|
return this.inventoryService.receive(dto);
|
|
}
|
|
|
|
@Patch(':id/inspect')
|
|
@ApiOperation({ summary: 'Move inventory to UNDER_INSPECTION' })
|
|
inspect(@Param('id', ParseUUIDPipe) id: string) {
|
|
return this.inventoryService.inspect(id);
|
|
}
|
|
|
|
@Patch(':id/ready-for-loading')
|
|
@ApiOperation({ summary: 'Move inventory to READY_FOR_LOADING' })
|
|
readyForLoading(@Param('id', ParseUUIDPipe) id: string) {
|
|
return this.inventoryService.readyForLoading(id);
|
|
}
|
|
}
|