|
|
|
|
unit u_op_customername_change;
|
|
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
uses
|
|
|
|
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
|
|
|
|
Dialogs, StdCtrls, wwdbdatetimepicker, bsSkinCtrls, BusinessSkinForm, DB,ADODB,
|
|
|
|
|
Mask, DBCtrls, wwdblook, RxLookup;
|
|
|
|
|
|
|
|
|
|
type
|
|
|
|
|
Tfrm_op_customername_change = class(TForm)
|
|
|
|
|
Label1: TLabel;
|
|
|
|
|
bsBusinessSkinForm1: TbsBusinessSkinForm;
|
|
|
|
|
bsSkinButton1: TbsSkinButton;
|
|
|
|
|
bsSkinButton5: TbsSkinButton;
|
|
|
|
|
DataSource1: TDataSource;
|
|
|
|
|
RxDBLookupCombo2: TRxDBLookupCombo;
|
|
|
|
|
procedure bsSkinButton5Click(Sender: TObject);
|
|
|
|
|
procedure bsSkinButton1Click(Sender: TObject);
|
|
|
|
|
private
|
|
|
|
|
{ Private declarations }
|
|
|
|
|
public
|
|
|
|
|
{ Public declarations }
|
|
|
|
|
BSTYPE:string;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
var
|
|
|
|
|
frm_op_customername_change: Tfrm_op_customername_change;
|
|
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
|
|
uses my_sys_function, u_op_seae_vessel, u_op_seae, u_data_share,
|
|
|
|
|
u_op_seae_edi_data;
|
|
|
|
|
|
|
|
|
|
{$R *.dfm}
|
|
|
|
|
|
|
|
|
|
procedure Tfrm_op_customername_change.bsSkinButton5Click(Sender: TObject);
|
|
|
|
|
begin
|
|
|
|
|
close;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure Tfrm_op_customername_change.bsSkinButton1Click(Sender: TObject);
|
|
|
|
|
var
|
|
|
|
|
aQuery:TAdoQuery;
|
|
|
|
|
i:Integer;
|
|
|
|
|
book1:Tbookmark;
|
|
|
|
|
dsstr,PostUrl:string;
|
|
|
|
|
begin
|
|
|
|
|
if RxDBLookupCombo2.DisplayValues[1]='' then
|
|
|
|
|
begin
|
|
|
|
|
showmessage('<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>µ<EFBFBD>ί<EFBFBD>е<EFBFBD>λ<EFBFBD><CEBB><EFBFBD><EFBFBD>');
|
|
|
|
|
exit;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
frm_op_seae_edi_data.t_op_seae.DisableControls;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for i:=0 to frm_op_seae_edi_data.dxDBGrid1.SelectedCount-1 do
|
|
|
|
|
begin
|
|
|
|
|
frm_op_seae_edi_data.t_op_seae.GotoBookmark(pointer(frm_op_seae_edi_data.dxDBGrid1.selectedrows[i]));
|
|
|
|
|
frm_op_seae_edi_data.t_op_seae.Edit;
|
|
|
|
|
frm_op_seae_edi_data.t_op_seae['ί<>е<EFBFBD>λ']:=RxDBLookupCombo2.DisplayValues[1];
|
|
|
|
|
frm_op_seae_edi_data.t_op_seae.Post;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
finally
|
|
|
|
|
frm_op_seae_edi_data.t_op_seae.EnableControls;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
book1:=frm_op_seae.t_op_seae.GetBookmark;
|
|
|
|
|
frm_op_seae.t_op_seae.Refresh;
|
|
|
|
|
frm_op_seae.t_op_seae.GotoBookmark(book1);
|
|
|
|
|
|
|
|
|
|
showmessage('<27><><EFBFBD>ijɹ<C4B3><C9B9><EFBFBD><EFBFBD><EFBFBD>');
|
|
|
|
|
close;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
end.
|