You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
717 B
34 lines
717 B
1 month ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.ComponentModel;
|
||
|
using System.Data;
|
||
|
using System.Drawing;
|
||
|
using System.Text;
|
||
|
using System.Windows.Forms;
|
||
|
|
||
|
namespace Stone.WinModule.BasicData
|
||
|
{
|
||
|
public partial class frmTTZ_Rule : Stone.WinModule.BasicData.frmBaseMain
|
||
|
{
|
||
|
public frmTTZ_Rule()
|
||
|
{
|
||
|
InitializeComponent();
|
||
|
|
||
|
this.tlbInput.Visible = false;
|
||
|
this.tlbInput.Enabled = false;
|
||
|
}
|
||
|
|
||
|
private void frmTTZ_Rule_Load(object sender, EventArgs e)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public override void Search(string code)
|
||
|
{
|
||
|
base.Search(code);
|
||
|
|
||
|
strWhere += $" or [cartype] like '%{code}%'";
|
||
|
}
|
||
|
}
|
||
|
}
|