Okay so I have four tables.
tblCustomer
tblFeeStructure
tblProjectDetails
tblProjectHours
Each customer has a different fee structure, for example:
fkCustID | Underwriting | Documentation | Records
.....1.............$150............... $250............ $52
I'm trying to tie it all together so I can generate an invoice, so for example in the ProjectHours table there may be entries like this:
ID | fkProjID | Employee | Type of Work | Billable Hours | Description
.1........ 1 ........... Me........Underwriting............5............Spreading
Herein lies my problem I don't know how to get the fee structure associated with the customer to carry through to the worklog (tblProjectHours). Any ideas?