build_app
This commit is contained in:
parent
f8253fba28
commit
9c61cba909
@ -78,6 +78,18 @@ addCustomMenu( "Projects","Projects", "Transcations");
|
|||||||
addCustomMenu( "Clients","Clients", "Master");
|
addCustomMenu( "Clients","Clients", "Master");
|
||||||
|
|
||||||
|
|
||||||
|
addCustomMenu( "Dashboard_overview","Dashboard_overview", "Transcations");
|
||||||
|
|
||||||
|
|
||||||
|
addCustomMenu( "Invoices","Invoices", "Transcations");
|
||||||
|
|
||||||
|
|
||||||
|
addCustomMenu( "Projects","Projects", "Transcations");
|
||||||
|
|
||||||
|
|
||||||
|
addCustomMenu( "Clients","Clients", "Master");
|
||||||
|
|
||||||
|
|
||||||
addCustomMenu( "Dashboard_overview","Dashboard_overview", "Transcations");
|
addCustomMenu( "Dashboard_overview","Dashboard_overview", "Transcations");
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
8
freelancerpm-dbbf-d/authsec_mysql/mysql/wf_table/wf_table.sql
Executable file
8
freelancerpm-dbbf-d/authsec_mysql/mysql/wf_table/wf_table.sql
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
CREATE TABLE dbbf.Dashboard_overview(id BIGINT NOT NULL AUTO_INCREMENT, active_projects int, total_clients int, recent_projects VARCHAR(400), recent_clients VARCHAR(400), total_revenue int, PRIMARY KEY (id));
|
||||||
|
|
||||||
|
CREATE TABLE dbbf.Clients(id BIGINT NOT NULL AUTO_INCREMENT, client_email VARCHAR(400), client_name VARCHAR(400), PRIMARY KEY (id));
|
||||||
|
|
||||||
|
CREATE TABLE dbbf.Projects(id BIGINT NOT NULL AUTO_INCREMENT, select_client int, project_description VARCHAR(400), estimated_hours int, project_name VARCHAR(400), hourly_rate VARCHAR(400), PRIMARY KEY (id));
|
||||||
|
|
||||||
|
CREATE TABLE dbbf.Invoices(id BIGINT NOT NULL AUTO_INCREMENT, generate_invoices VARCHAR(400), PRIMARY KEY (id));
|
||||||
|
|
||||||
@ -1,3 +1,7 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
import { InvoicesComponent } from './BuilderComponents/basic/Invoices/Invoices.component';
|
import { InvoicesComponent } from './BuilderComponents/basic/Invoices/Invoices.component';
|
||||||
import { ProjectsComponent } from './BuilderComponents/basic/Projects/Projects.component';
|
import { ProjectsComponent } from './BuilderComponents/basic/Projects/Projects.component';
|
||||||
import { ClientsComponent } from './BuilderComponents/basic/Clients/Clients.component';
|
import { ClientsComponent } from './BuilderComponents/basic/Clients/Clients.component';
|
||||||
@ -260,6 +264,14 @@ const routes: Routes = [
|
|||||||
|
|
||||||
|
|
||||||
// buildercomponents
|
// buildercomponents
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
{path:'Invoices',component:InvoicesComponent},
|
{path:'Invoices',component:InvoicesComponent},
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -1,3 +1,7 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
import { InvoicesComponent } from './BuilderComponents/basic/Invoices/Invoices.component';
|
import { InvoicesComponent } from './BuilderComponents/basic/Invoices/Invoices.component';
|
||||||
import { ProjectsComponent } from './BuilderComponents/basic/Projects/Projects.component';
|
import { ProjectsComponent } from './BuilderComponents/basic/Projects/Projects.component';
|
||||||
import { ClientsComponent } from './BuilderComponents/basic/Clients/Clients.component';
|
import { ClientsComponent } from './BuilderComponents/basic/Clients/Clients.component';
|
||||||
@ -133,6 +137,14 @@ import { Stepper_workflowComponent } from './BuilderComponents/stepperworkflow/S
|
|||||||
|
|
||||||
|
|
||||||
// buildercomponents
|
// buildercomponents
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
InvoicesComponent,
|
InvoicesComponent,
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user