Public Backlog

WebinOne announcements, releases, updates and achievements

v 5.1 Release date: 18 Mar, 2020

Full Release Notes

Beta

Email Domain Verification

Email Domain Verification released from beta flag into production

Backlog

eWay Payment Gateway:
Update Payment Gateway Settings Page in the admin

1) Add ability to select eWAY as a payment gateway in Settings > Payment > Gateway tab.

If eWAY selected - show fields that are required for eWAY. If stripe selected - show stripe fields. http://prntscr.com/r5p0os 

2) REMOVE IMAGE FIELD FROM THE STRIPE FIELDS
3) Required fields
- Key
- Secret
- Password
- Endpoint: Production, Sandbox

eWay API key reference: http://prntscr.com/rcm99b

Backlog

eWay Payment Gateway:
Integrate eWay API to Payment Flows

Add eWAY payment API library to the system.

Implement following payment flows:

- single item payment (for "Advanced Payment" flag on and off)
- item/event payment (for "Advanced Payment" flag on and off)
- checkout payment

For secure zone recurring subscriptions and eWAY payment gateway enabled for the country/currency:

- Show validation message and stop processing form submit immediately:
"Recurring payments are not allowed for eWAY payment Gateway yet."

Backlog

eWay Payment Gateway:
Integrate eWAY API for payment forms frontend JS

Apply eWAY apis to provide credit card fields via JS for payable forms in order to tokenize the card and pass token to the backend for charging process.

Apply backend auto-add js file script tag to the page similar to the stripe js (provide all required payment settings via get params to eway.js file)

Backlog

eWay Payment Gateway:
New component for payment fields

Add new component tag of type "payment_form_fields":
{% component type:"payment_form_fields", formAlias:"[[formAlias]]" %}

- formAlias (required) - alias of the form

Single tag item context is described below:

{
    "formAlias": 0,    
}

Default virtual layout:

<div id="paymentFields_{{this.formAlias}}"></div>
<input type="hidden" name="Payment_Data"/>
<div id="paymentErrors_{{this.formAlias}}" role="alert"></div>

Add this component to the default form layout that system generates for forms with payments instead of static html.

Backlog

Ecommerce Improvements:
Product Detail layout improvement

1) Tax price on product detail (+ in product attributes)

Add additional properties to products object

- taxRate
- priceWithTax
- priceWithTaxHtml

Upgrade ’item_attributes’ liquid component with ‘includeTax’ parameter:
{% component source: "Products", itemId: "5651", type: "item_attributes", includeTax: true %}

- includeTax (not required). By default use false.
- if true:
attrOption.formattedPrice - set price with tax

2) Ability to see stock quantity for product variations + disabling variation

Add this.productDataJSON property. Value is an object. Example:

{
    "itemId": 5651,
    "attributes": {
      "12462596046050033665": {
        "id": "12462596046050033665",
        "isInventory": true,
        "name": "sdvsd",
        "type": 2,
        "required": true,
        "optionIds": [
          "16234894512508370945",
          "16234894512508370946"
        ]
      }
    },
    "variations": {
      "8200195854968029199": {
        "id": "8200195854968029199",
        "enabled": true,
        "inStock": 3,
        "optionIds": [
          "16234894512508370945"
        ]
      },
      "8200195854968029200": {
        "id": "8200195854968029200",
        "enabled": true,
        "inStock": 0,
        "optionIds": [
          "16234894512508370946"
        ]
      }
    },
    "options": {
      "16234894512508370945": {
        "id": "16234894512508370945",
        "attributeId": "12462596046050033665",
        "name": "sdvsdvfgbfg",
        "image": null,
        "price": 0.0000
      },
      "16234894512508370946": {
        "id": "16234894512508370946",
        "attributeId": "12462596046050033665",
        "name": "sdvsdv",
        "image": null,
        "price": 0.0000
      }
    },
    "inStockTotal": 3,
    "recommendedPrice": 0.0000,
    "prices": {
      "0": 33.7700
    },
    "taxInPercent": 0.0,
    "taxRate": 0.0,
    "enablePreOrder": true,
    "QuantityThreshold": [
      {
        "Quantity": 0,
        "Price": 33.7700
      }
    ]
  }

Add this.productDataJsonHTML property.

ATTENTION: this property required to be rendered on Detail or list layout, because treepl cms ecommerce js works based on it’s data.
Otherwise add to cart, buy now buttons and in-stock calculations wouldn’t work.

Value is:
<script>             
initEcommerceProductPriceVariations({{this.Id}}, {{this.ProductDataJson}});
</script>

Modify JS to:

- calculate inStockHtml value based on selected attribute options and this.productDataJsonHTML Data (inventoryVariations)

- disable attribute options according to disabled variations in inventory  and this.productDataJsonHTML Data (inventoryVariations)

- calculate priceHTML and priceWithTaxHtml based on this.productDataJsonHTML Data (quantityThreshold)

Backlog

Ecommerce Improvements:
Admin panel speed improvement

Unite custom menu API and default menu API in to the one API request

Add properties to each menu item object:
- type

- id of the item

- default view (for module)

Remove UI bug when items list requested several times in a row if fast clicking between different module list pages

Desired result is speed improvement in the admin when:
- initial admin panel load

- module item list/tree view load

Backlog

Ecommerce Improvements:
Volume discount info to liquid

Add volume discount collection to this object of a module item that "is product" ONLY (module setting EnablePricing == true).


Property:

- volumeDiscount

Collection structure:

[
    {
        "quantity" : 10.
        "price"      : 200
    },
    ...
]

Backlog

Ecommerce Improvements:
Hide ecommerce items on lower site plans

1) If site plan is lower than ecommerce hide following items:

  • workflows:
    • Low stock notification Workflow
  • system pages:
    • checkout
    • order-receipt
    • shopping_cart
  • system emails:
    • Low Stock Notification
    • Supplier Notification
    • GiftVoucher
  • Setup logic on form submit if form.type == checkout
    • Show validation message and stop processing form submit immediately:
      "Checkout forms can not be processed on the current site plan."


2) If site plan is lower than pro hide following items:

  • system emails:
    • Invoice
  • File Manager:
    • ability to secure folders
  • Settings -> Payment:
    • menu item and pages
  • Settings -> Domains:
    • CURRENCY AND FORMAT tab
  • Events:
    • pricing tab
  • FORM builder:
    • Hide ability to change form types (for new select generic, For existed non generic - not change) http://prntscr.com/rh6dxz 

Backlog

Ecommerce Improvements:
Restore system pages and system email to default button

Add ”Restore to default” buttons to:
- system pages 

- system emails

Backlog

Ecommerce Improvements:
Move Currency and Format tab to Domain settings

Move Currency and Format tab from 

Settings->Payment

to

Settings->Domains

Backlog

Ecommerce Improvements:
Disable Secure form submission folder feature

Disable Secure form submission folder feature.
In one of the upcoming releases it will returned back with ability to configure what form should secure uploads and what should not.

Backlog

Ecommerce Improvements:
New component added for Cases

Add new component tag of type:"cases":

{% component type:"cases", viewType:"[[viewType]]", object:"[[object]]", currentMemberOnly: [[currentMemberOnly]], filterBy:"[[filterBy]]", filterValue:"[[filterValue]]", filterCondition:"[[filterCondition]]",  collectionVariable:"", layout:"", sortBy:"", sortOrder:"", limit:"[[limit]]", offset:"[[offset]]" %}

  • viewType
    • list (default)
    • detail
  • currentMemberOnly (not required)
    • if false get all cases of all users
    • otherwise get cases of current logged in crm member only (default true)
  • object (not required)
    • item
    • collection (default)
  • collectionVariable (not required) - works the same way as other modules.
  • layout (not required) - path to FTP file that will contain layout content to be parsed.
    • If specified empty string - do not render anything.
    • If not specified at all - render default virtual layout.
  • sortBy (not required)
    • Id (default)
    • FormId
    • MemberId
    • FormName
    • CreatedDateTime
  • sortOrder (not required)
    • ASC
    • DESC (default).
  • filterBy (not required) - default value is empty
    • Id
    • FormId
    • MemberId
    • FormName
    • CreatedDateTime
  • filterValue (not required)
    • value to use in filtering condition
  • filterCondition (not required)
    • equally (default)
    • less
    • more
    • lessEqually
    • moreEqualy
    • contains
  • limit  (not required) - number of items to get (default value is 10)
  • offset (not required) - number of items to skip before get (default value is 0)

Single tag item context is described below. If object = collection than this contains attributes property that holds the list of attributes ({{this.items}}) :


List View:

{
    "formId": 0,
    "memberId": 0,
    "id": 0,
    "formName": "",
    "dateSubmission": ""
}

Detail View:

{
    "formId": 0,
    "memberId": 0,
    "fields":
    [
        {
            "name": "",
            "alias": "",
            "value": "",
            "type": ""
        }
    ],
    "id": 0,
    "formName": "",
    "dateSubmission": ""
}

Default virtual layout:

<ul>
    {% for item in this.items %}
        <li> 
            <strong>{{item.formName}}</strong>        
            <span>Date Submission: {{item.dateSubmission | format_date: "dddd, MMMM dd, yyyy"}}</span>
        </li>
    {% endfor %}
</ul>

Toolbox:
CRM > Cases

Backlog

Ecommerce Improvements:
New component added for Orders

Add new component tag of type:"orders":

{% component type:"orders", viewType:"[[viewType]]", object:"[[object]]", currentMemberOnly: [[currentMemberOnly]], filterBy:"[[filterBy]]", filterValue:"[[filterValue]]", filterCondition:"[[filterCondition]]",  collectionVariable:"", layout:"", sortBy:"", sortOrder:"", limit:"[[limit]]" %}

  • viewType
    • list (default)
    • detail
  • currentMemberOnly (not required) - default true
    • if false get all orders of all users
    • otherwise get orders of current logged in crm member only (default is true)
  • object (not required)
    • item
    • collection (default)
  • collectionVariable (not required) - works the same way as in type: module.
  • layout (not required) - path to FTP file that will contain layout content that need to be parsed.
    • If specified empty string - do not render anything.
    • If not specified at all - render default virtual layout.
  • sortBy (not required)
    • id (default)
    • formId
    • memberId
    • caseId
    • name 
    • invoiceNumber
    • invoiceDate
    • paymentType
    • AmountPending
    • AmountPaid
    • subTotalPrice
    • taxPercent
    • taxPrice
    • totalPrice
  • sortOrder (not required)
    • ASC
    • DESC (default)
  • filterBy (not required) - Default value is empty
    • id
    • formId
    • memberId
    • caseId
    • name   
    • invoiceNumber
    • invoiceDate
    • paymentType
    • AmountPending
    • AmountPaid
    • subTotalPrice
    • taxPercent
    • taxPrice
    • totalPrice
  • filterValue (not required)
    • value to use in filtering condition
  • filterCondition (not required)
    • equally (default)
    • less
    • more
    • lessEqually
    • moreEqualy
    • contains
  • limit  (not required) - number of items to get (default value is 10)
  • offset (not required) - number of items to skip before get (default value is 0)

Single tag item context is described below. If object = collection than this contains attributes property that holds the list of attributes ({{this.items}}) :

List View:

{
    "id": 0,
    "formId": 0,
    "memberId": 0,
    "caseId": 0,
    "name": "",    
    "invoiceNumber": "",
    "invoiceDate": "",  
    "domainCountryCode,
    "formatSettingId,
    "paymentType" : "",
    "AmountPending" : 0,
    "AmountPaid" : 0,
    "subTotalPrice" : 0,
    "taxPercent" : 0,
    "taxPrice" : 0,
    "totalPrice" : 0
}

Detail View:

{
    "id": 0,
    "formId": 0,
    "memberId": 0,
    "caseId": 0,
    "name": "",    
    "invoiceNumber": "",
    "invoiceDate": "",
    "items" : [see Data Structure for this component (see v5.0 release notes)],
    "formatSetting" : [see Data Structure for this component (see v5.0 release notes)],
    "domainCountry" : [see Data Structure for this component (see v5.0 release notes)],
    "destinationCountry" : [see Data Structure for this component (see v5.0 release notes)],
    "shippingOption" : [see Data Structure for this component (see v5.0 release notes)],
    "discount" : [see Data Structure for this component (see v5.0 release notes)],
    "giftVoucher" : [see Data Structure for this component (see v5.0 release notes)],
    "paymentType" : "",
   "AmountPending" : 0
    "AmountPaid" : 0 
    "subTotalPrice" : 0
    "taxPercent" : 0,
    "taxPrice" : 0,
    "totalPrice" : 0
}

Default virtual layout:

<ul>
    {% for order in this.items %}
        <li> 
            <strong>{{order .name}}</strong>    
            <span>Invoice Date: {{order.invoiceDate | format_date: "dddd, MMMM dd, yyyy"}}</span>  
            <span>Total Cost: {{order.totalPrice | set_money_format : order.domainCountryCode,  order.formatSettingId}}</span>
        </li>
    {% endfor %}
</ul>

Toolbox:
CRM > Orders

HOTPATCH

Ecommerce Improvements:
Auto add this.ProductDataJsonHTML to product detail layout
(will be released via hotpatch v5.1.1 on March 23)

Exclusively for Product Module:

Automatically add {{this.ProductDataJsonHTML}} to the product detail if there is no manual output inside the layout

HOTPATCH

Module copy function restriction upgrade
(will be released via hotpatch v5.1.1 on March 23)

Allow module copying starting Pro plan

Bug

List of bug fixes

eCommerce related:

  • Disable Checkout button when applied price changes
  • add TaxPriceHtml to shoppingcartdata object
  • Fixed displaying of Recommended Retail Price https://prnt.sc/r7u7yq 
  • Gift Voucher shows incorrect Currency in giftvoucher email
  • liquid error Component RelatedItem and Component GroupedItems
  • {{this.order}} is now accessible in workflow email content.
  • Product Detail layout improvement - removed price rounding when selecting attributes
  • Fixed incorrect calculating In Stock quantity when add product with attributes
  • Fixed incorrect priceHtml value displaying on product detail (previously shows 4 decimals) http://prntscr.com/rjpuq9 
  • form submissiondataobject doesn’t accessible in invoice email
  • Product Detail layout improvement - Inventory control (In Stock)
  • Fixed incorrect order prices displayed on thank you page

Show more less
New Feature

Ecommerce Template: "Furniture"

New ecommerce/Foundation/WCAG 2.1 compliant template:"Furniture"
  • Templates
New Feature

eWAY Payment Gateway

eWAY payment gateway for ecommerce and payable forms/events/subscriptions.
  • Ecommerce
Improvement

Ecommerce Additions

  • Tax price on product detail and in attribute component
  • Ability to see stock quantity for product variations with disabling of variations
  • Volume discount info available via Liquid
  • A button to restore all system pages and system emails to default
  • Ecommerce
Bugfix

BUG: Item Duplication of an already Duplicated Item

If you duplicate an item (from within the edit page), save it as a new item, then duplicate that item (still within the edit page), it actually duplicates the original/first item instead of the new one.

  • Admin Panel
  • Bugs
  • Pages and Templates