527 lines
14 KiB
ObjectPascal
527 lines
14 KiB
ObjectPascal
unit U_CustInput;
|
||
|
||
interface
|
||
|
||
uses
|
||
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
||
Dialogs, cxGraphics, cxCustomData, cxStyles, cxTL, cxMaskEdit, DB, ADODB,
|
||
cxInplaceContainer, cxDBTL, cxControls, cxTLData, ComCtrls, ToolWin, StdCtrls,
|
||
cxFilter, cxData, cxDataStorage, cxEdit, cxDBData, DBClient,
|
||
cxGridCustomTableView, cxGridTableView, cxGridDBTableView, ExtCtrls,
|
||
cxSplitter, cxGridLevel, cxClasses, cxGridCustomView, cxGrid,
|
||
cxGridCustomPopupMenu, cxGridPopupMenu, RM_Dataset, RM_System, RM_Common,
|
||
RM_Class, RM_GridReport, IdBaseComponent, IdComponent, IdTCPConnection,
|
||
IdTCPClient, IdFTP, ShellAPI, IniFiles, cxCheckBox, cxCalendar, cxButtonEdit,
|
||
cxTextEdit, cxDropDownEdit, BtnEdit, cxLookAndFeels, cxLookAndFeelPainters,
|
||
cxNavigator, dxSkinsCore, dxSkinsDefaultPainters, dxDateRanges,
|
||
dxBarBuiltInMenu, U_BaseInput, System.ImageList, Vcl.ImgList, cxContainer,
|
||
cxMemo, dxSkinWXI, dxScrollbarAnnotations;
|
||
|
||
type
|
||
TfrmCustInput = class(TfrmBaseInput)
|
||
ToolBar1: TToolBar;
|
||
TBClose: TToolButton;
|
||
ADOQueryTemp: TADOQuery;
|
||
ADOQueryCmd: TADOQuery;
|
||
ADOQueryMain: TADOQuery;
|
||
cxGridPopupMenu2: TcxGridPopupMenu;
|
||
ToolButton3: TToolButton;
|
||
CDS_LXR: TClientDataSet;
|
||
DSLXR: TDataSource;
|
||
ScrollBox1: TScrollBox;
|
||
Label2: TLabel;
|
||
Label6: TLabel;
|
||
Label7: TLabel;
|
||
CoName: TcxTextEdit;
|
||
Label1: TLabel;
|
||
CoAbbrName: TcxTextEdit;
|
||
CoCode: TcxTextEdit;
|
||
Panel1: TPanel;
|
||
Label4: TLabel;
|
||
Label8: TLabel;
|
||
Panel3: TPanel;
|
||
ToolBar3: TToolBar;
|
||
ToolButton2: TToolButton;
|
||
ToolButton6: TToolButton;
|
||
ToolButton7: TToolButton;
|
||
cxGrid2: TcxGrid;
|
||
TV2: TcxGridDBTableView;
|
||
cxGridDBColumn2: TcxGridDBColumn;
|
||
cxGridDBColumn3: TcxGridDBColumn;
|
||
cxGridDBColumn5: TcxGridDBColumn;
|
||
cxGridDBColumn6: TcxGridDBColumn;
|
||
cxGridDBColumn7: TcxGridDBColumn;
|
||
cxGridDBColumn8: TcxGridDBColumn;
|
||
cxGridLevel2: TcxGridLevel;
|
||
Label10: TLabel;
|
||
TV2Column2: TcxGridDBColumn;
|
||
Label3: TLabel;
|
||
Label5: TLabel;
|
||
CoBusinessType: TcxButtonEdit;
|
||
cocountry: TcxButtonEdit;
|
||
CoLevel: TcxComboBox;
|
||
ParentCoName: TcxButtonEdit;
|
||
ToolButton1: TToolButton;
|
||
CoAddress: TcxTextEdit;
|
||
CoNote: TcxMemo;
|
||
procedure FormDestroy(Sender: TObject);
|
||
procedure FormClose(Sender: TObject; var Action: TCloseAction);
|
||
procedure TBCloseClick(Sender: TObject);
|
||
procedure FormShow(Sender: TObject);
|
||
procedure TBRafreshClick(Sender: TObject);
|
||
procedure ToolButton3Click(Sender: TObject);
|
||
procedure ToolButton6Click(Sender: TObject);
|
||
procedure ToolButton7Click(Sender: TObject);
|
||
procedure ToolButton2Click(Sender: TObject);
|
||
procedure BuyNamePropertiesButtonClick(Sender: TObject; AButtonIndex: Integer);
|
||
procedure CoBusinessTypeDblClick(Sender: TObject);
|
||
procedure cxButtonEdit1PropertiesButtonClick(Sender: TObject; AButtonIndex: Integer);
|
||
procedure ToolButton1Click(Sender: TObject);
|
||
private
|
||
{ Private declarations }
|
||
procedure InitGrid();
|
||
function SaveData(): Boolean;
|
||
public
|
||
fkhType: string;
|
||
{ Public declarations }
|
||
FCOID: string;
|
||
end;
|
||
|
||
var
|
||
frmCustInput: TfrmCustInput;
|
||
|
||
implementation
|
||
|
||
uses
|
||
U_DataLink, U_RTFun, U_ZDYHelp, U_YGSel, U_CompanySel;
|
||
|
||
{$R *.dfm}
|
||
|
||
procedure TfrmCustInput.InitGrid();
|
||
begin
|
||
try
|
||
|
||
ADOQueryMain.DisableControls;
|
||
with ADOQueryMain do
|
||
begin
|
||
Filtered := False;
|
||
Close;
|
||
SQL.Clear;
|
||
sql.Add(' select * from BS_Company where CoType=''<27>ͻ<EFBFBD>'' and COID=''' + Trim(FCOID) + '''');
|
||
Open;
|
||
end;
|
||
SCSHData(ADOQueryMain, ScrollBox1, 2);
|
||
ParentCoName.Properties.LookupItems.Text := ADOQueryMain.FieldByName('ParentCoCode').AsString;
|
||
with ADOQueryMain do
|
||
begin
|
||
Filtered := False;
|
||
Close;
|
||
SQL.Clear;
|
||
sql.Add(' select * from BS_Company_contact where COID=' + quotedstr(Trim(FCOID)));
|
||
Open;
|
||
end;
|
||
SCreateCDS(ADOQueryMain, CDS_LXR);
|
||
SInitCDSData(ADOQueryMain, CDS_LXR);
|
||
|
||
finally
|
||
ADOQueryMain.EnableControls;
|
||
end;
|
||
end;
|
||
|
||
procedure TfrmCustInput.FormDestroy(Sender: TObject);
|
||
begin
|
||
inherited;
|
||
frmCustInput := nil;
|
||
end;
|
||
|
||
procedure TfrmCustInput.BuyNamePropertiesButtonClick(Sender: TObject; AButtonIndex: Integer);
|
||
var
|
||
fsj: string;
|
||
FWZ: Integer;
|
||
begin
|
||
fsj := Trim(TcxButtonEdit(Sender).Hint);
|
||
FWZ := Pos('/', fsj);
|
||
try
|
||
frmZDYHelp := TfrmZDYHelp.Create(Application);
|
||
with frmZDYHelp do
|
||
begin
|
||
MainType := 'Cust';
|
||
flag := Copy(fsj, 1, FWZ - 1);
|
||
flagname := Copy(fsj, FWZ + 1, Length(fsj) - FWZ);
|
||
if ShowModal = 1 then
|
||
begin
|
||
TcxButtonEdit(Sender).Text := Trim(ClientDataSet1.fieldbyname('ZDYName').AsString);
|
||
end;
|
||
end;
|
||
finally
|
||
frmZDYHelp.Free;
|
||
end;
|
||
end;
|
||
|
||
procedure TfrmCustInput.CoBusinessTypeDblClick(Sender: TObject);
|
||
begin
|
||
TcxButtonEdit(Sender).Text := '';
|
||
TcxButtonEdit(Sender).Properties.LookupItems.Text := '';
|
||
end;
|
||
|
||
procedure TfrmCustInput.cxButtonEdit1PropertiesButtonClick(Sender: TObject; AButtonIndex: Integer);
|
||
begin
|
||
try
|
||
frmCompanySel := TfrmCompanySel.Create(Application);
|
||
with frmCompanySel do
|
||
begin
|
||
FCoType := '<27>ͻ<EFBFBD>';
|
||
if ShowModal = 1 then
|
||
begin
|
||
self.ParentCoName.Text := Trim(CDS_1.fieldbyname('CoAbbrName').AsString);
|
||
self.ParentCoName.Properties.LookupItems.Text := Trim(CDS_1.fieldbyname('CoCode').AsString);
|
||
end;
|
||
end;
|
||
finally
|
||
frmCompanySel.Free;
|
||
end;
|
||
end;
|
||
|
||
procedure TfrmCustInput.FormClose(Sender: TObject; var Action: TCloseAction);
|
||
begin
|
||
inherited;
|
||
Action := caFree;
|
||
end;
|
||
|
||
procedure TfrmCustInput.TBCloseClick(Sender: TObject);
|
||
begin
|
||
WriteCxGrid(trim(self.Caption) + 'TV2', Tv2, '<27><>Ӧ<EFBFBD>̹<EFBFBD><CCB9><EFBFBD>');
|
||
|
||
close;
|
||
end;
|
||
|
||
procedure TfrmCustInput.FormShow(Sender: TObject);
|
||
var
|
||
i: integer;
|
||
a: string;
|
||
begin
|
||
inherited;
|
||
ReadCxGrid(trim(self.caption) + 'Tv2', Tv2, '<27>ͻ<EFBFBD><CDBB><EFBFBD><EFBFBD><EFBFBD>');
|
||
InitGrid();
|
||
if trim(FCOID) = '' then
|
||
begin
|
||
with ADOQueryTemp do
|
||
begin
|
||
Close;
|
||
sql.Clear;
|
||
sql.Add(' exec P_BS_Com_Get_No @Str=''K'' ');
|
||
Open;
|
||
end;
|
||
CoCode.Text := trim(ADOQueryTemp.FieldByName('NewCoCode').asstring);
|
||
end;
|
||
//<2F><><EFBFBD><EFBFBD><EFBFBD>˵<EFBFBD>ҲҪ<D2B2><D2AA><EFBFBD>ı<DEB8><C4B1>棬<EFBFBD><E6A3AC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><DEB8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݣ<EFBFBD>ֻ<EFBFBD>ܸ<EFBFBD><DCB8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||
with ADOQueryTemp do
|
||
begin
|
||
Close;
|
||
sql.Clear;
|
||
sql.Add(' select * from BS_Company where CoId=' + quotedstr(FCoId));
|
||
Open;
|
||
end;
|
||
if trim(ADOQueryTemp.FieldByName('Status').asstring) = '1' then
|
||
begin
|
||
ScrollBox1.Enabled := False;
|
||
end;
|
||
end;
|
||
|
||
procedure TfrmCustInput.TBRafreshClick(Sender: TObject);
|
||
begin
|
||
InitGrid();
|
||
end;
|
||
|
||
function TfrmCustInput.SaveData(): Boolean;
|
||
var
|
||
MaxId, MaxSubId, FCoCode, FCCID: string;
|
||
begin
|
||
try
|
||
ADOQueryCmd.Connection.BeginTrans;
|
||
if Trim(FCOID) = '' then
|
||
begin
|
||
if GetLSNo(ADOQueryCmd, MaxId, 'CO', 'BS_Company', 4, 1) = False then
|
||
begin
|
||
Result := False;
|
||
ADOQueryCmd.Connection.RollbackTrans;
|
||
Application.MessageBox('ȡ<><C8A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʧ<EFBFBD>ܣ<EFBFBD>', '<27><>ʾ', 0);
|
||
Exit;
|
||
end;
|
||
|
||
if trim(CoCode.Text) = '' then
|
||
begin
|
||
with ADOQueryTemp do
|
||
begin
|
||
Close;
|
||
sql.Clear;
|
||
sql.Add(' exec P_BS_Com_Get_No @Str=''K'' ');
|
||
Open;
|
||
end;
|
||
CoCode.Text := trim(ADOQueryTemp.FieldByName('NewCoCode').asstring);
|
||
end;
|
||
end
|
||
else
|
||
begin
|
||
MaxId := Trim(FCOID);
|
||
end;
|
||
|
||
with ADOQueryCmd do
|
||
begin
|
||
Close;
|
||
SQL.Clear;
|
||
sql.Add('select * from BS_Company where COID=''' + Trim(FCOID) + '''');
|
||
Open;
|
||
end;
|
||
with ADOQueryCmd do
|
||
begin
|
||
if Trim(FCOID) = '' then
|
||
begin
|
||
Append;
|
||
FieldByName('FillId').Value := Trim(DCode);
|
||
FieldByName('Filler').Value := Trim(DName);
|
||
FieldByName('Saleser').Value := trim(DName);
|
||
FieldByName('SalesId').Value := trim(DCode);
|
||
FieldByName('Tallyer').Value := trim(DName);
|
||
FieldByName('TallyId').Value := trim(DCode);
|
||
FieldByName('status').Value := '0';
|
||
end
|
||
else
|
||
begin
|
||
Edit;
|
||
FieldByName('EditId').Value := Trim(DCode);
|
||
FieldByName('Editer').Value := Trim(DName);
|
||
FieldByName('Edittime').Value := SGetServerDateTime(ADOQueryTemp);
|
||
end;
|
||
FieldByName('COID').Value := Trim(MaxId);
|
||
RTSetsavedata(ADOQueryCmd, 'BS_Company', ScrollBox1, 2);
|
||
FieldByName('CoType').Value := '<27>ͻ<EFBFBD>';
|
||
FieldByName('ParentCoCode').Value := ParentCoName.Properties.LookupItems.Text;
|
||
Post;
|
||
end;
|
||
|
||
with ADOQueryCmd do
|
||
begin
|
||
Close;
|
||
sql.Clear;
|
||
sql.Add('select * from BS_Company where CoCode=' + quotedstr(trim(CoCode.Text)));
|
||
Open;
|
||
end;
|
||
if ADOQueryCmd.RecordCount > 1 then
|
||
begin
|
||
ADOQueryCmd.Connection.RollbackTrans;
|
||
Application.MessageBox('<27><><EFBFBD><EFBFBD><EFBFBD>ظ<EFBFBD>!', '<27><>ʾ', 0);
|
||
Exit;
|
||
end;
|
||
|
||
with ADOQueryCmd do
|
||
begin
|
||
Close;
|
||
sql.Clear;
|
||
sql.Add('select * from BS_Company where CoName=' + quotedstr(trim(CoName.Text)));
|
||
sql.Add(' and CoType=''<27>ͻ<EFBFBD>'' ');
|
||
Open;
|
||
end;
|
||
if ADOQueryCmd.RecordCount > 1 then
|
||
begin
|
||
ADOQueryCmd.Connection.RollbackTrans;
|
||
Application.MessageBox('<27><><EFBFBD><EFBFBD><EFBFBD>ظ<EFBFBD>!', '<27><>ʾ', 0);
|
||
Exit;
|
||
end;
|
||
|
||
with ADOQueryCmd do
|
||
begin
|
||
Close;
|
||
sql.Clear;
|
||
sql.Add('select * from BS_Company where CoAbbrName=' + quotedstr(trim(CoAbbrName.Text)));
|
||
sql.Add(' and CoType=''<27>ͻ<EFBFBD>'' ');
|
||
Open;
|
||
end;
|
||
if ADOQueryCmd.RecordCount > 1 then
|
||
begin
|
||
ADOQueryCmd.Connection.RollbackTrans;
|
||
Application.MessageBox('<27><><EFBFBD><EFBFBD><EFBFBD>ظ<EFBFBD>!', '<27><>ʾ', 0);
|
||
Exit;
|
||
end;
|
||
////////////// <20><>ϵ<EFBFBD><CFB5> ///////////////////
|
||
if not CDS_LXR.IsEmpty then
|
||
begin
|
||
with CDS_LXR do
|
||
begin
|
||
CDS_LXR.First;
|
||
while not Eof do
|
||
begin
|
||
FCCID := Trim(CDS_LXR.fieldbyname('CCID').AsString);
|
||
if Trim(FCCID) = '' then
|
||
begin
|
||
if GetLSNo(ADOQueryCmd, MaxSubId, 'CCS', 'BS_Company_contact', 4, 1) = False then
|
||
begin
|
||
ADOQueryCmd.Connection.RollbackTrans;
|
||
Application.MessageBox('ȡϵ<C8A1><CFB5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>IDʧ<44><CAA7>!', '<27><>ʾ', 0);
|
||
Exit;
|
||
end;
|
||
end
|
||
else
|
||
begin
|
||
MaxSubId := trim(FCCID);
|
||
end;
|
||
|
||
with ADOQueryCmd do
|
||
begin
|
||
Close;
|
||
sql.Clear;
|
||
sql.Add('select * from BS_Company_contact where CCID=' + quotedstr(Trim(MaxSubId)));
|
||
Open;
|
||
end;
|
||
with ADOQueryCmd do
|
||
begin
|
||
if Trim(FCCID) = '' then
|
||
begin
|
||
Append;
|
||
end
|
||
else
|
||
begin
|
||
Edit;
|
||
end;
|
||
FieldByName('CCID').Value := Trim(MaxSubId);
|
||
FieldByName('COID').Value := Trim(MaxId);
|
||
RTSetSaveDataCDS(ADOQueryCmd, Tv2, CDS_LXR, 'BS_Company_contact', 0);
|
||
Post;
|
||
end;
|
||
with CDS_LXR do
|
||
begin
|
||
Edit;
|
||
FieldByName('CCID').Value := Trim(MaxSubId);
|
||
Post;
|
||
end;
|
||
CDS_LXR.Next;
|
||
end;
|
||
end;
|
||
end;
|
||
////////////// <20><>ϵ<EFBFBD><CFB5> ///////////////////
|
||
//////////////// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ////////////////////////
|
||
// with ADOQueryCmd do
|
||
// begin
|
||
// Close;
|
||
// sql.Clear;
|
||
// sql.Add('exec P_Com_Up_Code @COID=' + quotedstr(Trim(MaxId)));
|
||
// ExecSQL;
|
||
// end;
|
||
//////////////// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ////////////////////////
|
||
ADOQueryCmd.Connection.CommitTrans;
|
||
FCCID := Trim(MaxSubId);
|
||
Result := True;
|
||
except
|
||
Result := false;
|
||
ADOQueryCmd.Connection.RollbackTrans;
|
||
Application.MessageBox('<27><><EFBFBD><EFBFBD><EFBFBD>쳣!', '<27><>ʾ', 0);
|
||
end;
|
||
end;
|
||
|
||
procedure TfrmCustInput.ToolButton3Click(Sender: TObject);
|
||
begin
|
||
|
||
if Trim(CoAbbrName.Text) = '' then
|
||
begin
|
||
Application.MessageBox('<27><><EFBFBD>Ʋ<EFBFBD><C6B2><EFBFBD>Ϊ<EFBFBD><CEAA>!', '<27><>ʾ', 0);
|
||
Exit;
|
||
end;
|
||
if Trim(CoName.Text) = '' then
|
||
begin
|
||
Application.MessageBox('<27><><EFBFBD>Ʋ<EFBFBD><C6B2><EFBFBD>Ϊ<EFBFBD><CEAA>!', '<27><>ʾ', 0);
|
||
Exit;
|
||
end;
|
||
if SaveData() then
|
||
begin
|
||
Application.MessageBox('<27><><EFBFBD><EFBFBD><EFBFBD>ɹ<EFBFBD>!', '<27><>ʾ', 0);
|
||
ModalResult := 1;
|
||
end;
|
||
end;
|
||
|
||
procedure TfrmCustInput.ToolButton6Click(Sender: TObject);
|
||
var
|
||
maxno: string;
|
||
begin
|
||
if GetLSNo(ADOQueryCmd, maxno, 'CC', 'BS_Company_contact', 4, 1) = False then
|
||
begin
|
||
Application.MessageBox('ȡϵ<C8A1><CFB5><EFBFBD><EFBFBD><EFBFBD><EFBFBD>IDʧ<44><CAA7>!', '<27><>ʾ', 0);
|
||
Exit;
|
||
end;
|
||
if CDS_LXR.IsEmpty then
|
||
begin
|
||
with CDS_LXR do
|
||
begin
|
||
Append;
|
||
fieldbyname('CCID').Value := trim(maxno);
|
||
fieldbyname('IsDefault').Value := true;
|
||
Post;
|
||
end;
|
||
end
|
||
else
|
||
begin
|
||
with CDS_LXR do
|
||
begin
|
||
Append;
|
||
fieldbyname('CCID').Value := trim(maxno);
|
||
fieldbyname('IsDefault').Value := false;
|
||
Post;
|
||
end;
|
||
end;
|
||
|
||
end;
|
||
|
||
procedure TfrmCustInput.ToolButton7Click(Sender: TObject);
|
||
begin
|
||
if CDS_LXR.IsEmpty then
|
||
Exit;
|
||
if Trim(CDS_LXR.fieldbyname('CCID').AsString) <> '' then
|
||
begin
|
||
if Application.MessageBox('ȷ<><C8B7>Ҫɾ<D2AA><C9BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>', '<27><>ʾ', 32 + 4) <> IDYES then
|
||
Exit;
|
||
with ADOQueryCmd do
|
||
begin
|
||
Close;
|
||
sql.Clear;
|
||
sql.Add('delete from BS_Company_contact where CCID=''' + Trim(CDS_LXR.fieldbyname('CCID').AsString) + '''');
|
||
ExecSQL;
|
||
end;
|
||
end;
|
||
CDS_LXR.Delete;
|
||
if CDS_LXR.IsEmpty = false then
|
||
begin
|
||
if CDS_LXR.Locate('IsDefault', true, []) = false then
|
||
begin
|
||
CDS_LXR.first;
|
||
CDS_LXR.edit;
|
||
CDS_LXR.FieldByName('IsDefault').value := true;
|
||
end;
|
||
end;
|
||
|
||
end;
|
||
|
||
procedure TfrmCustInput.ToolButton1Click(Sender: TObject);
|
||
begin
|
||
WriteCxGrid(trim(self.caption) + 'Tv2', Tv2, '<27>ͻ<EFBFBD><CDBB><EFBFBD><EFBFBD><EFBFBD>');
|
||
end;
|
||
|
||
procedure TfrmCustInput.ToolButton2Click(Sender: TObject);
|
||
var
|
||
DwFlag: string;
|
||
begin
|
||
DwFlag := trim(CDS_LXR.FieldByName('CCID').AsString);
|
||
if CDS_LXR.Locate('IsDefault', true, []) then
|
||
begin
|
||
CDS_LXR.edit;
|
||
CDS_LXR.FieldByName('IsDefault').value := false;
|
||
end;
|
||
if CDS_LXR.Locate('CCID', DwFlag, []) then
|
||
begin
|
||
CDS_LXR.edit;
|
||
CDS_LXR.FieldByName('IsDefault').value := true;
|
||
end;
|
||
|
||
end;
|
||
|
||
end.
|
||
|