📄 ap_enter_noinvoiceinvinorderh1.dfm
字号:
inherited Frm_Ap_Enter_NoInvoiceInvInOrderH1: TFrm_Ap_Enter_NoInvoiceInvInOrderH1
Left = 9
Top = 123
Caption = '历史未匹配入库单'
Windowstate = wsMaximized
OnDestroy = FormDestroy
PixelsPerInch = 96
TextHeight = 12
inherited Pnl_Title: TPanel
Caption = '历史未匹配入库单'
end
inherited Pnl_Head: TPanel
inherited Lbl_Condition: TLabel
Width = 24
Caption = '全部'
end
inherited Lbl_Order: TLabel
Width = 114
Caption = '供应商代码/单据日期'
end
end
inherited Pnl_Body: TPanel
inherited DBGridEh: TDBGridEh
FrozenCols = 4
Columns = <
Item
FieldName = 'VendorCode'
PickList.Strings = ()
Title.Alignment = taCenter
Title.Caption = '供应商代码'
Width = 87
KeyList.Strings = ()
end
Item
FieldName = 'VendorName'
PickList.Strings = ()
Title.Alignment = taCenter
Title.Caption = '供应商名称'
Width = 210
KeyList.Strings = ()
end
Item
FieldName = 'InvBillNo'
PickList.Strings = ()
Title.Alignment = taCenter
Title.Caption = '单据号'
Width = 86
KeyList.Strings = ()
end
Item
FieldName = 'InvBillDate'
PickList.Strings = ()
Title.Alignment = taCenter
Title.Caption = '单据日期'
Width = 67
KeyList.Strings = ()
end
Item
FieldName = 'InvBillMonth'
PickList.Strings = ()
Title.Alignment = taCenter
Title.Caption = '单据月份'
Width = 59
KeyList.Strings = ()
end
Item
FieldName = 'BillTypeCode'
PickList.Strings = ()
Title.Alignment = taCenter
Title.Caption = '单据类型代码'
Width = 93
KeyList.Strings = ()
end
Item
FieldName = 'BillTypeName'
PickList.Strings = ()
Title.Alignment = taCenter
Title.Caption = '单据类型名称'
Width = 82
KeyList.Strings = ()
end
Item
FieldName = 'InvBillTaxRate'
PickList.Strings = ()
Title.Alignment = taCenter
Title.Caption = '税率%'
Width = 42
KeyList.Strings = ()
end
Item
FieldName = 'WHCode'
PickList.Strings = ()
Title.Alignment = taCenter
Title.Caption = '仓库代码'
Width = 56
KeyList.Strings = ()
end
Item
FieldName = 'WHName'
PickList.Strings = ()
Title.Alignment = taCenter
Title.Caption = '仓库名称'
Width = 117
KeyList.Strings = ()
end
Item
FieldName = 'WhPositionCode'
PickList.Strings = ()
Title.Alignment = taCenter
Title.Caption = '货位代码'
Width = 63
KeyList.Strings = ()
end
Item
FieldName = 'WhPositionName'
PickList.Strings = ()
Title.Alignment = taCenter
Title.Caption = '货位名称'
Width = 171
KeyList.Strings = ()
end
Item
FieldName = 'CurrencyCode'
PickList.Strings = ()
Title.Alignment = taCenter
Title.Caption = '货币代码'
Width = 61
KeyList.Strings = ()
end
Item
FieldName = 'CurrencyName'
PickList.Strings = ()
Title.Alignment = taCenter
Title.Caption = '货币名称'
Width = 60
KeyList.Strings = ()
end
Item
FieldName = 'ExchRate'
PickList.Strings = ()
Title.Alignment = taCenter
Title.Caption = '汇率'
Width = 43
KeyList.Strings = ()
end
Item
FieldName = 'VendorBillNo'
PickList.Strings = ()
Title.Alignment = taCenter
Title.Caption = '送货单号'
Width = 99
KeyList.Strings = ()
end
Item
FieldName = 'WH_EmployeeCode'
PickList.Strings = ()
Title.Alignment = taCenter
Title.Caption = '系统建档人员代码'
Width = 107
KeyList.Strings = ()
end
Item
FieldName = 'EmployeeName'
PickList.Strings = ()
Title.Alignment = taCenter
Title.Caption = '系统建档人员名称'
Width = 103
KeyList.Strings = ()
end
Item
FieldName = 'InvBillCreateTime'
PickList.Strings = ()
Title.Alignment = taCenter
Title.Caption = '系统建档日期'
Width = 81
KeyList.Strings = ()
end
Item
FieldName = 'InvBillRemArk'
PickList.Strings = ()
Title.Alignment = taCenter
Title.Caption = '备注'
Width = 250
KeyList.Strings = ()
end>
end
end
inherited AdoQry_Tmp: TAdoQuery
Left = 701
Top = 3
end
inherited ActionList: TActionList
Left = 568
Top = 0
end
inherited AdoQry_Head: TAdoQuery
ConnectionString =
'Provider=SQLOLEDB.1;Password=mdrcmrm;Persist Security Info=True;' +
'User ID=mdrcmrm;Initial Catalog=Mrpii_Standard;Data Source=192.1' +
'68.0.100;Use procedure for Prepare=1;Auto Translate=True;Packet ' +
'Size=4096;Workstation ID=XYB'
SQL.Strings = (
' Select distinct InvInBill.WHCode'
' ,Warehouse.WHName'
' ,InvInBill.WhPositionCode'
' ,WhPosition.WhPositionName'
' ,InvInBill.InvBillNo'
' ,InvInBill.InvBillId'
' ,InvInBill.InvBillDate'
' ,InvInBill.PoNo'
' ,InvInBill.VendorCode'
' ,Vendor.VendorName'
' ,InvInBill.InvBillRemArk'
' ,InvInBill.VendorBillNo'
' ,InvInBill.BillTypeCode'
' ,BillType.BillTypeName'
' ,InvInBill.InvBillTaxRate'
' ,InvInBill.InvBillMonth'
' ,InvInBill.InvBillCreateTime'
' ,InvInBill.WH_EmployeeCode'
' ,Employee.EmployeeName'
' ,InvInBill.CurrencyCode'
' ,InvInBill.ExchRate'
' ,Currency.CurrencyName'
' From InvInBill join InvInBillline on InvInBill.InvBillid=in' +
'vInBillline.InvBillid'
' Join Warehouse On InvInBill.WHCode=Warehouse.WHCode'
' Join Vendor On InvInBill.VendorCode=Vendor.VendorCode'
' Join WhPosition On InvInBill.WhPositionCode=WhPosition.WHPo' +
'sitionCode'
' join BillType on InvInBill.BillTypeCode=BillType.BillTypeco' +
'de'
' join Employee on InvInBill.WH_EmployeeCode=Employee.Employe' +
'eCode'
' join Currency on InvInBill.CurrencyCode=Currency.CurrencyCo' +
'de'
' And InvInBill.WHCode=WhPosition.WHCode ')
Left = 600
Top = 1
object AdoQry_HeadWHCode: TStringField
FieldName = 'WHCode'
Origin = 'InvInBill'
Size = 4
end
object AdoQry_HeadWHName: TStringField
FieldName = 'WHName'
Origin = 'Warehouse'
Size = 40
end
object AdoQry_HeadWhPositionCode: TStringField
FieldName = 'WhPositionCode'
Origin = 'InvInBill'
Size = 4
end
object AdoQry_HeadWhPositionName: TStringField
FieldName = 'WhPositionName'
Origin = 'WhPosition'
Size = 40
end
object AdoQry_HeadInvBillNo: TStringField
FieldName = 'InvBillNo'
Origin = 'InvInBill'
Size = 10
end
object AdoQry_HeadInvBillId: TFloatField
FieldName = 'InvBillId'
Origin = 'InvInBill'
ReadOnly = True
end
object AdoQry_HeadInvBillDate: TDateTimeField
FieldName = 'InvBillDate'
Origin = 'InvInBill'
end
object AdoQry_HeadPoNo: TStringField
FieldName = 'PoNo'
Origin = 'InvInBill'
Size = 16
end
object AdoQry_HeadVendorCode: TStringField
FieldName = 'VendorCode'
Origin = 'InvInBill'
Size = 12
end
object AdoQry_HeadVendorName: TStringField
FieldName = 'VendorName'
Origin = 'Vendor'
Size = 60
end
object AdoQry_HeadInvBillRemArk: TStringField
FieldName = 'InvBillRemArk'
Origin = 'InvInBill'
Size = 250
end
object AdoQry_HeadVendorBillNo: TStringField
FieldName = 'VendorBillNo'
Origin = 'InvInBill'
Size = 50
end
object AdoQry_HeadBillTypeCode: TStringField
FieldName = 'BillTypeCode'
Origin = 'InvInBill'
Size = 4
end
object AdoQry_HeadBillTypeName: TStringField
FieldName = 'BillTypeName'
Origin = 'BillType'
end
object AdoQry_HeadInvBillTaxRate: TFloatField
FieldName = 'InvBillTaxRate'
Origin = 'InvInBill'
end
object AdoQry_HeadInvBillMonth: TStringField
FieldName = 'InvBillMonth'
Origin = 'InvInBill'
FixedChAr = True
Size = 7
end
object AdoQry_HeadInvBillCreateTime: TDateTimeField
FieldName = 'InvBillCreateTime'
Origin = 'InvInBill'
end
object AdoQry_HeadWH_EmployeeCode: TStringField
FieldName = 'WH_EmployeeCode'
Origin = 'InvInBill'
Size = 30
end
object AdoQry_HeadEmployeeName: TStringField
FieldName = 'EmployeeName'
Origin = 'Employee'
Size = 60
end
object AdoQry_HeadCurrencyCode: TStringField
FieldName = 'CurrencyCode'
Origin = 'InvInBill'
Size = 3
end
object AdoQry_HeadCurrencyName: TStringField
FieldName = 'CurrencyName'
Origin = 'Currency'
Size = 30
end
object AdoQry_HeadExchRate: TFloatField
FieldName = 'ExchRate'
Origin = 'InvInBill'
end
end
inherited DataSource: TDataSource
Left = 632
Top = 1
end
inherited PopuPmenu: TPopuPmenu
Left = 664
Top = 1
end
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -