【问题标题】:Add Release/ Release all Actions Acumatica mobile framework添加发布/发布所有 Actions Acumatica 移动框架
【发布时间】:2021-04-11 10:53:32
【问题描述】:

早上好,

我正在寻求您的帮助,建议我如何在移动应用程序中放置“释放或全部释放”操作。

我已经添加了这个 Actions 容器(屏幕 AP503000 -Prepare Payments)

<s: complexType name = "Actions">
<s: sequence>
<s: element minOccurs = "0" maxOccurs = "1" name = "Cancel" type = "tns: Action" />
<s: element minOccurs = "0" maxOccurs = "1" name = "Process" type = "tns: Action" />
<s: element minOccurs = "0" maxOccurs = "1" name = "ProcessAll" type = "tns: Action" />

在自定义项目/移动应用程序(添加屏幕)中添加以下代码:

添加屏幕AP503000 {

add container "Actions" {
  add field "Cancel"
  add field "Process"
  add field "ProcessAll"
}

add container "Selection"{
  add field "PaymentMethod"
  add field "CashAccount"
  add field "PaymentDate"
  add field "Currency"
  add field "Vendor"
     
}
add container "DocumentsToPay"{
  add field "Selected"
  add field "DocumentType"
  add field "ReferenceNbr"
  add field "VendorID"
  add field "VendorName"
  add field "AmountPaid"
}

}

将结果附在移动设备中** Selection Container DocumentsToPay Container

这些动作没有显示在移动界面中,有什么建议/想法吗?

提前致谢!

问候。

【问题讨论】:

    标签: acumatica acumatica-kb


    【解决方案1】:

    试试这个。

    add screen AP503000 {
    add container "Selection"{
    fieldsToShow = 5
    listActionsToExpand = 1
    containerActionsToExpand = 1
    add field "PaymentMethod"
    add field "CashAccount"
    add field "PaymentDate"
    add field "Currency"
    add field "Vendor"
    }
    
    add container "DocumentsToPay" {    
    add field "DocumentType"
    add field "ReferenceNbr"
    add field "VendorID"
    add field "VendorName"
    add field "Description"
    add field "Account"
    add field "DueDate"
    add field "Balance"
    add listAction "Process" {
      behavior = Void
      syncLongOperation = True
    }    
    add containerAction "EditDetail" {
      behavior = Open
      redirect = True
    }
    attachments {
    }
    

    } }

    【讨论】:

      猜你喜欢
      • 2017-10-12
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2017-12-25
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多