Pivot Structure format bug

Here is my structure

{
	label:"Sample",
	structure:{
		rows: ["client_name"],
		columns: ["year", "month"],
		values: [
			{ name:"quantity", operation:"sum"},
			{ name:"total", operation:"sum", format:webix.i18n.priceFormat}
		],
		filters:[]
	}
}

It’s not formatting total as price. But if I change the order of total and quantity, This time quantity and total seems like price.

It’s formatting values only for first one.

Here is my temporary solution

            { name:"quantity", operation:"sum", format: function(obj){
                    var arr = this.id.split('_\\'_');
                    if(arr[arr.length-1] == 'quantity'){
                        return obj;
                    }else if(arr[arr.length-1] == 'total'){
                        return webix.i18n.priceFormat(obj);
                    }
                }
            }

Thank you for the post. The fix will be included into the next version.