unit U_ClothBeamInfoInPut; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, cxStyles, cxCustomData, cxGraphics, cxFilter, cxData, cxDataStorage, cxEdit, DB, cxDBData, cxCalendar, cxDropDownEdit, ComCtrls, ToolWin, cxGridLevel, cxGridCustomTableView, cxGridTableView, cxGridDBTableView, cxClasses, cxControls, cxGridCustomView, cxGrid, cxGridCustomPopupMenu, cxGridPopupMenu, ADODB, DBClient, cxButtonEdit, cxTextEdit, StdCtrls, ExtCtrls, cxLookAndFeels, cxLookAndFeelPainters, cxNavigator, dxSkinsCore, dxSkinsDefaultPainters, dxDateRanges, dxBarBuiltInMenu, U_BaseInput, U_BaseList, System.ImageList, Vcl.ImgList; type TfrmClothBeamInfoInPut = class(TfrmBaseInput) cxGrid2: TcxGrid; Tv1: TcxGridDBTableView; v1Column2: TcxGridDBColumn; cxGrid2Level1: TcxGridLevel; ToolBar1: TToolBar; TBAdd: TToolButton; TBDel: TToolButton; TBSave: TToolButton; TBClose: TToolButton; DataSource3: TDataSource; CDS_Sub: TClientDataSet; ADOQueryCmd: TADOQuery; ADOQueryMain: TADOQuery; ADOQueryTemp: TADOQuery; cxGridPopupMenu2: TcxGridPopupMenu; ToolButton1: TToolButton; procedure FormClose(Sender: TObject; var Action: TCloseAction); procedure TBAddClick(Sender: TObject); procedure TBCloseClick(Sender: TObject); procedure FormShow(Sender: TObject); procedure TBDelClick(Sender: TObject); procedure TBSaveClick(Sender: TObject); procedure ToolButton1Click(Sender: TObject); private { Private declarations } function SaveCKData(): Boolean; public { Public declarations } FBCId, FSTKName: string; end; var frmClothBeamInfoInPut: TfrmClothBeamInfoInPut; implementation uses U_DataLink, U_RTFun, U_ZDYHelp; {$R *.dfm} procedure TfrmClothBeamInfoInPut.FormClose(Sender: TObject; var Action: TCloseAction); begin inherited; Action := caFree; end; procedure TfrmClothBeamInfoInPut.TBAddClick(Sender: TObject); begin if CDS_Sub.IsEmpty = False then begin CopyAddRowCDS(CDS_Sub); with CDS_Sub do begin Edit; FieldByName('CBID').Value := null; post; end; end else begin with CDS_Sub do begin Append; Post; end; end; end; function TfrmClothBeamInfoInPut.SaveCKData(): Boolean; var MaxNo, MCBID: string; begin try ADOQueryCmd.Connection.BeginTrans; CDS_Sub.DisableControls; with CDS_Sub do begin First; while not eof do begin with ADOQueryTemp do begin Close; sql.Clear; sql.Add('select * from Tat_CB_Stk where CBID=''' + Trim(CDS_Sub.fieldbyname('CBID').AsString) + ''''); open; end; MCBID := Trim(ADOQueryTemp.fieldbyname('CBID').AsString); if Trim(MCBID) = '' then begin if GetLSNo(ADOQueryCmd, MaxNo, 'CB', 'Tat_CB_Stk', 4, 0) = False then raise Exception.Create('取最大号失败!'); end else begin MaxNo := Trim(MCBID); end; with ADOQueryCmd do begin Close; sql.Clear; sql.Add('select * from Tat_CB_Stk where CBID=''' + Trim(MaxNo) + ''''); Open; end; with ADOQueryCmd do begin if Trim(MCBID) = '' then begin Append; FieldByName('Fillid').Value := Trim(Dcode); FieldByName('Filler').Value := Trim(DName) end else begin Edit; FieldByName('Editid').Value := Trim(Dcode); FieldByName('Editer').Value := Trim(DName); FieldByName('EditTime').Value := SGetServerDate(ADOQueryTemp); end; FieldByName('CBID').Value := Trim(MaxNo); // FieldByName('STKName').Value := Trim(FSTKName); RTSetSaveDataCDS(ADOQueryCmd, Tv1, CDS_Sub, 'Tat_CB_Stk', 0); Post; end; Edit; FieldByName('CBID').Value := Trim(MaxNo); Post; Next; end; end; CDS_Sub.EnableControls; ADOQueryCmd.Connection.CommitTrans; Result := True; except Result := False; ADOQueryCmd.Connection.RollbackTrans; application.MessageBox(PChar(Exception(ExceptObject).Message), '提示信息', 0); end; end; procedure TfrmClothBeamInfoInPut.TBCloseClick(Sender: TObject); begin Close; end; procedure TfrmClothBeamInfoInPut.FormShow(Sender: TObject); var fsj: string; begin inherited; ReadCxGrid(trim(self.Caption), Tv1, '染色坯布仓库'); with ADOQueryTemp do begin Close; sql.Clear; sql.Add(' select A.* '); sql.Add(' from Tat_CB_Stk A'); sql.Add(' where CBID=''' + Trim(FBCId) + ''''); Open; end; SCreateCDS(ADOQueryTemp, CDS_Sub); SInitCDSData(ADOQueryTemp, CDS_Sub); end; procedure TfrmClothBeamInfoInPut.TBDelClick(Sender: TObject); begin if CDS_Sub.IsEmpty then Exit; if Trim(CDS_Sub.fieldbyname('CBID').AsString) <> '' then begin if Application.MessageBox('确定要删除数据吗?', '提示', 32 + 4) <> IDYES then Exit; try ADOQueryCmd.Connection.BeginTrans; with ADOQueryCmd do begin Close; sql.Clear; sql.Add(' delete Tat_CB_Stk where CBID=''' + Trim(CDS_Sub.fieldbyname('CBID').AsString) + ''''); ExecSQL; end; ADOQueryCmd.Connection.CommitTrans; CDS_Sub.Delete; except ADOQueryCmd.Connection.RollbackTrans; Application.MessageBox('删除异常!', '提示', 0); end; end else begin CDS_Sub.Delete; end; end; procedure TfrmClothBeamInfoInPut.TBSaveClick(Sender: TObject); begin if CDS_Sub.IsEmpty then Exit; if CDS_Sub.Locate('CBNo', null, []) = True then begin Application.MessageBox('编号不能为空!', '提示', 0); Exit; end; if SaveCKData() then begin Application.MessageBox('保存成功!', '提示', 0); ModalResult := 1; Exit; end; end; procedure TfrmClothBeamInfoInPut.ToolButton1Click(Sender: TObject); begin WriteCxGrid(trim(self.Caption), Tv1, '染色坯布仓库'); end; end.