@nomalism-com/types 0.27.98 → 0.27.100
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -28,7 +28,7 @@ export interface IUnpaidMaterialEntranceLineResponse {
|
|
|
28
28
|
global_discount: number;
|
|
29
29
|
preco_custo: number;
|
|
30
30
|
preco_venda: number;
|
|
31
|
-
margin: number;
|
|
31
|
+
margin: number | null;
|
|
32
32
|
total_without_tax: number;
|
|
33
33
|
total: number;
|
|
34
34
|
types: IUnpaidMaterialEntranceLineType[];
|
|
@@ -663,13 +663,13 @@ export type ProductBaseVirtuals = {
|
|
|
663
663
|
price_cost: number;
|
|
664
664
|
price_sale: number;
|
|
665
665
|
last_avg_unit_cost: number;
|
|
666
|
-
margin: number;
|
|
666
|
+
margin: number | null;
|
|
667
667
|
};
|
|
668
668
|
export type ProductVirtuals = {
|
|
669
669
|
product_id: string;
|
|
670
670
|
price_cost: number;
|
|
671
671
|
price_sale: number;
|
|
672
|
-
margin: number;
|
|
672
|
+
margin: number | null;
|
|
673
673
|
last_avg_unit_cost: number;
|
|
674
674
|
reserved: number;
|
|
675
675
|
prison: number;
|