|
@@ -467,6 +467,8 @@ begin
|
|
|
vInfo.Attributes['PhaseCount'] := FProjectData.ProjProperties.PhaseCount;
|
|
|
vInfo.Attributes['AuditStatus'] := FProjectData.ProjProperties.AuditStatus;
|
|
|
vInfo.Attributes['FileName'] := ExtractSimpleFileName(FFileName);
|
|
|
+ vInfo.Attributes['CommonDigit'] := InfoRec.ValueByName('CommonDigit').AsInteger;
|
|
|
+ vInfo.Attributes['DealPayDigit'] := InfoRec.ValueByName('DealPayDigit').AsInteger;
|
|
|
|
|
|
if G_IsCloud then
|
|
|
begin
|
|
@@ -667,6 +669,8 @@ begin
|
|
|
FCurNode.Rec.ValueByName('PhaseCount').AsInteger := AXmlNode.Attributes['PhaseCount'];
|
|
|
FCurNode.Rec.ValueByName('AuditStatus').AsInteger := FNewAuditStatus;
|
|
|
FCurNode.Rec.ValueByName('CreateDate').AsString := FormatDateTime('yyyy-mm-dd', Date);
|
|
|
+ FCurNode.Rec.ValueByName('CommonDigit').AsInteger := StrToIntDef(AXmlNode.Attributes['CommonDigit'], 0);
|
|
|
+ FCurNode.Rec.ValueByName('DealPayDigit').AsInteger := StrToIntDef(AXmlNode.Attributes['DealPayDigit'], 0);
|
|
|
|
|
|
if G_IsCloud then
|
|
|
begin
|
|
@@ -824,7 +828,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['Deal_BGLTotalPrice'] := InfoRec.ValueByName('Deal_BGLTotalPrice').AsFloat;
|
|
|
+ vInfo.Attributes['Deal_BGLTotalPrice'] := InfoRec.ValueByName('Deal_BGLTotalPrice').AsFloat;
|
|
|
vInfo.Attributes['PhaseCount'] := InfoRec.ValueByName('PhaseCount').AsInteger;
|
|
|
vInfo.Attributes['AuditStatus'] := InfoRec.ValueByName('AuditStatus').AsInteger;
|
|
|
vInfo.Attributes['FileName'] := ExtractSimpleFileName(FResultFile);
|