Appointment Time & date comes in same column
Showing
1 changed file
with
3 additions
and
1 deletions
| ... | @@ -137,6 +137,7 @@ if(Input::has("dllogxls")) | ... | @@ -137,6 +137,7 @@ if(Input::has("dllogxls")) |
| 137 | $fieldsarr[$tcol++]='BranchName'; | 137 | $fieldsarr[$tcol++]='BranchName'; |
| 138 | $fieldsarr[$tcol++]='RiskCommDate'; | 138 | $fieldsarr[$tcol++]='RiskCommDate'; |
| 139 | $fieldsarr[$tcol++]='AppointmentDate'; | 139 | $fieldsarr[$tcol++]='AppointmentDate'; |
| 140 | $fieldsarr[$tcol++]='AppointmentTime'; | ||
| 140 | $fieldsarr[$tcol++]='CallBackDate'; | 141 | $fieldsarr[$tcol++]='CallBackDate'; |
| 141 | $fieldsarr[$tcol++]='AppointmentAddress'; | 142 | $fieldsarr[$tcol++]='AppointmentAddress'; |
| 142 | /* <!-- Change for customization of reports -->*/ | 143 | /* <!-- Change for customization of reports -->*/ |
| ... | @@ -264,7 +265,8 @@ if(Input::has("dllogxls")) | ... | @@ -264,7 +265,8 @@ if(Input::has("dllogxls")) |
| 264 | $objPHPExcel->getActiveSheet()->getCellByColumnAndRow($col++,$row)->setValueExplicit($risk_comm_date); | 265 | $objPHPExcel->getActiveSheet()->getCellByColumnAndRow($col++,$row)->setValueExplicit($risk_comm_date); |
| 265 | 266 | ||
| 266 | 267 | ||
| 267 | $objPHPExcel->getActiveSheet()->getCellByColumnAndRow($col++,$row)->setValueExplicit($aline->appt_date." ".$aline->appt_time); | 268 | $objPHPExcel->getActiveSheet()->getCellByColumnAndRow($col++,$row)->setValueExplicit($aline->appt_date); |
| 269 | $objPHPExcel->getActiveSheet()->getCellByColumnAndRow($col++,$row)->setValueExplicit($aline->appt_time); | ||
| 268 | $objPHPExcel->getActiveSheet()->getCellByColumnAndRow($col++,$row)->setValueExplicit($aline->usercallback); | 270 | $objPHPExcel->getActiveSheet()->getCellByColumnAndRow($col++,$row)->setValueExplicit($aline->usercallback); |
| 269 | $objPHPExcel->getActiveSheet()->getCellByColumnAndRow($col++,$row)->setValueExplicit($aline->appointment_addr); | 271 | $objPHPExcel->getActiveSheet()->getCellByColumnAndRow($col++,$row)->setValueExplicit($aline->appointment_addr); |
| 270 | 272 | ... | ... |
-
Please register or sign in to post a comment