2026-01-07 15:25:59 +03:30
|
|
|
import { Injectable } from '@nestjs/common'
|
|
|
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
|
export class SalesInvoicesService {
|
2026-02-12 20:31:04 +03:30
|
|
|
findAll() {
|
|
|
|
|
// TODO: Implement fetching all sales invoices
|
|
|
|
|
return []
|
2026-01-07 15:25:59 +03:30
|
|
|
}
|
|
|
|
|
|
2026-02-12 20:31:04 +03:30
|
|
|
findOne(id: number) {
|
|
|
|
|
// TODO: Implement fetching a single sales invoice
|
|
|
|
|
return {}
|
2026-01-07 15:25:59 +03:30
|
|
|
}
|
|
|
|
|
|
2026-02-12 20:31:04 +03:30
|
|
|
create(data: any) {
|
|
|
|
|
// TODO: Implement sales invoice creation
|
|
|
|
|
return data
|
2026-01-07 15:25:59 +03:30
|
|
|
}
|
|
|
|
|
}
|