Export Excel file in Orangehrm - orangehrm

I have using open source of orangehrm ver 3.2.2 on my Server. I want add function export data (list leave, list emp, report..) to Excel file. But I don't how to do it.

For export data in excel file, you need following steps :
Put a button for generate excel file. On click button send ajax request which
is get data as per requirements.
after get data on server side use phpexcel library for generate excele file.
for generate excel file follow this example : http://www.blrf.net/blog/46/code/php/writing-excel-files-with-phpexcel/
save file in folder.
in responce, you need to send file path for download.
And on successfully received data, download file from responce.

Related

how do I use my local drive folder as data source in datagrip?

Using Datagrip,
I wanna write sql code and take some aggregated data from my csv file saved in my local drive.
How do I point my folder as datasource in datagrip and import csv to there to run sql code?
I have csv files in my local drive but don't know how to set my folder as data source and import my csv files as tables to be used.
You can right click on the schema and click on import data from file like below. You will see a window pop up where you specify separators, headers, etc along with a preview.

Excel on Mac. Cannot open IQY file in Data/Get External Data/Run Web Query

I am running Excel version 16.45 on Mac.
I have created a .iqy and saved it in the Queries directory alongside certain templates which were already there.
I go to Data/Get External Data/Run Web Queries. While the templates are accessible, my file is visible but greyed out (same thing happens if I save the file in a different directory).
Would anyone be able to help?
According to your information, I would like to confirm whether the issue occurs when you follow the steps as below:
1.Create a Word file, paste the web URL.
2.Save the Word as .iqy with .txt format.
3.Choose MS-DOS as coding.
4.Create an Excel file and click "Data >Get External Data >Run Web Query (Or Run Saved Query) " of the Bar
I was able to address the issue as follows.
When navigating to the relevant directory with Finder, the '.iqy' file appears to be appropriately named (as per Image 1).
In fact, if you reach the file in Terminal, the file is saved as '.iqy.txt'.
So all I had to do is rename the file, simply removing the '.txt' string at the end.
Screen you see when navigating in Finder

How can I upload a whole folder of PDF files, So that I can skim through each file without having to upload each one of them individually

I have a folder of PDF files, what I want to do is build a small app with directional arrows that when pressed should upload the next PDF file from the uploaded/Selected folder.
I have tried uploading single PDF and I was able to view it, but I'm unable to find any good resource on how to upload a whole directory inside the application for me to not upload each PDF every single time.
I should be able to change my current opened PDF to the next one inside the folder.
The way to do this in Vue is as follows:
Make a input field and attach the event "v-on:input" with the function that will be called when the input is selected.
Don't forget to add "webkitdirectory mozdirectory" for firefox and chrome browsers.
Inside the function fetch the input query via "document.querySelectorAll('input');". The information of files will be inside files object.

sql Developer pkg AND trg FILES

taking a SQL class and using sql developer. How do I create a file with extensions .pkg and .trg. I know they are for package and triggers. When I opened my connection and right clicked package I opened a package but it did not create an actual file that I would be able to submit?
Any ideas?
There are various options for saving your code to a file:
Right click on the object in the connections tree and choose Quick DDL -> Save to File. This will save the file with a .sql extension which you can later change as desired from the file system.
Open the object from the connections tree, then choose File -> Save As. This method defaults to saving files with a .pls extension, but you can override that when saving or change it later from the file system.
Drag the objects from the Connections tree to the shopping Cart (View->Cart) then Click the Export Cart button (DB icon with a green arrow) and choose the Save As Separate Files option. The files will be saved with .sql extensions, and for table objects it can optionally export the data as well.

Sending PDF file back to client

I have made a wizard with a button. On buttons action the function generates a PDF file on the server. How can I send back this file from server disk to the client ?
If it's not a report, write the PDF file in a binary field.
See the export language wizard for example