This commit is contained in:
Ahmed Bouhuolia
2025-01-15 15:28:39 +02:00
parent 936800600b
commit 7bcd578c11
11 changed files with 894 additions and 1000 deletions

View File

@@ -1,13 +1,12 @@
import { Injectable } from '@nestjs/common';
import { InventoryService } from '@/modules/InventoryCost/Inventory';
import { InventoryTransactionsService } from '@/modules/InventoryCost/InventoryTransactions.service';
import { ItemsEntriesService } from '@/modules/Items/ItemsEntries.service';
import { CreditNote } from '../models/CreditNote';
import { Knex } from 'knex';
@Injectable()
export class CreditNoteInventoryTransactions {
constructor(
private readonly inventoryService: InventoryService,
private readonly inventoryService: InventoryTransactionsService,
private readonly itemsEntriesService: ItemsEntriesService,
) {}