PDF Template Code
This allows you to make changes or modifications to the PDF content before sending it. You can customize the data, format, or structure as needed to meet specific requirements.
Here is the sample code:
async function customizeERP(userData, apiOperations) {
const tableName = "Sales Orders Table";
if (userData && userData.length > 0) {
const returnData = await Promise.all(userData.map(async(row) => {
// Your Code Starts Here
}));
return returnData;
}
}The Output structure should be this:
{
"count": 1,
"rows": [
{
"id": 1,
"columnName1": "columnValue1",
"columnName2": "columnValue2",
"columnName3": "columnValue3"
}
]
}Last updated on
