I try to modify the sum calculation for Requisition bidding total value by adding custom field from each Requisition Bidding line. here is the definition of custom DAC
[PXDBCurrency(typeof(RQBidding.curyInfoID), typeof(RQBidding.quoteExtCost))]
[PXUIField(DisplayName = "Bid Extended Cost", Visibility = PXUIVisibility.SelectorVisible, Enabled = false)]
[PXFormula(typeof(Add<Mult<RQBidding.quoteQty, RQBidding.curyQuoteUnitCost>, RQBiddingExt.usrCuryPatternCost>), typeof(SumCalc<RQBiddingVendor.curyTotalQuoteExtCost>))]
[PXDefault(TypeCode.Decimal, "0.0"
the custom field is usrCuryPatternCost. The problem is, when user are not inputing Pattern Cost, the total value would not updated with the total value. How to keep total value updated even when user not inputting the custom field?