For Zoho services only


I'm currently part of a wider delivery team at Ascent Business Solutions, recognised as a leading Zoho Premium Solutions Partner in the United Kingdom.

Ascent Business Solutions support organisations with everything from targeted technical fixes through to full Zoho CRM implementations and long-term platform adoption. Working as a team rather than a one-person consultancy allows projects to move forward consistently, with access to the right skills at each stage.

The team I manage specialises in API integrations between Zoho and third-party finance and commerce platforms such as Xero, Shopify, WooCommerce, and eBay. Much of our work involves solving integration challenges that fall outside standard documentation, supporting new ideas, new sectors, and evolving business models.

Success is measured through practical outcomes and return on investment, ranging from scaling small operations into high-turnover businesses to delivering rapid gains through online payments, automation, and streamlined digital workflows.

If you are looking for structured Zoho expertise backed by an established consultancy, you can contact Ascent Business Solutions on 0121 392 8140 (UK), email info@ascentbusiness.co.uk, or visit https://www.ascentbusiness.co.uk.
Zoho Deluge: Loop through 30 Minute Slots

Zoho Deluge: Loop through 30 Minute Slots

What?
This code snippet took me a while to do and the documentation is flaky so I thought I'd make a note here just in case I need to refer to it again.

Why?
I want to modify a picklist and fill it with options from a certain time of the day to the closing time of the day (working hours).

How?
The plan is to iterate through a 24-hour clock, enable adding to the picklist when the starting hour is found and stop adding when the closing hour is found. The picklist field is called "Time_Field".

The following reads from a form (creator data table) where thisServiceRecord.Opening_Time is returning an hour value (eg. "08:00") and thisServiceRecord.Closing_Time returns an hour value (eg. "20:00"). This will output a picklist which populates as: 08:00, 08:30, 09:00, 09:30 ... 19:30, 20:00.
copyraw
// get rid of all picklist options
	clear Time_field;
	// begin populating options
	thisStartHour = thisServiceRecord.Opening_Time.toString("HH");
	thisClosingHour = thisServiceRecord.Closing_Time.toString("HH");
	hourString = "00/01/02/03/04/05/06/07/08/09/10/11/12/13/14/15/16/17/18/19/20/21/22/23";
	hourList = hourString.toList("/");
	v_includeInPicklist = false;
	for each index timeSlot in hourList
	{
		timeSlotStr = timeSlot.toString();
		if(timeSlotStr.length()<2)
		{
			timeSlotStr = "0" + timeSlotStr;
		}
		thisStartHourStr = thisStartHour.toString().substring(0,2);
		thisCloseHourStr = thisClosingHour.toString().substring(0,2);
		if(timeSlotStr==thisStartHourStr)
		{
			v_includeInPicklist=true;
		}
		if(timeSlotStr==thisCloseHourStr)
		{
			input.Time_field:ui.add(timeSlotStr + ":00");  // this is the last entry in the picklist
			v_includeInPicklist=false;
		}
		if(v_includeInPicklist)
		{
			input.Time_field:ui.add(timeSlotStr + ":00");
			input.Time_field:ui.add(timeSlotStr + ":30");
		}
	}
  1.  // get rid of all picklist options 
  2.      clear Time_field; 
  3.      // begin populating options 
  4.      thisStartHour = thisServiceRecord.Opening_Time.toString("HH")
  5.      thisClosingHour = thisServiceRecord.Closing_Time.toString("HH")
  6.      hourString = "00/01/02/03/04/05/06/07/08/09/10/11/12/13/14/15/16/17/18/19/20/21/22/23"
  7.      hourList = hourString.toList("/")
  8.      v_includeInPicklist = false
  9.      for each index timeSlot in hourList 
  10.      { 
  11.          timeSlotStr = timeSlot.toString()
  12.          if(timeSlotStr.length()<2) 
  13.          { 
  14.              timeSlotStr = "0" + timeSlotStr; 
  15.          } 
  16.          thisStartHourStr = thisStartHour.toString().substring(0,2)
  17.          thisCloseHourStr = thisClosingHour.toString().substring(0,2)
  18.          if(timeSlotStr==thisStartHourStr) 
  19.          { 
  20.              v_includeInPicklist=true
  21.          } 
  22.          if(timeSlotStr==thisCloseHourStr) 
  23.          { 
  24.              input.Time_field:ui.add(timeSlotStr + ":00");  // this is the last entry in the picklist 
  25.              v_includeInPicklist=false
  26.          } 
  27.          if(v_includeInPicklist) 
  28.          { 
  29.              input.Time_field:ui.add(timeSlotStr + ":00")
  30.              input.Time_field:ui.add(timeSlotStr + ":30")
  31.          } 
  32.      } 

Update 2021
I spent a long time again on this so this is the same as the above but with opening/closing times and a few more time calculations. In other words, show me the next available time slots between an opening and closing time but that isn't in the past (where my radio field link name is Time_field):
copyraw
// 
// declare opening and closing hour
v_OpeningHour = 10; 
v_ClosingHour = 21; 
//
// set all hours of the day
v_Hours = "00/01/02/03/04/05/06/07/08/09/10/11/12/13/14/15/16/17/18/19/20/21/22/23"; 
l_Hours = v_Hours.toList("/"); 
//
// set earliest time slot to display
v_OpeningTime = zoho.currentdate.toString("yyyy-MM-dd ") + v_OpeningHour.leftpad(2).replaceAll(" ", "0") + ":00";
//
// don't want to display times that are before the current time
if(v_OpeningTime.toTime() < zoho.currenttime)
{
	v_OpeningTime = zoho.currenttime.toString("yyyy-MM-dd HH") + ":00";
}
//
// set latest time slot to display
v_ClosingTime = zoho.currentdate.toString("yyyy-MM-dd ") + v_ClosingHour.leftpad(2).replaceAll(" ", "0") + ":00";
//
// clear time slots radio options
clear Time_field; 
//
// comment out this first addition after testing (just for debug to tell us the current server time)
input.Time_field:ui.add("Server Time: " + zoho.currenttime.toString("h:mm a"));
//
// begin populating options 
for each index v_TimeSlot in l_Hours 
{ 
	v_HourStr = v_TimeSlot.leftpad(2).replaceAll(" ", "0");
	v_CheckTime1a = zoho.currentdate.toString("yyyy-MM-dd ") + v_HourStr + ":00";
	v_CheckTime1b = v_CheckTime1a.toTime();
	v_CheckTime2a = zoho.currentdate.toString("yyyy-MM-dd ") + v_HourStr + ":30";
	v_CheckTime2b = v_CheckTime2a.toTime();
	if(v_CheckTime1b > zoho.currenttime && v_CheckTime1b >= v_OpeningTime.toTime() && v_CheckTime1b < v_ClosingTime.toTime()) 
	{ 
		input.Time_field:ui.add(v_CheckTime1b.toString("h:mm") + v_CheckTime1b.toString("a").toLowerCase()); 
	} 
	if(v_CheckTime2b > zoho.currenttime && v_CheckTime2b >= v_OpeningTime.toTime() && v_CheckTime2b < v_ClosingTime.toTime()) 
	{ 
		input.Time_field:ui.add(v_CheckTime2b.toString("h:mm") + v_CheckTime2b.toString("a").toLowerCase()); 
	} 
}
  1.  // 
  2.  // declare opening and closing hour 
  3.  v_OpeningHour = 10
  4.  v_ClosingHour = 21
  5.  // 
  6.  // set all hours of the day 
  7.  v_Hours = "00/01/02/03/04/05/06/07/08/09/10/11/12/13/14/15/16/17/18/19/20/21/22/23"
  8.  l_Hours = v_Hours.toList("/")
  9.  // 
  10.  // set earliest time slot to display 
  11.  v_OpeningTime = zoho.currentdate.toString("yyyy-MM-dd ") + v_OpeningHour.leftpad(2).replaceAll(" ", "0") + ":00"
  12.  // 
  13.  // don't want to display times that are before the current time 
  14.  if(v_OpeningTime.toTime() < zoho.currenttime) 
  15.  { 
  16.      v_OpeningTime = zoho.currenttime.toString("yyyy-MM-dd HH") + ":00"
  17.  } 
  18.  // 
  19.  // set latest time slot to display 
  20.  v_ClosingTime = zoho.currentdate.toString("yyyy-MM-dd ") + v_ClosingHour.leftpad(2).replaceAll(" ", "0") + ":00"
  21.  // 
  22.  // clear time slots radio options 
  23.  clear Time_field; 
  24.  // 
  25.  // comment out this first addition after testing (just for debug to tell us the current server time) 
  26.  input.Time_field:ui.add("Server Time: " + zoho.currenttime.toString("h:mm a"))
  27.  // 
  28.  // begin populating options 
  29.  for each index v_TimeSlot in l_Hours 
  30.  { 
  31.      v_HourStr = v_TimeSlot.leftpad(2).replaceAll(" ", "0")
  32.      v_CheckTime1a = zoho.currentdate.toString("yyyy-MM-dd ") + v_HourStr + ":00"
  33.      v_CheckTime1b = v_CheckTime1a.toTime()
  34.      v_CheckTime2a = zoho.currentdate.toString("yyyy-MM-dd ") + v_HourStr + ":30"
  35.      v_CheckTime2b = v_CheckTime2a.toTime()
  36.      if(v_CheckTime1b > zoho.currenttime && v_CheckTime1b >= v_OpeningTime.toTime() && v_CheckTime1b < v_ClosingTime.toTime()) 
  37.      { 
  38.          input.Time_field:ui.add(v_CheckTime1b.toString("h:mm") + v_CheckTime1b.toString("a").toLowerCase())
  39.      } 
  40.      if(v_CheckTime2b > zoho.currenttime && v_CheckTime2b >= v_OpeningTime.toTime() && v_CheckTime2b < v_ClosingTime.toTime()) 
  41.      { 
  42.          input.Time_field:ui.add(v_CheckTime2b.toString("h:mm") + v_CheckTime2b.toString("a").toLowerCase())
  43.      } 
  44.  } 
Yields the following:
Zoho Deluge: List 30 Minute Slots between Opening and Closing Hours
Category: Zoho Deluge :: Article: 228

Accreditation

Badge - Zoho Creator Certified Developer Associate
Badge - Zoho Deluge Certified Developer
Badge - Certified Zoho CRM Developer

Donate & Support

If you like my content, and would like to support this sharing site, feel free to donate using a method below:

Paypal:
Donate to Joel Lipman via PayPal

Bitcoin:
Donate to Joel Lipman with Bitcoin bc1qf6elrdxc968h0k673l2djc9wrpazhqtxw8qqp4

Ethereum:
Donate to Joel Lipman with Ethereum 0xb038962F3809b425D661EF5D22294Cf45E02FebF

Credit where Credit is Due:


Feel free to copy, redistribute and share this information. All that we ask is that you attribute credit and possibly even a link back to this website as it really helps in our search engine rankings.

Disclaimer: Please note that the information provided on this website is intended for informational purposes only and does not represent a warranty. The opinions expressed are those of the author only. We recommend testing any solutions in a development environment before implementing them in production. The articles are based on our good faith efforts and were current at the time of writing, reflecting our practical experience in a commercial setting.

Thank you for visiting and, as always, we hope this website was of some use to you!

Kind Regards,

Joel Lipman
www.joellipman.com