如何在Acumatica的时间列表中获得超过24小时的时间?

如何在Acumatica的时间列表中获得超过24小时的时间?,acumatica,acumatica-kb,Acumatica,Acumatica Kb,如何在acumatica的时间列表中获得超过24小时的时间 在Acumatica,我们目前有一个时间列表,可以在下拉列表中接受24:00小时 如何在下拉列表中增加时间列表。对于Ex:50:00或45:30使用PXDBTimeSpanLong属性而不是PXTimeList: public abstract class timeSpent : PX.Data.BQL.BqlInt.Field<timeSpent> { } [PXDBTimeSpanLong(Format = TimeS

如何在acumatica的时间列表中获得超过24小时的时间

在Acumatica,我们目前有一个时间列表,可以在下拉列表中接受24:00小时


如何在下拉列表中增加时间列表。对于Ex:50:00或45:30

使用
PXDBTimeSpanLong
属性而不是
PXTimeList

public abstract class timeSpent : PX.Data.BQL.BqlInt.Field<timeSpent> { }

[PXDBTimeSpanLong(Format = TimeSpanFormatType.LongHoursMinutes)]
[PXUIField(DisplayName = "Time Spent", Enabled = false)]
public virtual Int32? TimeSpent { get; set; }
此属性使用
MaskEdit
类型控件编辑器,而不是
组合框
类型:

<px:PXTimeSpan TimeMode="True" ID="edTimeSpent" runat="server" 
               DataField="TimeSpent" InputMask="hh:mm" MaxHours="99" />