Item Pricing in Sales Order
Month: July 2022
OTGN Documentation : CA Numeric Integration
Concurrency Testing
Things to be noticed when attaching image to an item
Step 1 : From the website setup record verify the correct naming format of the image . For example, Step 2 : Verify the correct folder, that image is to be uploaded.It will be getting from image folder field in the website setup record. Step 3: To attach an image to an item:Go to Lists >… Continue reading Things to be noticed when attaching image to an item
Formula for get Bill Credit amount where Bill Credit match with any of Bill applied on the current Vendor Payment
CASE WHEN {type}=’Bill’ THEN {amount} WHEN ({type}=’Bill Credit’ and {appliedtotransaction.internalid} in (‘1726′,’1733’)) THEN {appliedtolinkamount} ELSE 0 END
How to use relative URL’s in WordPress
Normally Relative URL’s we use:src(“/path/image.png”) This method is not applicable to WordPress.Use get_template_directory_uri() function in front of relative URL to work as same.src(“<?php echo get_template_directory_uri() ?>/path/image.png”) In some themes in wordpress, this may not work. Add the below code for its functioning: path: wp-includes/theme.php
Create Cash Sale or Invoice from Sales order
JIRA CODE : BGGN-296 Description Before you run the flow, it is important to understand the criteria to calibrate if an invoice or a cash sale for a sales order needs to be generated. When you bill an order in NetSuite, whether an order will be billed as Cash Sale or Invoice is actually determined… Continue reading Create Cash Sale or Invoice from Sales order
Remove out of stock items from cart
The REquirement is to remove out of stock items from cart. We have an option in the frontend API. Adding the code below.
Proposal for Remove Sort By Priority From The Sorting Drop-Down Menu
Proposal Summary This proposal covers the scope of removing ‘sort by priority’ from the sorting drop-down menu of the order form in the Point Australia website. Requirement Requirement is to remove “sort by priority” from the sorting drop-down menu in order form. Our Solution It is possible to remove the ‘sort by priority’ option from… Continue reading Proposal for Remove Sort By Priority From The Sorting Drop-Down Menu
Creating an intelligent Handling fee on site
Requirement Creating an intelligent Handling fee on site Handling fee should be implemented at the item level, based off of vendor, and item cost (not selling price) Example: SKU Cost Value $10 SKU with vendor (vendor name: Coilhose) needs a handling fee of $15 on any order below $100. Person purchases said SKU with units… Continue reading Creating an intelligent Handling fee on site