Skip to content

Instantly share code, notes, and snippets.

View aorborc's full-sized avatar

A or B or C Technologies aorborc

View GitHub Profile
@aorborc
aorborc / UploadFiletoZohoDesk.js
Last active November 21, 2022 19:46
Upload a file from Zoho Creator or any Zoho Service to Zoho Desk ticket, via deluge
ticket_attachment_api_url = "https://desk.zoho.com/api/v1/tickets/" + Desk_Ticket_ID + "/attachments";
header_map = Map();
header_map.put("orgId","yourOrgID");
yourFile = invokeurl
[
url :"httpsdownloadURL"
type :GET
];
@aorborc
aorborc / FormatIndianCurrency.ds
Last active February 15, 2024 20:19
Convert Indian currency value to a readable comma separate value in Zoho Creator
string FormatIndianCurrency(float currency_val)
{
number = "";
frac_value = "";
if(currency_val != null)
{
if(currency_val > 0.0)
{
// whole_value = "12345678";
whole_value = currency_val.toString().getPrefix(".");