I am lost, I am creating a three page app that calculates fields based on the selected rate type, The rate type, each selection determines what fields will be in the calculation and how, The total pay is then calculated from the pay rate the user enters in the settings page, The third page the user can see how much his check will be, each line will have a paid checkbox line color will be Yellow = Pay Date not reached, Red = Past pay date Green = Paid
That's the short version the longer version is;
Main Page
Trip Number ( Text)
Pay Date ( Date) popup date selector
Rate ( Number)
Miles ( Number)
Weight ( Number)
Advances ( Number)
Reimbursements ( Number)
Rate Type, Dropdown menu, FLT; MIL; CWT; Ton;
FLT = (ratepay rate)+(Reimbursements)-(Deductions); ;
MIL = (ratemiles)pay rate)+(Reimbursements)-(Deductions); ;
CWT = (Weight / 100) Rate)* pay rate)+(Reimbursements)-(Deductions);
and Ton = ( Weight / 2000)* Rate)* (Pay Rate)+(Reimbursements)-(Deductions);
The Settings Page Lets the user enter
Pay Rate
Export To
Import From
Then the list page sorts the record by paydate with color coded lines and a paid checkbox or button for each line. along with a share file button on the bottom
All records are saved on device.
I can do everything but the Java, I am working on learning Java but I am way over my head.