build_app

This commit is contained in:
risadmin_prod 2025-07-18 11:30:25 +00:00
parent f8253fba28
commit 9c61cba909
4 changed files with 44 additions and 0 deletions

View File

@ -78,6 +78,18 @@ addCustomMenu( "Projects","Projects", "Transcations");
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");

View 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));

View File

@ -1,3 +1,7 @@
import { InvoicesComponent } from './BuilderComponents/basic/Invoices/Invoices.component';
import { ProjectsComponent } from './BuilderComponents/basic/Projects/Projects.component';
import { ClientsComponent } from './BuilderComponents/basic/Clients/Clients.component';
@ -260,6 +264,14 @@ const routes: Routes = [
// buildercomponents
{path:'Invoices',component:InvoicesComponent},

View File

@ -1,3 +1,7 @@
import { InvoicesComponent } from './BuilderComponents/basic/Invoices/Invoices.component';
import { ProjectsComponent } from './BuilderComponents/basic/Projects/Projects.component';
import { ClientsComponent } from './BuilderComponents/basic/Clients/Clients.component';
@ -133,6 +137,14 @@ import { Stepper_workflowComponent } from './BuilderComponents/stepperworkflow/S
// buildercomponents
InvoicesComponent,