New Screen Design

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

Project: Profitability

New screen details:


Invoice Details:
To select client name, from date, to date from the dropdown list. And then enter the Conversion
rate to given textbox and click GO button. You can get Grid. The grid contains Employee name,
Project/Service, Billable Hours, Hour Rate in Rs., and Amount between the from date and to date of
particular client. The total billable hours and total amount also displayed. The Invoice number and
Invoice date also displayed at the time of open the screen. The Invoice number is automatically
generated. The Invoice date is on the system current date.

After that click on save button the Invoice is generated and saved.

Screen design:
Invoice details

Client Name Select Client Name From Date Select Date To Date Select date

Invoice no. 0000 Invoice date: 01-April-2012 $ Conversion Rate: Go

Employee Name Project/Service Billable Hours Hour Rate Amount

Total: 00 Rs. 00.00

Save

Database Changes:
Existing Table Name: EmployeeProjectHours

Add new columns:

Column Name Details


Billable Rate Money
InvoiceNo Int
Existing Table Name: EmployeeServiceHours

Add new columns:

Column Name Details


Billable Rate Money
InvoiceNo Int

New Table Name: InvoiceMaster

Column Name Details


Id Int, identity(1,1) not null
InvoiceNo Int not null, Primary
InvoiceDate DateTime
ConversionRate Money

New Table Name: InvoiceDetails

Column Name Details


Id Int, identity(1,1) not null
InvoiceNo Int not null,Reference to InvoiceMaster(InvoiceNo)
FromDate DateTime
ToDate DateTime
ClientId Int not null
EmployeeId Int not null
ProjectId/ServiceId Int not null

You might also like