📄 custrpt.pas
字号:
unit CustRpt;
interface
uses SysUtils, Windows, Messages, Classes, Graphics, Controls,
StdCtrls, ExtCtrls, Forms, Quickrpt, QRCtrls, patterns;
type
TCustomerByInvoiceReport = class(TQuickRep)
DetailBand1: TQRBand;
QRExpr1: TQRExpr;
QRDBText2: TQRDBText;
QRDBText3: TQRDBText;
QRDBText4: TQRDBText;
QRDBText5: TQRDBText;
ColumnHeaderBand1: TQRBand;
QRLabel4: TQRLabel;
QRLabel5: TQRLabel;
QRLabel6: TQRLabel;
QRLabel7: TQRLabel;
QRLabel8: TQRLabel;
QRLabel9: TQRLabel;
TitleBand1: TQRBand;
QRLabel1: TQRLabel;
QRLabel2: TQRLabel;
QRLabel3: TQRLabel;
QRDBText1: TQRDBText;
procedure QRDBText1Print(sender: TObject; var Value: string);
private
public
end;
TControllerInvoiceReport = class(TController)
protected
procedure DoCommand(Command: string; const args: string=''); override;
public
end;
var
CustomerByInvoiceReport: TCustomerByInvoiceReport;
implementation
{$R *.DFM}
uses DataMod, commandlist;
procedure TCustomerByInvoiceReport.QRDBText1Print(sender: TObject;
var Value: string);
begin
with TMastData.getInstance do
Value := DateToStr(CustByLastInvQueryLastInvoiceDate.Value);
end;
procedure TControllerInvoiceReport.DoCommand(Command: string; const args: string='');
begin
if Command = CMD_RPT_CUSTOMER then
begin
with TMastData.GetInstance.CustByLastInvQuery do
begin
Open;
if lowercase(args) = 'preview' then
CustomerByInvoiceReport.Preview
else
CustomerByInvoiceReport.Print;
Close;
end;
end;
end;
initialization
ControlCenter.RegController(TControllerInvoiceReport.Create);
CustomerByInvoiceReport := TCustomerByInvoiceReport.create(application);
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -