Sfoglia il codice sorgente

导入0号台账文件

MaiXinRong 5 anni fa
parent
commit
fd463dbbf9
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      Units/ProjectData.pas

+ 2 - 2
Units/ProjectData.pas

@@ -1309,13 +1309,13 @@ procedure TProjectData.ImportCloudTenderFile(const AFileName: string);
     sBillsSql = 'Insert Into Bills (ID, ParentID, NextSiblingID,' +
                 '    Code, B_Code, Name, Units, Alias, Price, NewPrice,' +
                 '    OrgQuantity, OrgTotalPrice, MisQuantity, MisTotalPrice, OthQuantity, OthTotalPrice,' +
-                '    CalcType,' +
+                '    CalcType, IsGatherZJJL,' +
                 '    DgnQuantity1, DgnQuantity2,'+
                 '    Peg, DrawingCode, MemoStr, HasBookMark, MarkMemo, ApprovalCode)'+
                 '  Select ID, ParentID, NextSiblingID,'+
                 '    Code, B_Code, Name, Units, Alias, Price, NewPrice,' +
                 '    OrgQuantity, OrgTotalPrice, MisQuantity, MisTotalPrice, OthQuantity, OthTotalPrice,' +
-                '    CalcType,' +
+                '    CalcType, IsGatherZJJL,' +
                 '    DgnQuantity1, DgnQuantity2,'+
                 '    Peg, DrawingCode, MemoStr, HasBookMark, MarkMemo, ApprovalCode'+
                 '  From Bills In ''%s''';