Fixed data-item attribute

This commit is contained in:
2022-01-02 20:05:21 +10:00
parent 3067bd1bfc
commit 4de8f20d00

View File

@@ -1,5 +1,6 @@
module OrderScreen
open System.Security.Cryptography.Xml
open System.Web
open DredgeFramework
open DredgePos
open FSharp.Collections
@@ -10,10 +11,9 @@ open Theme
let htmlAttributes (attributes: Map<string, string>) =
" " + (attributes
|> Map.toArray
|> Array.map (fun (attribute, value) -> attribute+"="+value)
|> Array.map (fun (attribute, value) -> attribute+"=\""+HttpUtility.HtmlEncode value + "\"")
|> String.concat " ")
let getAllPageGrids () = Entity.getAllInVenue<order_screen_page_group>
|> Array.filter(fun pageGroup -> pageGroup.grid_id <> 0)
|> Array.map(fun pageGroup -> (Entity.getById<grid> pageGroup.grid_id), pageGroup)
@@ -24,11 +24,7 @@ let getImageButtonData (button: button) =
let extraData =
map [
"data-item-code", item.item_code
"data-item-price", item.price1.ToString()
"data-item-name", item.item_name
"data-item-type", item.item_type
"data-item-category", item.item_category.ToString()
"data-item", jsonEncode item
] |> htmlAttributes
{|