Home
last modified time | relevance | path

Searched refs:empUsTaxExemption (Results 1 – 6 of 6) sorted by relevance

/dports/www/orangehrm/orangehrm-4.9/symfony/plugins/orangehrmPimPlugin/lib/form/
H A DEmployeeUsTaxExemptionsForm.php110 if($empUsTaxExemption == null){
111 $empUsTaxExemption = new EmpUsTaxExemption();
112 $empUsTaxExemption->empNumber = $this->getValue('empNumber');
115 $empUsTaxExemption->federalStatus = $this->getValue('federalStatus');
116 $empUsTaxExemption->federalExemptions = $this->getValue('federalExemptions');
117 $empUsTaxExemption->state = $this->getValue('state');
118 $empUsTaxExemption->stateStatus= $this->getValue('stateStatus');
119 $empUsTaxExemption->stateExemptions = $this->getValue('stateExemptions');
120 $empUsTaxExemption->unemploymentState = $this->getValue('unempState');
121 $empUsTaxExemption->workState = $this->getValue('workState');
[all …]
/dports/www/orangehrm/orangehrm-4.9/symfony/plugins/orangehrmPimPlugin/modules/pim/actions/
H A DviewUsTaxExemptionsAction.class.php72 $empUsTaxExemption = $this->form->getEmpUsTaxExemption();
73 … $this->getEmployeeService()->saveEmployeeTaxExemptions($empUsTaxExemption, false);
75 … $this->redirect('pim/viewUsTaxExemptions?empNumber='. $empUsTaxExemption->getEmpNumber());
/dports/www/orangehrm/orangehrm-4.9/symfony/plugins/orangehrmPimPlugin/lib/service/
H A DEmployeeService.php1146 * @param EmpUsTaxExemption $empUsTaxExemption
1152 public function saveEmployeeTaxExemptions(EmpUsTaxExemption $empUsTaxExemption) { argument
1153 return $this->getEmployeeDao()->saveEmployeeTaxExemptions($empUsTaxExemption);
/dports/www/orangehrm/orangehrm-4.9/symfony/plugins/orangehrmPimPlugin/test/model/dao/
H A DEmployeeDaoTest.php126 $empUsTaxExemption = new EmpUsTaxExemption();
127 $empUsTaxExemption->setEmpNumber(2);
128 $empUsTaxExemption->stateExemptions = 4;
130 $result = $this->employeeDao->saveEmployeeTaxExemptions($empUsTaxExemption);
132 $this->assertTrue($result === $empUsTaxExemption);
/dports/www/orangehrm/orangehrm-4.9/symfony/plugins/orangehrmPimPlugin/test/model/service/
H A DEmployeeServiceTest.php1145 $empUsTaxExemption = new EmpUsTaxExemption();
1146 $empUsTaxExemption->setEmpNumber(3);
1152 ->will($this->returnValue($empUsTaxExemption));
1155 $result = $this->employeeService->saveEmployeeTaxExemptions($empUsTaxExemption);
1157 $this->assertTrue($result === $empUsTaxExemption);
/dports/www/orangehrm/orangehrm-4.9/symfony/plugins/orangehrmPimPlugin/lib/dao/
H A DEmployeeDao.php1452 * @param EmpUsTaxExemption $empUsTaxExemption
1456 public function saveEmployeeTaxExemptions(EmpUsTaxExemption $empUsTaxExemption) { argument
1460 $empUsTaxExemption->save();
1462 return $empUsTaxExemption;