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.
84 lines
2.0 KiB
Plaintext
84 lines
2.0 KiB
Plaintext
unit u_op_kuaidi_shen_do;
|
|
|
|
interface
|
|
|
|
uses
|
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
|
Dialogs, BusinessSkinForm, DBCtrls, StdCtrls, Mask, wwdbedit, Wwdotdot,
|
|
Wwdbcomb, RxLookup, bsSkinCtrls;
|
|
|
|
type
|
|
Tfrm_op_kuaidi_shen_do = class(TForm)
|
|
bsBusinessSkinForm1: TbsBusinessSkinForm;
|
|
Label53: TLabel;
|
|
RxDBLookupCombo5: TRxDBLookupCombo;
|
|
Label50: TLabel;
|
|
wwDBComboBox1: TwwDBComboBox;
|
|
Label51: TLabel;
|
|
DBEdit3: TDBEdit;
|
|
Label52: TLabel;
|
|
DBEdit16: TDBEdit;
|
|
bsSkinButton1: TbsSkinButton;
|
|
bsSkinButton5: TbsSkinButton;
|
|
procedure bsSkinButton1Click(Sender: TObject);
|
|
procedure FormShow(Sender: TObject);
|
|
procedure bsSkinButton5Click(Sender: TObject);
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
frm_op_kuaidi_shen_do: Tfrm_op_kuaidi_shen_do;
|
|
|
|
implementation
|
|
|
|
uses u_op_kuaidi_check, u_data_share, u_main, my_sys_chat;
|
|
|
|
{$R *.dfm}
|
|
|
|
procedure Tfrm_op_kuaidi_shen_do.bsSkinButton1Click(Sender: TObject);
|
|
begin
|
|
if DBEdit16.text='' then
|
|
begin
|
|
showmessage('请输入快递编号!!');
|
|
exit;
|
|
end;
|
|
if RxDBLookupCombo5.DisplayValue='' then
|
|
begin
|
|
showmessage('请输入快递公司!!');
|
|
exit;
|
|
end;
|
|
if wwDBComboBox1.text='' then
|
|
begin
|
|
showmessage('请输入付费方式!!');
|
|
exit;
|
|
end;
|
|
if DBEdit3.text='' then
|
|
begin
|
|
showmessage('请输入金额!!');
|
|
exit;
|
|
end;
|
|
frm_op_kuaidi_check.t_op_kuaidi.edit;
|
|
frm_op_kuaidi_check.t_op_kuaidi['申请状态']:='确认发出';
|
|
frm_op_kuaidi_check.t_op_kuaidi['审核人']:=employee;
|
|
frm_op_kuaidi_check.t_op_kuaidi['审核日期']:=now;
|
|
frm_op_kuaidi_check.t_op_kuaidi.post;
|
|
Send_invocie_check_check('快递确认发出,发送编号:'+frm_op_kuaidi_check.t_op_kuaidi.fieldbyname('发送编号').asstring
|
|
,frm_op_kuaidi_check.t_op_kuaidi.fieldbyname('申请人').asstring,'35');
|
|
close;
|
|
end;
|
|
|
|
procedure Tfrm_op_kuaidi_shen_do.FormShow(Sender: TObject);
|
|
begin
|
|
frm_data_share.t_crm_client_kuaidi.requery;
|
|
end;
|
|
|
|
procedure Tfrm_op_kuaidi_shen_do.bsSkinButton5Click(Sender: TObject);
|
|
begin
|
|
close;
|
|
end;
|
|
|
|
end.
|