update permits schema
This commit is contained in:
103
src/utils/pipeline.ts
Normal file
103
src/utils/pipeline.ts
Normal file
@@ -0,0 +1,103 @@
|
||||
export const pipeline: {
|
||||
name: string;
|
||||
date?: Date;
|
||||
description?: string;
|
||||
comment?: string;
|
||||
}[] = [
|
||||
{
|
||||
name: "Ready to submit",
|
||||
date: null,
|
||||
description: "",
|
||||
comment: "",
|
||||
},
|
||||
{
|
||||
name: "Validating",
|
||||
date: null,
|
||||
description: "",
|
||||
comment: "",
|
||||
},
|
||||
{
|
||||
name: "Information Required",
|
||||
date: null,
|
||||
description: "",
|
||||
comment: "",
|
||||
},
|
||||
{
|
||||
name: "In Progress",
|
||||
date: null,
|
||||
description: "",
|
||||
comment: "",
|
||||
},
|
||||
{
|
||||
name: "On Hold",
|
||||
date: null,
|
||||
description: "",
|
||||
comment: "",
|
||||
},
|
||||
{
|
||||
name: "Submitted",
|
||||
date: null,
|
||||
description: "",
|
||||
comment: "",
|
||||
},
|
||||
{
|
||||
name: "In Review",
|
||||
date: null,
|
||||
description: "",
|
||||
comment: "",
|
||||
},
|
||||
{
|
||||
name: "Awaiting Client Reply",
|
||||
date: null,
|
||||
description: "",
|
||||
comment: "",
|
||||
},
|
||||
{
|
||||
name: "Fees Due",
|
||||
date: null,
|
||||
description: "",
|
||||
comment: "",
|
||||
},
|
||||
{
|
||||
name: "Revision Request",
|
||||
date: null,
|
||||
description: "",
|
||||
comment: "",
|
||||
},
|
||||
{
|
||||
name: "Ready to Issue",
|
||||
date: null,
|
||||
description: "",
|
||||
comment: "",
|
||||
},
|
||||
{
|
||||
name: "Issued",
|
||||
date: null,
|
||||
description: "",
|
||||
comment: "",
|
||||
},
|
||||
{
|
||||
name: "Completed",
|
||||
date: null,
|
||||
description: "",
|
||||
comment: "",
|
||||
},
|
||||
{
|
||||
name: "Invoiced",
|
||||
date: null,
|
||||
description: "",
|
||||
comment: "",
|
||||
},
|
||||
{
|
||||
name: "Cancel/Void",
|
||||
date: null,
|
||||
description: "",
|
||||
comment: "",
|
||||
},
|
||||
{
|
||||
name: "Expired",
|
||||
date: null,
|
||||
description: "",
|
||||
comment: "",
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user