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.
40 lines
817 B
40 lines
817 B
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.JisData
|
|
{
|
|
public partial class frmPJISItem : Stone.WinModule.BasicData.frmBaseMain
|
|
{
|
|
public frmPJISItem()
|
|
{
|
|
InitializeComponent();
|
|
|
|
base.ReadOnly();
|
|
|
|
|
|
}
|
|
|
|
private void frmPJISItem_Load(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
public override void Search(string code)
|
|
{
|
|
if(code != "")
|
|
{
|
|
strWhere = $"[ProductionNo]='{code}'";
|
|
strWhere += $" or [PartNumber]='{code}'";
|
|
}
|
|
else
|
|
{
|
|
strWhere = "1=1";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|