Skip to main content
All CollectionsApp Activities
27 May 2024 App Release Update
27 May 2024 App Release Update
Gigi Nguyen avatar
Written by Gigi Nguyen
Updated over 2 weeks ago

EMERGE Cart (eCart) enhancement: Show the discount price together with the selling price

  • The discount percentage and its final price in the same line as the original selling price will show off price disparity.

  • Attract your customers who have been already assigned to a Price List.

  • This setting is set to OFF by default, so you need to set it to display the discount price along with the selling price in Ecart

    How to Use the

    ul

    Element in HTML

    The

    ul

    element is a fundamental part of HTML and is used to create unordered lists. Unordered lists are lists that do not have a specific order or sequence. They are commonly used to display a list of items that do not have a hierarchical relationship, such as a list of ingredients or a list of bullet points.

    Creating an Unordered List

    To create an unordered list, you will need to use the

    ul

    element. This element is a block-level element, which means it will take up the entire width of its parent element. The

    ul

    element must contain one or more

    li

    elements, which represent the individual items in the list.

    Here is an example of how to create a basic unordered list:

    <ul> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ul> 

    This will result in the following list:

    Adding Attributes to the

    ul

    Element

    The

    ul

    element can also have attributes that can modify its behavior or appearance. Some common attributes include:

    type
    start
    class
    id
    ul

    Here is an example of how to use these attributes:

    <ul type="square" start="3" class="my-list" id="list-1"> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ul> 

    This will result in the following list:

    Nesting Lists

    You can also nest

    ul

    elements within each other to create a hierarchical list. This is useful when you have a list of items that have sub-items. To nest a list, simply add another

    ul

    element inside an

    li

    element.

    Here is an example of a nested list:

    <ul> <li>Item 1</li> <li>Item 2 <ul> <li>Sub-item 1</li> <li>Sub-item 2</li> <li>Sub-item 3</li> </ul> </li> <li>Item 3</li> </ul> 

    This will result in the following list:

    Conclusion

    The

    ul

    element is a simple but powerful tool for creating unordered lists in HTML. By understanding how to use this element and its attributes, you can easily create well-organized and visually appealing lists for your website or web application.

New Feature: Activity History Event

You now can track activity history events in EMERGE to see what has been made over time by your employees. Sometimes it is helpful to know who was the one who intentionally deleted some important information, right?

Raw Material: Support Multiple UOM in Production

  • With multiple UOMs for raw materials used in the product, you can change the UOM of raw materials in the production order to fit the production demand.

  • This new update is essential for businesses that frequently change production volumes or have complex recipes/formulas.
    ​

Shipment Exports to Excel file: Additional information

In the Mass Actions drop-down list in the shipment module, you can export the shipment to an Excel file with more necessary information like:

  • SKU

  • Total weight

  • Total value

PDF improvement

  1. Purchase Order PDF details:

2. Purchase Order PDF details: hide the UOM column in the PO.

3. Credit note PDF: showing the related allocated invoice number

Did this answer your question?