For Zoho Services only:


I'm actually part of something bigger at Ascent Business Solutions recognized as the top Zoho Premium Solutions Partner in the United Kingdom.

Ascent Business Solutions offer support for smaller technical fixes and projects for larger developments, such as migrating to a ZohoCRM.  A team rather than a one-man-band is always available to ensure seamless progress and address any concerns. You'll find our competitive support rates with flexible, no-expiration bundles at http://ascentbusiness.co.uk/zoho-support-2.  For larger projects, check our bespoke pricing structure and receive dedicated support from our hands-on project consultants and developers at http://ascentbusiness.co.uk/crm-solutions/zoho-crm-packages-prices.

The team I manage specializes in coding API integrations between Zoho and third-party finance/commerce suites such as Xero, Shopify, WooCommerce, and eBay; to name but a few.  Our passion lies in creating innovative solutions where others have fallen short as well as working with new businesses, new sectors, and new ideas.  Our success is measured by the growth and ROI we deliver for clients, such as transforming a garden shed hobby into a 250k monthly turnover operation or generating a +60% return in just three days after launch through online payments and a streamlined e-commerce solution, replacing a paper-based system.

If you're looking for a partner who can help you drive growth and success, we'd love to work with you.  You can reach out to us on 0121 392 8140 (UK) or info@ascentbusiness.co.uk.  You can also visit our website at http://ascentbusiness.co.uk.

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 :: Article: 660

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

Related Articles

Joes Revolver Map

Accreditation

Badge - Certified Zoho Creator Associate
Badge - Certified Zoho Creator Associate

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
© 2024 Joel Lipman .com. All Rights Reserved.