... was not accurate enough... but here's the snippet:
r_CommentsHistory = Map();
l_Comments = ifnull(r_CommentsHistory.get("comments"),List());
for each m_Comment in l_Comments
{
if(m_Comment.get("description").containsIgnoreCase("Purchase ...
What?
This is a not-so-quick article that queries an eBay order and creates the relevant ZohoInventory item, contact, sales order, package slip, shipment order, invoice, payment records...
Why? ...
... e if(r_ChatGPTResponse.get("responseCode") == 429)
{
// store in response text
v_Answer = "I dont have any knowledge in this. Please ask me something else";
}
}
else if (v_Message.containsIgnoreCase("H ...
What?
This is an article documenting how to parse the notification from eBay and using it to create an order in Shopify.
Why?
Previously, we would receive an eBay notification and create an ...
... " + r_Event.get("eventType");
//
// get the xero ID of the record (hexadecimal)
v_Xero_ResourceID = r_Event.get("resourceId");
//
// do different things based on the category of the update
if(r_Event.get("eventCategory").containsIgnoreCase("CONTACT"))
{
/ ...
... == "Customer_s_Timezone")
{
// loop through all the picklist values of this dropdown
for each r_TimeZone in r_Field.get("pick_list_values")
{
if(r_TimeZone.get("display_value").containsIgnoreCase(v_TimeZone))
{
v_CustomerTimeZon ...
... single out this person (can be removed after testing)
if(v_LastName.containsIgnoreCase("Lipman"))
{
//
// get user id
v_UserID = r_User.get("id");
//
// startofweek is a ...
... = r_AvailableSlots.get("response").get("returnvalue").get("data");
if(!l_AvailableSlots.toString().containsIgnoreCase("Slots Not Available"))
{
for each r_AvailableSlot in l_AvailableSlots
{
if(!r_AvailableSlot.contains("00:00") ...
... from a 7 year old post; but now you can apply a containsIgnoreCase function to search the records:
...
l_ProductDetails = Product[Product_Name.containsIgnoreCase(v_Name)];
...
Lastly, there ...
We use cookies to improve your experience on our website. By browsing this website, you agree to our use of cookies. Read more about our Privacy Policy.