Category as Ecommerce: Magento Coding Standard

Literal Namespace Rule  For class name resolution, use the Class keyword instead of a string literal for every class name reference outside of that class. This includes references to:  Fully qualified class name  Imported/non-imported class name  Namespace relative class name  Import relative class name  example:  Addition Formatting StandardĀ  When you declare an anonymous function as… Continue reading Category as Ecommerce: Magento Coding Standard

Disable Update of Item Sublist in Transaction records

Scenario: Disable item sub list update option like add, edit, remove items from item sublist in Estimate,sales order and in other transaction records. Client script is used for this scenario. Code snippet:// Declare a variable as global var sublistEditFlag =false; // On sublistChanged function,if sublist is item,then global variable is set to true. Sublistchanged function… Continue reading Disable Update of Item Sublist in Transaction records

How to make Items Available In the Order Items Page

In order to show up the items on the order item page we need to set the re-order point and stock levels in the item record. Order Items Page, The Order Items form provides a list of items that need to be ordered from vendors. NetSuite suggests the quantity to order based on your preferred… Continue reading How to make Items Available In the Order Items Page

Proposal for Automatic Purchase Order Creation based on Sales Order Data

Jira Code : MAMS-101 Proposal summary This proposal describes the Automatic Purchase order creation based on Sales of items and report ofthe sales data. Requirement The client would like to view the sales and stock details of items for a particular time period on acustom page. And based on the sales of items, need to… Continue reading Proposal for Automatic Purchase Order Creation based on Sales Order Data

Number Formating in PDF Template

Solution For example, if currently the ${item.rate} is shown as 8.6354, we can use number formatting to format the digits display after the decimal. ${item.rate?string(“##0.0”)} This helps to format the digits. After formatting it will be displayed as 8.6