示例#1
0
        private void LoadFSItemInfo(string PN)
        {
            FS_Item item = x.LoadItemNo(PN);

            if (item.ItemNo != null)
            {
                _tag.ItemNumber       = item.ItemNo;
                _tag.ItemDescription  = item.ItemDesc;
                _tag.ItemUM           = item.ItemUM;
                _tag.ItemReference1   = item.ItemReference1;
                _tag.ItemNumber_FSKey = item.ItemNumber_FSKey;
                LoadTagInfo(_tag);
            }
            else
            {
                _tag.ItemNumber = "";
                MessageBox.Show("Part No was not foud in the Item Master", "ERROR", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }