What?
A quick article on how to get the pricebook entry using Zoho Deluge for a specific product in your ZohoBooks or ZohoInventory instance.
Why?
This took me the best part of an hour to determine ...
This happened to a m8s website in VirtueMart 1.1.3. The issue here was that although all the prices lost their float/decimal and were rounded up to the nearest integer... At first we thought this was ...
... apply changes to any of the line items
l_NewLineItems = List();
if(!isNull(m_RecordData.get("id")))
{
for each m_LineItem in m_RecordData.get("Quoted_Items")
{
m_NewLineItem = Map();
m_NewLineItem.put("id",m_LineItem.get("id"));
m_NewLineItem.put("Description",m_LineItem.get("Description"));
m_NewLineItem.put("Discount",m_LineItem.get("Discount"));
m_NewLineItem.put("CUSTOM_FIELD_1",m_LineItem.get("CUSTOM_FIELD_1"));
m_NewLineItem.put("CUSTOM_FIELD_2",m_LineItem.get("CUSTOM_FIELD_2"));
m_NewLineItem.put("Product_Name",m_LineItem.get("Product_Name"));
m_NewLineItem.put("Quantity",m_LineItem.get("Quantity"));
m_NewLineItem.put("List_Price",m_LineItem.get("List_Price"));
l_NewLineItems.add(m_NewLineItem);
}
}
}
//
// ...
... em Price (BCY)" AS "PO Item Price",
poi."Graded Score" AS "PO Item Grade",
poi."Quantity" AS "PO Item Qty",
poi."Quantity Billed" AS "PO Item Qty Billed",
poi."Quantity Received" AS "PO Item Qty Rcved",
...
... record, they will get a validation error on the decimal field even if that's not the field that is being changed: Decimal places for the Unit Price field should be less than or equal to 6.
How? ...
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? ...
... in a JSON or ZohoDeluge Map format
m_Response = Map();
l_JsonProducts = List();
//
// start preparing CSV file to email for export
v_ReportCSV = "ItemID,ItemName,Price,CurrencyCode,QuantityAvailable,SKU,DateCreated";
l_CsvFileRows ...
... above within the same function to return a map. Note that this is for fixedpriceitems only. For auction ones, you would need to adjust the parsing code below to capture auction details. This includes ...
... and Zoho is the data to be overwritten, ensuring that Product IDs, Variant IDs, Inventory IDs, Current Selling Price, Inventory Level, and Barcode all match.
Our problem is that sometimes more than ...
... ID" AS "PO Product ID",
poi."Item ID" AS "PO Item ID",
poi."Item Name" AS "PO Item Name",
poi."Item Price (BCY)" AS "PO Item Price",
poi."FCY Tax Amount" / if(poi."Quantity" = 0, 1, poi."Quantity ...
... all monitors are now connected to my home PC. The way to do this might be different for you depending on the components of your PC. So here's a list of what I used:
TypeComponentQuantityPrice (GBP)
Reused ...
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 ...
What?
An article to save time where a customer wants to click a button to generate a merged document in Writer and attach it to the CRM record.
Why?
Our use-case is that we have a client who has ...
... a list of all the listed active products in a fixed price item listing. The example below is a function which, if given the page number and the number of entries per page, returns these in JSON as a Zoho ...
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.