You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DONGSHENG6/信息资源/u_info_price_brother_query.pas

124 lines
3.9 KiB
Plaintext

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

unit u_info_price_brother_query;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, BusinessSkinForm, bsSkinCtrls, wwdbdatetimepicker, StdCtrls,
RxLookup, wwdblook;
type
Tfrm_info_price_brother_query = class(TForm)
Label124: TLabel;
Label20: TLabel;
Label13: TLabel;
Label10: TLabel;
Label11: TLabel;
Label5: TLabel;
Label8: TLabel;
Label9: TLabel;
Label21: TLabel;
wwDBLookupCombo3: TwwDBLookupCombo;
wwDBLookupCombo52: TwwDBLookupCombo;
RxDBLookupCombo5: TRxDBLookupCombo;
wwDBDateTimePicker1: TwwDBDateTimePicker;
wwDBDateTimePicker2: TwwDBDateTimePicker;
wwDBDateTimePicker4: TwwDBDateTimePicker;
wwDBDateTimePicker3: TwwDBDateTimePicker;
bsSkinButton1: TbsSkinButton;
bsSkinButton10: TbsSkinButton;
bsSkinButton5: TbsSkinButton;
RxDBLookupCombo2: TRxDBLookupCombo;
RxDBLookupCombo20: TRxDBLookupCombo;
bsBusinessSkinForm1: TbsBusinessSkinForm;
Label1: TLabel;
RxDBLookupCombo1: TRxDBLookupCombo;
procedure bsSkinButton5Click(Sender: TObject);
procedure bsSkinButton10Click(Sender: TObject);
procedure bsSkinButton1Click(Sender: TObject);
procedure RxDBLookupCombo1KeyPress(Sender: TObject; var Key: Char);
private
{ Private declarations }
public
{ Public declarations }
end;
var
frm_info_price_brother_query: Tfrm_info_price_brother_query;
implementation
uses u_info_plan_brother, my_sys_function, u_data_share;
{$R *.dfm}
procedure Tfrm_info_price_brother_query.bsSkinButton5Click(
Sender: TObject);
begin
close;
end;
procedure Tfrm_info_price_brother_query.bsSkinButton10Click(
Sender: TObject);
begin
RxDBLookupCombo1.ClearValue;
RxDBLookupCombo5.ClearValue;
wwDBDateTimePicker1.text:='';
wwDBDateTimePicker2.text:='';
wwDBDateTimePicker3.text:='';
wwDBDateTimePicker4.text:='';
wwDBLookupCombo3.text:='';
wwDBLookupCombo52.text:='';
RxDBLookupCombo2.ClearValue;
RxDBLookupCombo20.ClearValue;
end;
procedure Tfrm_info_price_brother_query.bsSkinButton1Click(
Sender: TObject);
var
str:widestring;
begin
str:='SELECT * FROM t_price_brother where (1=1) ' ; //+open_data('3004','¼<><C2BC><EFBFBD><EFBFBD>','no','no','no','no');
if RxDBLookupCombo1.DisplayValue<>''then
str:=str+' and <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˾='+''''+RxDBLookupCombo1.DisplayValue+'''';
if RxDBLookupCombo5.DisplayValue<>''then
str:=str+' and ¼<><C2BC><EFBFBD><EFBFBD>='+''''+RxDBLookupCombo5.DisplayValue+'''';
if wwDBDateTimePicker1.text<>''then
str:=str+' and <20><>Ч<EFBFBD><D0A7><EFBFBD><EFBFBD>>='+''''+wwDBDateTimePicker1.text+'''';
if wwDBDateTimePicker2.text<>''then
str:=str+' and <20><>Ч<EFBFBD><D0A7><EFBFBD><EFBFBD><='+''''+wwDBDateTimePicker2.text+'''';
if wwDBDateTimePicker3.text<>''then
str:=str+' and ¼<><C2BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>>='+''''+wwDBDateTimePicker3.text+'''';
if wwDBDateTimePicker4.text<>''then
str:=str+' and ¼<><C2BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><='+''''+wwDBDateTimePicker4.text+'''';
if wwDBLookupCombo3.text<>''then
str:=str+' and <20><><EFBFBD>˸<EFBFBD> like '+''''+'%'+wwDBLookupCombo3.text+'%'+'''';
if wwDBLookupCombo52.text<>''then
str:=str+' and Ŀ<>ĸ<EFBFBD> like '+''''+'%'+wwDBLookupCombo52.text+'%'+'''';
if RxDBLookupCombo2.DisplayValue<>''then
str:=str+' and <20><><EFBFBD><EFBFBD>˾='+''''+RxDBLookupCombo2.DisplayValue+'''';
if RxDBLookupCombo20.DisplayValue<>''then
str:=str+' and <20><><EFBFBD><EFBFBD>='+''''+RxDBLookupCombo20.DisplayValue+'''';
frm_info_price_brother.t_price_brother.close;
frm_info_price_brother.t_price_brother.sql.Clear;
frm_info_price_brother.t_price_brother.sql.add(str);
frm_info_price_brother.t_price_brother.sql.add(' order by <20>˼۱<CBBC><DBB1><EFBFBD>');
frm_info_price_brother.t_price_brother.open;
if frm_info_price_brother.t_price_brother.isempty then
showmessage('û<>м<EFBFBD><D0BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ<EFBFBD><CFA2><EFBFBD><EFBFBD>')
else
close;
end;
procedure Tfrm_info_price_brother_query.RxDBLookupCombo1KeyPress(
Sender: TObject; var Key: Char);
begin
if key=#13 then
begin
key:=#0;
frm_info_price_brother_query.bsSkinButton1Click(Sender);
end;
end;
end.