Transform into wails project

This commit is contained in:
2025-07-04 17:24:36 +02:00
parent b18b05c675
commit 926eff3aeb
112 changed files with 2394 additions and 89 deletions

View File

@@ -1,22 +0,0 @@
import { IndJobStatusOptions, IndTransactionRecord } from "./pbtypes"
import { IsoDateString } from "./pbtypes"
import { IndBillitemRecord } from "./pbtypes"
export type IndJob = {
billOfMaterials?: IndBillitemRecord[]
consumedMaterials?: IndBillitemRecord[]
created?: IsoDateString
expenditures?: IndTransactionRecord[]
id: string
income?: IndTransactionRecord[]
jobEnd?: IsoDateString
jobStart?: IsoDateString
outputItem: string
outputQuantity: number
saleEnd?: IsoDateString
saleStart?: IsoDateString
status: IndJobStatusOptions
updated?: IsoDateString
projectedCost?: number
projectedRevenue?: number
}