【发布时间】:2021-12-14 21:44:04
【问题描述】:
我正在使用 Acumatica 自定义Acumatica-LotSerialNbrAttribute
此自定义添加了一个新屏幕,用于查找 InventoryID 和 LotSerialNbr 并可视化其属性。
我正在尝试将此窗口添加到 acumatica 移动应用程序。 这是我的代码:
add screen IN202501 {
add container "InventoryLotSerialContainers" {
add field "InventoryID"
add field "LotSerialNbr"
add group "Attributes" {
displayName = "Attributes"
collapsable = True
add attributes "AttributesAttributes"
}
add recordAction "Save" {
behavior = Save
}
add recordAction "Cancel" {
behavior = Cancel
}
attachments {
}
}
}
屏幕在移动应用上可见,带有 2 个选择器 然后我选择Inventory,当我选择Lot Serial Nbr时,第一个选择器为空白,导致我无法查看属性,也无法保存信息。
希望您能帮助我在 acumatica 移动应用上成功发布此屏幕。 谢谢。
【问题讨论】: