What?
A quick note for when I want to quickly generate maps of a currency or a tax from a client's Zoho Books.
Why?
The use-case here is that we are creating a Sales Order in Zoho Books from Zoho ...
... amount/total is a currency column we want aligned on the right
l_HeaderColumns.add();
l_HeaderColumns.add();
//
// build up related list rows
l_RelatedListData = List();
for each m_DataRow in l_DataRows
{
// ...
... value
ZDK.Page.getField("Weight_kg").setValue(v_ProductWeightFormatted);
// now for currency fields
var v_ProductPrice = ZDK.Page.getField('Unit_Price').getValue();
var v_ProductPriceFormatted ...
... integer, currency, decimal and double.
You can search for a maximum of 10 criteria (with same or different columns) with equals and starts_with conditions.
The only operator that is supported for encrypted ...
...
];
for each m_Currency in r_Currencies.get("currencies")
{
m_Currencies.put(m_Currency.get("currency_code"),m_Currency.get("currency_id"));
}
info m_Currencies;
//
// ---------------------------------
/ ...
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 ...
...
console.log("Joel Lipman - 20221018 -------------------------");
// get some values from the current record
var v_CurrencyCode = ZDK.Page.getField('Currency').getValue();
var v_ConsultantLocation ...
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?
This is an article to document a function used in Zoho Creator to retrieve the Product IDs of all the active products in a client's eBay store.
Why?
The use-case was that I wanted to retrieve ...
... the following request to create a Sales Order in Zoho Books would be enough:
{
"date": "2021-09-08",
"zcrm_potential_id": "123456789012345678",
"currency_code": "GBP",
"reference_number": "Salespersons ...
... that are to be entered in their specific order. Search for "Alt Codes" or "Symbol Codes" in a search engine for a full list. Meanwhile, here's some that you may need frequently:
Currency
¢ Cent ...
... and sent in JSON would look something like the following request:
{
"Subject": "My Test Quote",
"Product_Details": [
{
"product": {
"Product_Code": "TEST1",
"Currency": ...
What?
A quick article on how to create a middleware script which accepts the values from a submitted HTML form and sends it to a server on another domain for processing. This applies to Linux Apache ...
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.