本文介绍了Acumatica 计算未绑定字段的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我关于计算未绑定字段的一些问题,我想通过行索引从网格获取值,例如c#中的RowIndex属性,是否可用来自 acumatica?

i some problems about calculate unbound field, i want get value from grid by row index like RowIndex property in c#, is it available from acumatica?

protected virtual void BSMTActivityTypePlanDetail_RowSelected(PXCache sender, PXRowSelectedEventArgs e)
    {
        if(e.Row == null)
        {
            return;
        }

        BSMTActivityTypePlan head = new BSMTActivityTypePlan();
        BSMTActivityTypePlanDetail detail = (BSMTActivityTypePlanDetail)e.Row;

        for (int x = 0; x <= DetailActTypePlans.Select().RowCount; x++)
        {
            head.TotalPlanAct += DetailActTypePlans.
        }


    }

解决这个问题的正确方法是什么?谢谢

What could be the correct way to solve this problem? thanks

推荐答案

最终我正在使用 PXDBScalar 并且它适用于未绑定字段.

finnaly i'm using PXDBScalar and it's works on unbound field.

这篇关于Acumatica 计算未绑定字段的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-04 22:28
查看更多