Vendor Price and Vendor Price(Entered)

Vendor Price field refers to the value on the Vendor Price Column in a Vendor Record Navigate to Lists > Relationships > Vendors Open a Vendor Record Click Financial Click Items See Vendor Price Column Vendor Price (Entered) field refers to the value on the Item Record Navigate to Lists > Accounting > Items Open an Item Record Click Purchasing/Inventory Click Vendors See Purchase Price column

Filter v/s Backdrop-filter :- CSS

 The main difference between a filter and a backdrop filter is that the filter will affect the element itself, and the backdrop filter will affect the elements beneath the element within the bounding box of the element. A sample difference with Blur() : Filter:blur(2px) backdrop-filter:blur(40px) So, if you want a blur effect on an image,… Continue reading Filter v/s Backdrop-filter :- CSS

Write a stream in node js

Writing to a StreamCreate a js file named main.js with the following code − var fs = require(“fs”);var data = ‘Simply Easy Learning’; // Create a writable streamvar writerStream = fs.createWriteStream(‘output.txt’); // Write the data to stream with encoding to be utf8writerStream.write(data,’UTF8′); // Mark the end of filewriterStream.end(); // Handle stream events –> finish, and… Continue reading Write a stream in node js

How to remove unnecessary div containers present in one page with out affecting in other pages.

The previous and next buttons which were there under the section customers who bought this item also bought will be removed by using script without affecting the buttons in the other pages. The script added in the above screenshot is used to remove those buttons from that page. In the script, we have to give… Continue reading How to remove unnecessary div containers present in one page with out affecting in other pages.

PROPOSAL FOR REDIRECT TO HOMEPAGE WHEN CUSTOMER LOGS

Task no: https://jobinandjismi.atlassian.net/browse/CLTG-153 Proposal Summary  This proposal covers the development redirect to the homepage when a customer logs in website. The page includes,  Login page  Requirement                                      The requirement is to redirect the customers to the home page from SCA website after logging in.  Our Solution  It is a possibility to redirect the customers to… Continue reading PROPOSAL FOR REDIRECT TO HOMEPAGE WHEN CUSTOMER LOGS

Adding a style in themes and making it as variable

In theme development styles are used by calling variables Here is an example of adding a color and making it as variableIn files open BaseSassStyle, go to variables, select colors use $ in beginning to declare variableEx; $sc-color-primary: #e23200; Next open skin1.JSON There declare the variable followed by syntax“$sc-color-primary”: “#e23200”, Now we can use #e23200… Continue reading Adding a style in themes and making it as variable

Extract xls file to Json

For implementing the function, need to implement excel js library function /** * file Extract function * @param {Number} fileId internal ID * @return {Object} returnDate Json Object */ function extractFileToJSON(fileId) { try { let returnData = []; let excelFile = file.load({ id: fileId }); let workbook = XLSX.read(excelFile.getContents(), {type: ‘base64’}); let firstSheetName = workbook.SheetNames[0];… Continue reading Extract xls file to Json

Multiple item names in item search criteria

Function /** * @description Multiple item names can be included in a single search limit is 1000 names per search via suitescript. * @param {Array} itemNameArray Array of item names (1000 item names) * @return {Object} */ function itemSearchforVendorUpdate(itemNameArray) { try { var b = “”; if (itemNameArray.length > 0) { for (var i =… Continue reading Multiple item names in item search criteria