home *** CD-ROM | disk | FTP | other *** search
/ Shareware 1 2 the Maxx / sw_1.zip / sw_1 / BUSI / PAYCHECK.ZIP / PAYROLL.DOC < prev    next >
Text File  |  1992-02-08  |  1KB  |  33 lines

  1. The Payroll program is designed to calculate the weekly payroll of the
  2. employees it has the option to check if the employee receives overtime
  3. or not it also calculate the overtime pay for the ones that receives.
  4.  
  5. The Payroll program requires a database called "PAYROLL.DAT" which will
  6. have the employees' name and the numbers of hour worked on the week, also
  7. the wage and the overtime pay autorization.  Here is an example of how
  8. the database will looks like
  9.  
  10. JOHN DOE
  11.    10.0  5.9  0.9  0.8  0.8  0.0  1.0        4.00      1
  12. THOMAS BROWN
  13.     7.0  6.0  7.0  8.0  8.0  9.0 10.0        3.00      0
  14. ELLEN STANDFILED
  15.     8.0  7.0  8.0  8.0  6.0  9.0  8.0        3.50      1
  16. SANDRA TOPSMAN
  17. ^  11.0 10.5  0.0  5.0  1.0 12.0  2.5        6.00      0 <-- Authorization
  18. | !- - - - - - - - - - - - - - - - - -!        ^          to recive overtime
  19. |  Mon   Tue  Wed  Thu  Fri  Sat  Sun          |          pay (0=NO, 1=YES)
  20. |            ^                                 |
  21. |            |                                 |_ _ Wage of the employee.
  22. |            |_ _ Hours worked during the week.
  23. |
  24. |_ _ Name of the employee.
  25.  
  26. This program will also genarate an payroll output on a file and on the
  27. screen it will look like this
  28.  
  29. JOHN DOE        $77.60
  30. THOMAS BROWN    $165.00
  31. ELLEN STANDFIE  $213.50
  32.  
  33. The output file will be "PAYROLL.OUT".