PROPOSAL FOR VTIGER -NETSUITE INTEGRATION VIA CELIGO

The requirement is to create a quote and opportunity in the NetSuite based on the data fromthe opportunity and quote in the VTiger system. Client will create a sub customer in theOpportunity record of VTiger then we need to create the opportunity for sub customer in theNetSuite.We also need to create quote in the NetSuite.… Continue reading PROPOSAL FOR VTIGER -NETSUITE INTEGRATION VIA CELIGO

4 JavaScript Features in ES2023 That You Should Know

1. Array.findLast() and Array.findLastIndex() First up is the “Array find from last” feature, proposed by Wenlu Wang. It introduces two new methods for Array and TypedArray objects: findLast() and findLastIndex(). These methods function similarly to their existing counterparts (find() and findIndex()), but, as the names suggest, they start searching from the end of the array rather than the beginning. This… Continue reading 4 JavaScript Features in ES2023 That You Should Know

8 JavaScript Features in ES2019 That You Should Know

1. Array.prototype.{flat,flatMap} Array.prototype.flat() proposed to flatten arrays recursively up to the specified depth and returns a new array. Syntax: Array.prototype.flat(depth)depth — Default value 1, Use Infinity to flatten all nested arrays. Array.prototype.flatMap() maps each element using a mapping function and flattens the result into a new array. It’s identical to the map operation followed by a flat of depth 1. Syntax: Array.prototype.flatMap(callback)callback: function that produces an element of the new Array.… Continue reading 8 JavaScript Features in ES2019 That You Should Know

7 New JavaScript Features in ES2022 That You Should Know

1. RegExp match indices By using regular expressions, we can search for patterns in strings. Regexp.exec and String.matchAll are two methods used in JavaScript to retrieve a list of matches. Both return the matched substrings; the initial input string; the index in the input where the match was found; and the group’s object, consisting of substrings for any named… Continue reading 7 New JavaScript Features in ES2022 That You Should Know

Inbound shipment management

This section shows you how to work with the inbound shipment record, and covers the following tasks: Updating an Inbound Shipment Receiving Items on an Inbound Shipment Transferring Ownership of an Inbound Shipment Billing an Inbound Shipment Closing an Inbound Shipment To create an inbound shipment record: Go to Transactions > Purchases > Create Inbound… Continue reading Inbound shipment management

10 New JavaScript Features in ES2020 That You Should Know

#1: BigInt BigInt, one of the most anticipated features in JavaScript, is finally here. It actually allows developers to have much greater integer representation in their JS code for data processing for data handling. At the moment the maximum number you can store as an integer in JavaScript is pow(2, 53) – 1 . But BigInt actually… Continue reading 10 New JavaScript Features in ES2020 That You Should Know

A compare function should be provided when using “Array.prototype.sort()”

The default sort order is alphabetic, rather than numeric, regardless of the types in the array. Specifically, even if an array contains only numbers, all values in it will be converted to strings and sorted lexicographically, for an order like this: 1, 15, 2, 20, 5. Even to sort strings, the default sort order may… Continue reading A compare function should be provided when using “Array.prototype.sort()”

Manage Intercompany Orders

The Manage Intercompany Sales Order page shows intercompany purchase orders that have an intercompany transaction status of Pending or Rejected. Intercompany orders can have the following statuses: Pending: indicates that the intercompany order has not been paired with a corresponding order in another subsidiary. Order pairs are Sales Order/Purchase Order and Vendor Return Authorization/Return Authorization.Note Intercompany orders… Continue reading Manage Intercompany Orders