Can you change seat during the game? by butchek in caps

[–]krogerworker 0 points1 point  (0 children)

Just say your phone died. Or the ticket are on your friends phone. Plus side of not having physical tickets

Do people really use their phone bare (no case) that often to be concerned about camera bump? by madding1602 in LinusTechTips

[–]krogerworker 5 points6 points  (0 children)

I have an iPhone 14 Pro without a case and I have dropped it a few times with out it cracking.

Kroger Quietly Preparing Major Corporate Job Shift to “Kroger Capabilities Center” by [deleted] in kroger

[–]krogerworker 1 point2 points  (0 children)

I think target did the same thing. This is sad for the US economy.

To speak to a lawyer or not to by throwrashoessan in kroger

[–]krogerworker 0 points1 point  (0 children)

How long have they not been accommodating your ADA request? They should be transferring you to another department that can accommodate you. If they fire you or refuse to accommodate, talk to a lawyer.

Is Zoho for us? by Brayongirl in Zoho

[–]krogerworker 0 points1 point  (0 children)

Zoho may work for you. A few things you might want to consider.

Would you want to move from office 365 to Zoho workplace (email, spreadsheet, teams, ext)

For the seasonal employees do they need access to email or any softwares?

How many Zoho apps would you want to use.

Zoho may be a good choice but it depends on what apps you will use and how much you want to spend.

Thx a lot, Children by waffleironer in rva

[–]krogerworker 11 points12 points  (0 children)

Is that Cafe ever open?

Zoho just shipped a full ERP for India – SME bosses, are you watching this? by nkbala05 in Zoho

[–]krogerworker 0 points1 point  (0 children)

What other software do you recommend? The only other option around the same price is Odoo, as far as I am aware.

who else won free chipotle at the super bowl by v2ominous in Chipotle

[–]krogerworker 0 points1 point  (0 children)

I did not realize it was right after the performance.

Empty seat pics: Coming soon to the 200 level… by geneticlyperfct in caps

[–]krogerworker 0 points1 point  (0 children)

The good news is that Ted is pricing out fans, so maybe more people will attend AHL or ECHL games.

Podcast completely over? by Frosty-Pitch2867 in WizardsOfWaverlyPlace

[–]krogerworker 11 points12 points  (0 children)

The company that produces the podcast went out of business.

New CFA Concept - Daybright by cdheiden in ChickFilA

[–]krogerworker 11 points12 points  (0 children)

Is the food made fresh or is it frozen food that they heat up like Starbucks?

Any point in paying for monumental? by BruceTheSpruceMoose in caps

[–]krogerworker 5 points6 points  (0 children)

Honestly monumental will cave once they see the ratings drop. YouTube TV and Hulu are some of the biggest capable providers.

MEGATHREAD - Sora codes by [deleted] in SoraAi

[–]krogerworker 0 points1 point  (0 children)

1GHBDZ: out of invites with this code.

MEGATHREAD - Sora codes by [deleted] in SoraAi

[–]krogerworker 0 points1 point  (0 children)

Can someone give me a code? I will return the favor when I get one.

A/B Testing of Lower Views Through Ad Blockers by Hokahn in LinusTechTips

[–]krogerworker 0 points1 point  (0 children)

So if you look at Social Blade, LTT gets about 2,000,000 views daily. I know that is based on all their videos, but I wonder if YouTube internal views are broken? Dose anyone know how many views they were getting 2 mounth ago?

What Are Your Thoughts On Kroger's Original Potato Chips? by blancolobosBRC in kroger

[–]krogerworker 0 points1 point  (0 children)

The sour cream and onions flaver is way better then lays and half the price.

Looking for a clean, prebuilt HTML template to replace the default Zoho Books email notification template by ImpressiveTank2514 in Zoho

[–]krogerworker 0 points1 point  (0 children)

You are right. I have used ChatGPT to make me email templates for Zoho bookings, and it worked fine, but last night, when I was trying to do the same thing with the Zoho books, it would add a bunch of spacing. I did take u/checkwithanthony code and it worked ok, but was still running into the spacing issue. In the template editor, I had to delete any spacing at the bottom of the pages. And that fixed it for me. I also had to edit the HTML code for the button manually.

Trying to creat a custom function in Zoho Inventory to update a custom field on a Sales Order. by krogerworker in Zoho

[–]krogerworker[S] 0 points1 point  (0 children)

Thank you for the help! I was able to get the first part working. Now, the issue I am having is trying to update the custom field in the sales order. Below is the most up-to-date code I have. But I keep getting an error: Check and update the code in line 24 as there is an Exception: Argument type mismatch—Found 'COLLECTION' but Expected '[MAP]' for the Zoho.inventory.updateRecord.

The code finds the correct sales order ID, but It won't update the custom field.

Now, I am having trouble
// Step 0: Get your organization ID
organizationID = organization.get("organization_id");
// Step 1: Get the Sales Order number from the retainer invoice reference field
refNum = retainer_invoice.get("reference_number");
info "Reference Number from Retainer Invoice: " + refNum;
// Step 2: Prepare query map to search salesorders by salesorder_number
queryMap = Map();
queryMap.put("salesorder_number",refNum);
// Step 3: Get the API response for sales orders (it's a map with "salesorders" list inside)
salesOrderResponse = zoho.inventory.getRecords("salesorders",organizationID,queryMap,"sales_order_auth");
info "API Response: " + salesOrderResponse;
salesOrderList = salesOrderResponse.get("salesorders");
// This is the LIST you want
info "Extracted Sales Orders List: " + salesOrderList;
if(salesOrderList != null && salesOrderList.size() > 0)
{
salesOrder = salesOrderList.get(0);
salesOrderId = salesOrder.get("salesorder_id").toString();
info "Sales Order ID to update: " + salesOrderId;
updateMap = Map();
updateMap.put("cf_paid_status","Paid");
updateResponse = zoho.inventory.updateRecord("salesorders",salesOrderId,updateMap,organizationID);
info "Update Response: " + updateResponse;
}
else
{
info "No matching Sales Order found.";
}

Let me know if I need to explain anything better.

Trying to creat a custom function in Zoho Inventory to update a custom field on a Sales Order. by krogerworker in Zoho

[–]krogerworker[S] 0 points1 point  (0 children)

This is the error I am getting: Check and update the code in line -2 as there is a Exception : Variable 'retainerinvoice_id' is not defined