mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-09 00:08:18 +00:00
fix
This commit is contained in:
@@ -1,11 +1,10 @@
|
|||||||
import { BadRequestException, Injectable, Logger, NotFoundException } from '@nestjs/common';
|
import { Injectable, Logger, NotFoundException } from '@nestjs/common';
|
||||||
import { DataSource, FindOptionsWhere, In } from 'typeorm';
|
import { DataSource, FindOptionsWhere } from 'typeorm';
|
||||||
|
|
||||||
import { BookingsRepository } from '../bookings/bookings.repository';
|
import { BookingsRepository } from '../bookings/bookings.repository';
|
||||||
import { DriversService } from '../drivers/drivers.service';
|
import { DriversService } from '../drivers/drivers.service';
|
||||||
import { SmsClientService } from '../notifications/sms-client.service';
|
import { SmsClientService } from '../notifications/sms-client.service';
|
||||||
import { VehiclesService } from '../vehicles/vehicles.service';
|
import { VehiclesService } from '../vehicles/vehicles.service';
|
||||||
import { VehicleAvailability } from '../vehicles/entities/vehicle.entity';
|
|
||||||
import { CreateLastMileDto } from './dto/create-last-mile.dto';
|
import { CreateLastMileDto } from './dto/create-last-mile.dto';
|
||||||
import { UpdateLastMileDto } from './dto/update-last-mile.dto';
|
import { UpdateLastMileDto } from './dto/update-last-mile.dto';
|
||||||
import { LastMile, LastMileStatus } from './entities/last-mile.entity';
|
import { LastMile, LastMileStatus } from './entities/last-mile.entity';
|
||||||
@@ -72,6 +71,7 @@ export class LastMileService {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
return this.create({
|
return this.create({
|
||||||
bookingId: booking.id,
|
bookingId: booking.id,
|
||||||
advancedPayment: 0,
|
advancedPayment: 0,
|
||||||
@@ -132,17 +132,7 @@ export class LastMileService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async create(dto: CreateLastMileDto): Promise<LastMile> {
|
async create(dto: CreateLastMileDto): Promise<LastMile> {
|
||||||
<<<<<<< HEAD
|
|
||||||
const record = await this.lastMileRepository.create({
|
|
||||||
=======
|
|
||||||
const [existing] = await this.lastMileRepository.findAll({
|
|
||||||
where: { bookingId: dto.bookingId },
|
|
||||||
take: 1,
|
|
||||||
});
|
|
||||||
if (existing) return existing;
|
|
||||||
|
|
||||||
return this.lastMileRepository.create({
|
return this.lastMileRepository.create({
|
||||||
>>>>>>> 9d14414bf10079b38a04a709aa918c7e470dce34
|
|
||||||
bookingId: dto.bookingId,
|
bookingId: dto.bookingId,
|
||||||
status: dto.status ?? 'READY_TO_TRANSIT',
|
status: dto.status ?? 'READY_TO_TRANSIT',
|
||||||
advancedPayment: dto.advancedPayment ?? 0,
|
advancedPayment: dto.advancedPayment ?? 0,
|
||||||
@@ -152,12 +142,6 @@ export class LastMileService {
|
|||||||
vehicleId: dto.vehicleId ?? null,
|
vehicleId: dto.vehicleId ?? null,
|
||||||
paid: (dto as any).paid ?? false,
|
paid: (dto as any).paid ?? false,
|
||||||
});
|
});
|
||||||
|
|
||||||
if (dto.vehicleId) {
|
|
||||||
await this.vehiclesService.setAvailability(dto.vehicleId, VehicleAvailability.BUSY);
|
|
||||||
}
|
|
||||||
|
|
||||||
return record;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@OnEvent("lastmile.invoice.paid")
|
@OnEvent("lastmile.invoice.paid")
|
||||||
@@ -175,13 +159,6 @@ export class LastMileService {
|
|||||||
async update(id: string, dto: UpdateLastMileDto): Promise<LastMile> {
|
async update(id: string, dto: UpdateLastMileDto): Promise<LastMile> {
|
||||||
const existing = await this.findById(id);
|
const existing = await this.findById(id);
|
||||||
|
|
||||||
if (
|
|
||||||
existing.status === 'DELIVERED' &&
|
|
||||||
(dto.vehicleId !== undefined || dto.exactKm !== undefined)
|
|
||||||
) {
|
|
||||||
throw new BadRequestException('Delivered records cannot be reassigned or have distance changed');
|
|
||||||
}
|
|
||||||
|
|
||||||
const dtoAny = dto as any;
|
const dtoAny = dto as any;
|
||||||
const updated = await this.lastMileRepository.update(id, {
|
const updated = await this.lastMileRepository.update(id, {
|
||||||
...(dto.bookingId !== undefined ? { bookingId: dto.bookingId } : {}),
|
...(dto.bookingId !== undefined ? { bookingId: dto.bookingId } : {}),
|
||||||
@@ -198,46 +175,14 @@ export class LastMileService {
|
|||||||
throw new NotFoundException(`Last-mile record ${id} not found`);
|
throw new NotFoundException(`Last-mile record ${id} not found`);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Keep vehicle statuses in sync: new vehicle goes BUSY, replaced one goes back to FREE
|
|
||||||
if (dto.vehicleId !== undefined && dto.vehicleId !== existing.vehicleId) {
|
|
||||||
if (dto.vehicleId) {
|
|
||||||
await this.vehiclesService.setAvailability(dto.vehicleId, VehicleAvailability.BUSY);
|
|
||||||
}
|
|
||||||
if (existing.vehicleId) {
|
|
||||||
await this.vehiclesService.releaseIfUnused([existing.vehicleId]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Notify assigned driver on every explicit vehicle assignment or reassignment
|
// Notify assigned driver on every explicit vehicle assignment or reassignment
|
||||||
if (dto.vehicleId) {
|
if (dto.vehicleId) {
|
||||||
void this.notifyDriverAssignment(dto.vehicleId, existing);
|
void this.notifyDriverAssignment(dto.vehicleId, existing);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Trip finished — release the vehicles it was holding
|
|
||||||
if (dto.status === 'DELIVERED' && existing.status !== 'DELIVERED') {
|
|
||||||
await this.releaseVehicles(updated);
|
|
||||||
}
|
|
||||||
|
|
||||||
return updated;
|
return updated;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Free every vehicle held by this record (direct assignment + container
|
|
||||||
* allocations), unless still in use by another active trip.
|
|
||||||
*/
|
|
||||||
private async releaseVehicles(record: LastMile): Promise<void> {
|
|
||||||
const recordAllocations = await this.dataSource.manager.find(LastMileContainerAllocation, {
|
|
||||||
where: { lastMileId: record.id },
|
|
||||||
});
|
|
||||||
const vehicleIds = recordAllocations
|
|
||||||
.map((a) => a.vehicleId)
|
|
||||||
.filter((id): id is string => Boolean(id));
|
|
||||||
if (record.vehicleId) {
|
|
||||||
vehicleIds.push(record.vehicleId);
|
|
||||||
}
|
|
||||||
await this.vehiclesService.releaseIfUnused(vehicleIds);
|
|
||||||
}
|
|
||||||
|
|
||||||
private async notifyDriverAssignment(vehicleId: string, record: LastMile): Promise<void> {
|
private async notifyDriverAssignment(vehicleId: string, record: LastMile): Promise<void> {
|
||||||
try {
|
try {
|
||||||
const vehicle = await this.vehiclesService.findById(vehicleId);
|
const vehicle = await this.vehiclesService.findById(vehicleId);
|
||||||
@@ -278,10 +223,7 @@ export class LastMileService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async remove(id: string): Promise<void> {
|
async remove(id: string): Promise<void> {
|
||||||
const existing = await this.findById(id);
|
await this.findById(id);
|
||||||
if (existing.status === 'DELIVERED') {
|
|
||||||
throw new BadRequestException('Delivered records cannot be deleted');
|
|
||||||
}
|
|
||||||
await this.lastMileRepository.softDelete(id);
|
await this.lastMileRepository.softDelete(id);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -294,16 +236,6 @@ export class LastMileService {
|
|||||||
throw new NotFoundException(`Last-mile record ${lastMileId} not found`);
|
throw new NotFoundException(`Last-mile record ${lastMileId} not found`);
|
||||||
}
|
}
|
||||||
|
|
||||||
const previousAllocations = await this.dataSource.manager.find(LastMileContainerAllocation, {
|
|
||||||
where: {
|
|
||||||
lastMileId,
|
|
||||||
containerId: In(allocations.map((a) => a.containerId)),
|
|
||||||
},
|
|
||||||
});
|
|
||||||
const previousVehicleIds = previousAllocations
|
|
||||||
.map((a) => a.vehicleId)
|
|
||||||
.filter((id): id is string => Boolean(id));
|
|
||||||
|
|
||||||
await this.dataSource.transaction(async (manager) => {
|
await this.dataSource.transaction(async (manager) => {
|
||||||
for (const allocation of allocations) {
|
for (const allocation of allocations) {
|
||||||
await manager.delete(LastMileContainerAllocation, {
|
await manager.delete(LastMileContainerAllocation, {
|
||||||
@@ -320,14 +252,6 @@ export class LastMileService {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
const vehicleIds = new Set(allocations.map((a) => a.vehicleId));
|
|
||||||
await Promise.all(
|
|
||||||
[...vehicleIds].map((vehicleId) => this.vehiclesService.setAvailability(vehicleId, VehicleAvailability.BUSY)),
|
|
||||||
);
|
|
||||||
await this.vehiclesService.releaseIfUnused(
|
|
||||||
previousVehicleIds.filter((id) => !vehicleIds.has(id)),
|
|
||||||
);
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
success: true,
|
success: true,
|
||||||
allocated: allocations.length,
|
allocated: allocations.length,
|
||||||
|
|||||||
Reference in New Issue
Block a user