Archive

Posts Tagged ‘hours worked’

Attendance Spreadsheet

July 10th, 2009 Comments off

REQUEST #1
I need an excel macro with coding that shows me each punch in and punch out for an employee and totals the amount of hours and minutes that the employee has worked for the day.
I’ll try to break the current process I use into separate steps, so that you can more easily follow the logic and create the code.

Timesheet Application

July 8th, 2009 Comments off

Hi,

I have an application done in PHP and Mysql and i want it to me modified.

The applicaitons allows employees to enter the username and passwords to login. Once logged in they can enter their start time and finish time for the day. THis way i can keep record of their hours and how long they worked each day.

Now what i want done is the following:
– Employees login with own username and password
– Once logged in they have the option to add timesheet or view timesheets
– if add time sheet is selected: the will have the enter the following information:
– start time and date, finish time and date
– a drop down list will have the option yes or no for lunch. which means if they pick no, it means they did not have lunch for that day.
– another drop down list will have the option of oevrtime yes or no. if yes is selected a box will appear asking them to enter the start time and finish time of the overtime hours

once all the information is entered a box will shown the number of hours worked in the day as follows:

finish time – start time. If lunch is selected as yes it will be (finish time – start time) – 1 which is 1 hour for lunch

if overtime is selected as yes the number of hours of overtime will be added to the number of hours worked after deducting lunch time.
so after all that the number of hours is displayed.

then they have a button that says add time sheet details.

if the pick the option to view time sheets, it will list all the timesheets entered by the logged in user only and give them the ability to edit it and the save it.

also in view time sheets it will display the timesheets in order from the last created to the first created and displays the sheet number and the employee name and the start time and date and the finishtime and date and the hours worked per each sheet

in the administrator view: admin can see all jobsheets, edit or delete any timesheet. Also the admin can search for each employee between set dates and the ability to manage users: create delete and edit.

Once you have the applicationt that i currently have it will be clear that the chnages i have asked for are not hard and should not take long to do.

Any further explaination can be asked for once the bid is accepted.

Payroll Program Part 1 -3

July 7th, 2009 Comments off

I need it today in parts.

Payroll Program Part 1

Create a non-GUI based Java application that calculates weekly pay for an
employee. The application should display text that requests the user input the name of the employee, the hourrly rate, and the number of hours worked for that week. The application should then print out the name of the employee and the weekly pay amount. In the printout, display the dollar symbol ($) to the left of the weekly pay amount and format the weekly pay amount to display currency.

Payroll Program Part 2

Modify the Payroll Program application so it continues to request employee information until the user enters stop as the employee name. In addition, program the application to check that the hourrly rate and number of hours worked are positive numbers. If either the hourrly rate or the number of hours worked is not a positive value, the application should prompt the user to enter a positive amount.

Payroll Program Part 3

Modify the Payroll Program so that it uses a class to store and retrieve the employee’s name, the hourrly rate, and the number of hours worked. Use a constructor to initialize the employee information, and a method within that class to calculate the weekly pay. Once stop is entered as the employee name, the application should terminate. Make sure the program maintains all the functionality required in previous assignments and your source code is readable and well documented. Use feedback you have received from the instructor to make any needed modifications.

Bear