Skip to content
This repository has been archived by the owner on Jun 25, 2022. It is now read-only.

Commit

Permalink
refactor(front-end): Add optional properties for ProductInvoiceDetail…
Browse files Browse the repository at this point in the history
… model
  • Loading branch information
CarlosPavajeau committed Jan 4, 2021
1 parent 5315f40 commit 49f76da
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { Product } from '@modules/inventory/products/models/product';

export interface ProductInvoiceDetail {
id: number;
id?: number;
productCode: string;
productName: string;
productName?: string;
amount: number;

detail?: Product;

total: number;
total?: number;
}

0 comments on commit 49f76da

Please sign in to comment.