Creating Estimate Page

This commit is contained in:
Paolo Arena
2019-07-14 18:43:56 +02:00
parent 6a92dbeca8
commit a80bbe3236
3 changed files with 73 additions and 12 deletions

View File

@@ -2,7 +2,7 @@ import { tools } from '@src/store/Modules/tools'
import { toolsext } from '@src/store/Modules/toolsext'
export interface IEstimate {
id: number
id?: number
title: string
advanced?: boolean
description?: string
@@ -12,6 +12,7 @@ export interface IEstimate {
icon?: string
numpag?: number
qta?: number
price: number
price?: number
pricebase?: number
checksel?: boolean
}