Code to add automatically sliding carousel image using CSS
Month: February 2023
Smoke Testing v/s Sanity Testing
Smoke Testing • Smoke testing is the initial testing process exercised to check whether the software under test is ready/stable for further testing. • The Smoke testing is typically executed by testers after every build is received for checking the build is in testable condition. • These test cases are executed prior to start actual testing to check critical functionalities of the program is working fine. • Smoke testing follows shallow and wide approach where you cover all the basic functionality of the software. • The test cases can be executed manually or automated; this depends upon the project requirements. • Smoke Testing, also known as “Build Verification Testing”. Sanity Testing • Sanity testing to check the after minor fixes the small section of code or functionality is working as expected & not breaking related functionality. • The main aim of Sanity testing to check the planned functionality is working as expected. • Sanity testing follows narrow and… Continue reading Smoke Testing v/s Sanity Testing
Creating a Wave for the Sales order
In order to create a wave for the sales order, First create sales order Create a wave – Go to Transactions > Order Management > Create Wave Select the sales order location and click Search. All the sales orders in the corresponding location will list in the page. Select the created sales order from… Continue reading Creating a Wave for the Sales order
Creating Commission Reports based on Items and Salespersons from Invoice records
Creating Commission Reports based on Items and Salespersons from Invoice records
Is Domain Name A Google Ranking Factor?
One of the best ways to increase traffic to your site is to choose a domain name that is suited to your business. Not only will it allow you to convey your brand values, but it will also help you attract potential customers. It’s no secret that Google likes domain names that have become recognizable… Continue reading Is Domain Name A Google Ranking Factor?
Unable to create the order in NetSuite for the Shopify order
Error: Unable to create the order in NetSuite for the Shopify order #x A mapping error occurred.” ” Could not find a match for “[[“itemid”,”is”,”exemple”], This Error can occur in multiple Scenarios Scenario 1:The item you have in the Order is Exist in Netsuite and you still get this error that mean you need to change the… Continue reading Unable to create the order in NetSuite for the Shopify order
Showing COGS Account of an item record in item search.
Requirement: User wants to fetch the COGS account of all the item records in the item search. Solution: Formula (Text) > Summary Type = Maximum > Formula = case when {transaction.accounttype} = ‘Cost of Goods Sold’ then {transaction.account} else null end Custom Label = COGS Summary Type = COGS This will however only works with… Continue reading Showing COGS Account of an item record in item search.
Creating Bills from uploaded files
Creating Bills from uploaded files
Email attachment types in transactions
Issue – when sending emails from transactions, the attachment sending as HTML doc rather than a PDF Solution: The email preference in the customer record may have been set ‘Default’ value. And in Set preferences(under the Home tab), the Transaction Email attachment format may be set as HTML (Under the transactions tab). Then when sending… Continue reading Email attachment types in transactions
How to add custom fields in the Confirmation page of checkout on elbrus version
When we need to have a custom field in the confirmation page we can use to override confirmationCreateResult the function in LiveOrder.Model.js.The code has been added below We can possibly to extend the view OrderWizardModuleConfirmation of the confirmation page.We can show the field value in confirmation page.