|
@@ -481,6 +481,7 @@ begin
|
|
|
vInfo.Attributes['EndTotalPrice'] := InfoRec.ValueByName('EndTotalPrice').AsFloat;
|
|
|
vInfo.Attributes['PreTotalPrice'] := InfoRec.ValueByName('PreTotalPrice').AsFloat;
|
|
|
vInfo.Attributes['PhasePay'] := InfoRec.ValueByName('PhasePay').AsFloat;
|
|
|
+ vInfo.Attributes['EndPhasePay'] := InfoRec.ValueByName('EndPhasePay').AsFloat;
|
|
|
vInfo.Attributes['Deal_BGLTotalPrice'] := InfoRec.ValueByName('Deal_BGLTotalPrice').AsFloat;
|
|
|
vInfo.Attributes['PhaseCount'] := FProjectData.ProjProperties.PhaseCount;
|
|
|
vInfo.Attributes['AuditStatus'] := FProjectData.ProjProperties.AuditStatus;
|
|
@@ -681,7 +682,8 @@ begin
|
|
|
FCurNode.Rec.ValueByName('EndChangeTotalPrice').AsFloat := AXmlNode.Attributes['EndChangeTotalPrice'];
|
|
|
FCurNode.Rec.ValueByName('EndTotalPrice').AsFloat := AXmlNode.Attributes['EndTotalPrice'];
|
|
|
FCurNode.Rec.ValueByName('PreTotalPrice').AsFloat := AXmlNode.Attributes['PreTotalPrice'];
|
|
|
- FCurNode.Rec.ValueByName('PhasePay').AsFloat := AXmlNode.Attributes['PhasePay'];
|
|
|
+ FCurNode.Rec.ValueByName('PhasePay').AsFloat := AXmlNode.Attributes['PhasePay'];
|
|
|
+ FCurNode.Rec.ValueByName('EndPhasePay').AsFloat := AXmlNode.Attributes['EndPhasePay'];
|
|
|
if AXmlNode.HasAttribute('Deal_BGLTotalPrice') then
|
|
|
FCurNode.Rec.ValueByName('Deal_BGLTotalPrice').AsFloat := AXmlNode.Attributes['Deal_BGLTotalPrice'];
|
|
|
FCurNode.Rec.ValueByName('PhaseCount').AsInteger := AXmlNode.Attributes['PhaseCount'];
|
|
@@ -845,7 +847,8 @@ begin
|
|
|
vInfo.Attributes['EndChangeTotalPrice'] := InfoRec.ValueByName('EndChangeTotalPrice').AsFloat;
|
|
|
vInfo.Attributes['EndTotalPrice'] := InfoRec.ValueByName('EndTotalPrice').AsFloat;
|
|
|
vInfo.Attributes['PreTotalPrice'] := InfoRec.ValueByName('PreTotalPrice').AsFloat;
|
|
|
- vInfo.Attributes['PhasePay'] := InfoRec.ValueByName('PhasePay').AsFloat;
|
|
|
+ vInfo.Attributes['PhasePay'] := InfoRec.ValueByName('PhasePay').AsFloat;
|
|
|
+ vInfo.Attributes['EndPhasePay'] := InfoRec.ValueByName('EndPhasePay').AsFloat;
|
|
|
vInfo.Attributes['Deal_BGLTotalPrice'] := InfoRec.ValueByName('Deal_BGLTotalPrice').AsFloat;
|
|
|
vInfo.Attributes['PhaseCount'] := InfoRec.ValueByName('PhaseCount').AsInteger;
|
|
|
vInfo.Attributes['AuditStatus'] := InfoRec.ValueByName('AuditStatus').AsInteger;
|
|
@@ -1118,6 +1121,7 @@ begin
|
|
|
FNewNode.Rec.ValueByName('EndTotalPrice').AsFloat := AXmlNode.Attributes['EndTotalPrice'];
|
|
|
FNewNode.Rec.ValueByName('PreTotalPrice').AsFloat := AXmlNode.Attributes['PreTotalPrice'];
|
|
|
FNewNode.Rec.ValueByName('PhasePay').AsFloat := AXmlNode.Attributes['PhasePay'];
|
|
|
+ FNewNode.Rec.ValueByName('EndPhasePay').AsFloat := AXmlNode.Attributes['EndPhasePay'];
|
|
|
if AXmlNode.HasAttribute('Deal_BGLTotalPrice') then
|
|
|
FNewNode.Rec.ValueByName('Deal_BGLTotalPrice').AsFloat := AXmlNode.Attributes['Deal_BGLTotalPrice'];
|
|
|
FNewNode.Rec.ValueByName('PhaseCount').AsInteger := AXmlNode.Attributes['PhaseCount'];
|