What?
A very quick article on how to deal with an issue where a CRM template has been used and where the table of line items appears on a separate page (and to remind me of the CSS to fix this).
Why? ...
What?
This is a quick article documenting how to update custom fields in a line items or product details section of a transactional module such as Quotes, Sales Orders or Invoices using code: Zoho Deluge. ...
What?
So many people asking this when the solution is a bit of aesthetic styling.
ol
-- yields
995.
996.
997.
998.
999.
000. 1000
Ordered list resets to zero after the ninth item ...
Basically you've woken up this morning, visited your website, and all your K2 articles are gone !!!!
If you login to your Joomla! administration panel (back-end) and look under k2 items, you should ...
... the line items from a package slip taken from Zoho Inventory. I'd prefer if it was included in the list view or a Zoho Creator report.
How?
We would think it similar to a picklist/dropdown where ...
... set the data type
r_DownloadedPhoto.setParamName("image");
//
// build up request to Zoho
m_Params = Map();
m_Params.put("image",r_DownloadedPhoto);
//
// generate endpoint
v_Url = "https://books.zoho.eu/api/v3/items/" ...
... the scope(s) ZohoInventory.items.READ (add some more if you're unsure...)
Give it a connection name and note down the connection link name. I'm calling mine joel_zoho
Authorize it, etc.
Make a ...
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 ...
... e = "My Test Document";
r_DownloadResponse.setFileName(v_Filename + ".pdf");
r_AttachResponse = zoho.crm.attachFile("Quotes",p_QuoteID,r_DownloadResponse);
Use a subform (eg. Product Line Items) ...
... // deprecated // use inventory_levels
m_Variant.put("inventory_policy","deny");
m_Variant.put("inventory_management","shopify");
m_Variant.put("inventoryItem",); // not working // use inventory_items
l_Variants.add(m_Variant);
m_Product.put("variants",l_Variants);
//
/ ...
... line item
l_LineItems = List();
r_SoDetails = zoho.crm.getRecordById("Sales_Orders",0123456789012345678);
for each r_LineItem in r_SoDetails.get("Product_Details")
{
m_LineItem = Map();
if(r_LineItem.get("Tax") ...
... and select both tax rates
Now go to a transactional module that has line items and use the product
When you click on the edit icon in the line item "Tax" you will see both options available to be ...
... a quote record and include a subform containing the line items. You may have tried code where you add a record first and then add the subform afterwards (insert into [...]) but it can be done all in one ...
... all the selected (ticked) records. The example below documents a report of Quotes where we want to merge all the product line items of each quote into one single quote.
Why?
I've written this ...
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.