😎1.新增BOM对比页面
2.调整页面ui 3.调整url请求ip取值方式
This commit is contained in:
parent
1f58a3518f
commit
ea326ec8ea
1046
StockInQuiry/BomComparisonForm.Designer.cs
generated
Normal file
1046
StockInQuiry/BomComparisonForm.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
805
StockInQuiry/BomComparisonForm.cs
Normal file
805
StockInQuiry/BomComparisonForm.cs
Normal file
@ -0,0 +1,805 @@
|
||||
using Newtonsoft.Json;
|
||||
using StockInQuiry.Dto;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Net.Http;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
using Excel = Microsoft.Office.Interop.Excel;
|
||||
|
||||
namespace StockInQuiry
|
||||
{
|
||||
public partial class BomComparisonForm : Form
|
||||
{
|
||||
private string _environment;
|
||||
public BomComparisonForm(string materialCode,string environment)
|
||||
{
|
||||
_environment = environment;
|
||||
InitializeComponent();
|
||||
initialization(materialCode);
|
||||
}
|
||||
|
||||
private async Task initialization(string materialCode)
|
||||
{
|
||||
if (string.IsNullOrEmpty(materialCode))
|
||||
{
|
||||
return;
|
||||
}
|
||||
materialCodetextBox1.Text = materialCode;
|
||||
materialCodetextBox2.Text = materialCode;
|
||||
await GetVersion("MaterialCode1", materialCode);
|
||||
await GetVersion("MaterialCode2", materialCode);
|
||||
|
||||
var materialCode1 = materialCodetextBox1.Text;
|
||||
var materialCode2 = materialCodetextBox2.Text;
|
||||
var version1 = versionComboBox1.Text;
|
||||
var version2 = versionComboBox2.Text;
|
||||
|
||||
bool condition1 = !string.IsNullOrEmpty(materialCode1) && !string.IsNullOrEmpty(version1);
|
||||
bool condition2 = !string.IsNullOrEmpty(materialCode2) && !string.IsNullOrEmpty(version2);
|
||||
|
||||
if (condition1 == false && condition2 == false)
|
||||
{
|
||||
// 两组输入都不满足要求,进入此逻辑
|
||||
MessageBox.Show("两组物料编码和版本均为空,请输入至少一组有效的物料编码和版本。");
|
||||
return;
|
||||
}
|
||||
|
||||
if (condition1 == true)
|
||||
{
|
||||
GetBom("MaterialCode1", materialCode1, version1);
|
||||
}
|
||||
|
||||
if (condition2 == true)
|
||||
{
|
||||
GetBom("MaterialCode2", materialCode2, version2);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
private void SimulateButtonClick()
|
||||
{
|
||||
// 假设 getVersionbutton 是你的按钮控件
|
||||
getBombutton.PerformClick();
|
||||
}
|
||||
|
||||
private void getVersionbutton_Click(object sender, EventArgs e)
|
||||
{
|
||||
var materialCode1 = materialCodetextBox1.Text;
|
||||
var materialCode2 = materialCodetextBox2.Text;
|
||||
|
||||
if (string.IsNullOrEmpty(materialCode1) && string.IsNullOrEmpty(materialCode2))
|
||||
{
|
||||
MessageBox.Show("两组物料编码均为空,请输入至少一组有效的物料编码。");
|
||||
return;
|
||||
}
|
||||
|
||||
if (!string.IsNullOrEmpty(materialCode1))
|
||||
{
|
||||
GetVersion("MaterialCode1", materialCode1);
|
||||
dataGridView1.Rows.Clear();// 清空现有行
|
||||
dataGridView3.Rows.Clear();// 清空现有行
|
||||
}
|
||||
|
||||
|
||||
if (!string.IsNullOrEmpty(materialCode2))
|
||||
{
|
||||
GetVersion("MaterialCode2", materialCode2);
|
||||
dataGridView2.Rows.Clear();// 清空现有行
|
||||
dataGridView3.Rows.Clear();// 清空现有行
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
private async Task<List<MaterialVersionsData>> GetVersion(string type, string materialCode)
|
||||
{
|
||||
string url = _environment + "api/stockInquiry/pdmMaterialVersions/" + materialCode;
|
||||
using (HttpClient client = new HttpClient())
|
||||
{
|
||||
try
|
||||
{
|
||||
HttpResponseMessage response = await client.GetAsync(url);
|
||||
response.EnsureSuccessStatusCode();
|
||||
|
||||
string content = await response.Content.ReadAsStringAsync();
|
||||
MaterialVersions result = JsonConvert.DeserializeObject<MaterialVersions>(content);
|
||||
var data = result.result;
|
||||
if (type == "MaterialCode1")
|
||||
{
|
||||
versionComboBox1.Items.Clear(); // 清空现有项
|
||||
foreach (var item in data)
|
||||
{
|
||||
versionComboBox1.Items.Add($"{item.Version_index} {item.Version}");
|
||||
}
|
||||
if (versionComboBox1.Items.Count > 0)
|
||||
{
|
||||
versionComboBox1.SelectedIndex = 0;
|
||||
}
|
||||
}
|
||||
if (type == "MaterialCode2")
|
||||
{
|
||||
versionComboBox2.Items.Clear(); // 清空现有项
|
||||
foreach (var item in data)
|
||||
{
|
||||
versionComboBox2.Items.Add($"{item.Version_index} {item.Version}");
|
||||
}
|
||||
if (versionComboBox2.Items.Count > 0)
|
||||
{
|
||||
versionComboBox2.SelectedIndex = 0;
|
||||
}
|
||||
}
|
||||
return data;
|
||||
|
||||
}
|
||||
catch (HttpRequestException e)
|
||||
{
|
||||
MessageBox.Show($"Request failed: {e.Message}");
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void getBombutton_Click(object sender, EventArgs e)
|
||||
{
|
||||
var materialCode1 = materialCodetextBox1.Text;
|
||||
var materialCode2 = materialCodetextBox2.Text;
|
||||
var version1 = versionComboBox1.Text;
|
||||
var version2 = versionComboBox2.Text;
|
||||
|
||||
bool condition1 = !string.IsNullOrEmpty(materialCode1) && !string.IsNullOrEmpty(version1);
|
||||
bool condition2 = !string.IsNullOrEmpty(materialCode2) && !string.IsNullOrEmpty(version2);
|
||||
|
||||
if (condition1 == false && condition2 == false)
|
||||
{
|
||||
// 两组输入都不满足要求,进入此逻辑
|
||||
MessageBox.Show("两组物料编码和版本均为空,请输入至少一组有效的物料编码和版本。");
|
||||
return;
|
||||
}
|
||||
|
||||
if (condition1 == true)
|
||||
{
|
||||
GetBom("MaterialCode1", materialCode1, version1);
|
||||
}
|
||||
|
||||
if (condition2 == true)
|
||||
{
|
||||
GetBom("MaterialCode2", materialCode2, version2);
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
private async void GetBom(string type, string materialCode, string version)
|
||||
{
|
||||
string url = _environment + "api/stockInquiry/getPdmMaterialBom/" + materialCode + '/' + version;
|
||||
|
||||
using (HttpClient client = new HttpClient())
|
||||
{
|
||||
try
|
||||
{
|
||||
|
||||
HttpResponseMessage response = await client.GetAsync(url);
|
||||
response.EnsureSuccessStatusCode();
|
||||
|
||||
string content = await response.Content.ReadAsStringAsync();
|
||||
|
||||
PdmMaterialBom result = JsonConvert.DeserializeObject<PdmMaterialBom>(content);
|
||||
var data = result.result;
|
||||
if (type == "MaterialCode1")
|
||||
{
|
||||
// 清空现有行
|
||||
dataGridView1.Rows.Clear();
|
||||
|
||||
// 重新添加数据行
|
||||
foreach (var item in data)
|
||||
{
|
||||
int index = dataGridView1.Rows.Add();
|
||||
dataGridView1.Rows[index].Cells["物料编码1"].Value = item.PartNumber;
|
||||
dataGridView1.Rows[index].Cells["名称1"].Value = item.Description;
|
||||
dataGridView1.Rows[index].Cells["数量1"].Value = item.QtyManual;
|
||||
dataGridView1.Rows[index].Cells["代号1"].Value = item.fld005747;
|
||||
dataGridView1.Rows[index].Cells["品牌1"].Value = item.fld005590;
|
||||
dataGridView1.Rows[index].Cells["材质1"].Value = item.fld005587;
|
||||
dataGridView1.Rows[index].Cells["表面处理1"].Value = item.fld006325;
|
||||
dataGridView1.Rows[index].Cells["单位1"].Value = item.fld005744;
|
||||
dataGridView1.Rows[index].Cells["修订版1"].Value = item.childVersion;
|
||||
dataGridView1.Rows[index].Cells["库存1"].Value = item.fld006928;
|
||||
dataGridView1.Rows[index].Cells["预留1"].Value = item.fld006929;
|
||||
dataGridView1.Rows[index].Cells["未清采购申请数量1"].Value = item.fld006930;
|
||||
dataGridView1.Rows[index].Cells["未清采购订单数量1"].Value = item.fld006931;
|
||||
}
|
||||
}
|
||||
|
||||
if (type == "MaterialCode2")
|
||||
{
|
||||
// 清空现有行
|
||||
dataGridView2.Rows.Clear();
|
||||
|
||||
// 重新添加数据行
|
||||
foreach (var item in data)
|
||||
{
|
||||
int index = dataGridView2.Rows.Add();
|
||||
dataGridView2.Rows[index].Cells["物料编码2"].Value = item.PartNumber;
|
||||
dataGridView2.Rows[index].Cells["名称2"].Value = item.Description;
|
||||
dataGridView2.Rows[index].Cells["数量2"].Value = item.QtyManual;
|
||||
dataGridView2.Rows[index].Cells["代号2"].Value = item.fld005747;
|
||||
dataGridView2.Rows[index].Cells["品牌2"].Value = item.fld005590;
|
||||
dataGridView2.Rows[index].Cells["材质2"].Value = item.fld005587;
|
||||
dataGridView2.Rows[index].Cells["表面处理2"].Value = item.fld006325;
|
||||
dataGridView2.Rows[index].Cells["单位2"].Value = item.fld005744;
|
||||
dataGridView2.Rows[index].Cells["修订版2"].Value = item.childVersion;
|
||||
dataGridView2.Rows[index].Cells["库存2"].Value = item.fld006928;
|
||||
dataGridView2.Rows[index].Cells["预留2"].Value = item.fld006929;
|
||||
dataGridView2.Rows[index].Cells["未清采购申请数量2"].Value = item.fld006930;
|
||||
dataGridView2.Rows[index].Cells["未清采购订单数量2"].Value = item.fld006931;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
catch (HttpRequestException e)
|
||||
{
|
||||
MessageBox.Show($"请求失败: {e.Message}");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void materialCodetextBox1_TextChanged(object sender, EventArgs e)
|
||||
{
|
||||
versionComboBox1.Items.Clear(); // 清空现有项
|
||||
|
||||
dataGridView1.Rows.Clear();// 清空现有行
|
||||
dataGridView3.Rows.Clear();// 清空现有行
|
||||
}
|
||||
|
||||
private void materialCodetextBox2_TextChanged(object sender, EventArgs e)
|
||||
{
|
||||
versionComboBox2.Items.Clear(); // 清空现有项
|
||||
|
||||
dataGridView2.Rows.Clear();// 清空现有行
|
||||
dataGridView3.Rows.Clear();// 清空现有行
|
||||
}
|
||||
|
||||
private void comparisonButton_Click(object sender, EventArgs e)
|
||||
{
|
||||
List<PdmMaterialBomData> list1 = new List<PdmMaterialBomData>();
|
||||
List<PdmMaterialBomData> list2 = new List<PdmMaterialBomData>();
|
||||
List<ComparedBomResult> list3 = new List<ComparedBomResult>();
|
||||
|
||||
foreach (DataGridViewRow row in dataGridView1.Rows)
|
||||
{
|
||||
if (!row.IsNewRow)
|
||||
{
|
||||
PdmMaterialBomData item = new PdmMaterialBomData();
|
||||
|
||||
// 假设 OrderIndex 不需要从 DataGridView 中获取,可根据实际情况修改
|
||||
item.OrderIndex = 0;
|
||||
|
||||
item.PartNumber = row.Cells["物料编码1"].Value?.ToString();
|
||||
item.Description = row.Cells["名称1"].Value?.ToString();
|
||||
|
||||
if (float.TryParse(row.Cells["数量1"].Value?.ToString(), out float qtyManual))
|
||||
{
|
||||
item.QtyManual = qtyManual;
|
||||
}
|
||||
|
||||
item.fld005747 = row.Cells["代号1"].Value?.ToString();
|
||||
item.fld005590 = row.Cells["品牌1"].Value?.ToString();
|
||||
item.fld005587 = row.Cells["材质1"].Value?.ToString();
|
||||
item.fld006325 = row.Cells["表面处理1"].Value?.ToString();
|
||||
item.fld005744 = row.Cells["单位1"].Value?.ToString();
|
||||
|
||||
item.childVersion = row.Cells["修订版1"].Value?.ToString();
|
||||
|
||||
//if (int.TryParse(row.Cells["修订版1"].Value?.ToString(), out int childVersion))
|
||||
//{
|
||||
// item.childVersion = childVersion;
|
||||
//}
|
||||
|
||||
list1.Add(item);
|
||||
}
|
||||
}
|
||||
|
||||
foreach (DataGridViewRow row in dataGridView2.Rows)
|
||||
{
|
||||
if (!row.IsNewRow)
|
||||
{
|
||||
PdmMaterialBomData item = new PdmMaterialBomData();
|
||||
|
||||
// 假设 OrderIndex 不需要从 DataGridView 中获取,可根据实际情况修改
|
||||
item.OrderIndex = 0;
|
||||
|
||||
item.PartNumber = row.Cells["物料编码2"].Value?.ToString();
|
||||
item.Description = row.Cells["名称2"].Value?.ToString();
|
||||
|
||||
if (float.TryParse(row.Cells["数量2"].Value?.ToString(), out float qtyManual))
|
||||
{
|
||||
item.QtyManual = qtyManual;
|
||||
}
|
||||
|
||||
item.fld005747 = row.Cells["代号2"].Value?.ToString();
|
||||
item.fld005590 = row.Cells["品牌2"].Value?.ToString();
|
||||
item.fld005587 = row.Cells["材质2"].Value?.ToString();
|
||||
item.fld006325 = row.Cells["表面处理2"].Value?.ToString();
|
||||
item.fld005744 = row.Cells["单位2"].Value?.ToString();
|
||||
|
||||
item.childVersion = row.Cells["修订版2"].Value?.ToString();
|
||||
|
||||
//if (int.TryParse(row.Cells["修订版2"].Value?.ToString(), out int childVersion))
|
||||
//{
|
||||
// item.childVersion = childVersion;
|
||||
//}
|
||||
|
||||
list2.Add(item);
|
||||
}
|
||||
}
|
||||
|
||||
foreach (var item in list1)
|
||||
{
|
||||
ComparedBomResult ComparedBomResultData = new ComparedBomResult();
|
||||
|
||||
//BOM对比-修改
|
||||
var bomChange = list2.Where(x => x.PartNumber == item.PartNumber).FirstOrDefault();
|
||||
if (bomChange != null)
|
||||
{
|
||||
//数量未变更,版本未变更
|
||||
if (item.QtyManual == bomChange.QtyManual && item.childVersion == bomChange.childVersion)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
ComparedBomResultData.PartNumber = item.PartNumber;
|
||||
ComparedBomResultData.Description = item.Description;
|
||||
ComparedBomResultData.fld005747 = item.fld005747;
|
||||
ComparedBomResultData.fld005590 = item.fld005590;
|
||||
ComparedBomResultData.fld005587 = item.fld005587;
|
||||
ComparedBomResultData.fld006325 = item.fld006325;
|
||||
ComparedBomResultData.fld005744 = item.fld005744;
|
||||
ComparedBomResultData.fld006928 = item.fld006928;
|
||||
ComparedBomResultData.fld006929 = item.fld006929;
|
||||
ComparedBomResultData.fld006930 = item.fld006930;
|
||||
ComparedBomResultData.fld006931 = item.fld006931;
|
||||
//数量、版本都存在变更
|
||||
if (item.QtyManual != bomChange.QtyManual && item.childVersion != bomChange.childVersion)
|
||||
{
|
||||
ComparedBomResultData.changeType = "修改";
|
||||
ComparedBomResultData.isVersionChange = "是";
|
||||
|
||||
//ComparedBomResultData.preCompareQtyManual = item.QtyManual;
|
||||
//ComparedBomResultData.postCompareQtyManual = bomChange.QtyManual;
|
||||
ComparedBomResultData.preCompareQtyManual = bomChange.QtyManual;
|
||||
ComparedBomResultData.postCompareQtyManual = item.QtyManual;
|
||||
|
||||
//ComparedBomResultData.preCompareVersion = item.childVersion;
|
||||
//ComparedBomResultData.postCompareVersion = bomChange.childVersion;
|
||||
ComparedBomResultData.preCompareVersion = bomChange.childVersion;
|
||||
ComparedBomResultData.postCompareVersion = item.childVersion;
|
||||
|
||||
}
|
||||
//数量存在变更,版本未变更
|
||||
if (item.QtyManual != bomChange.QtyManual && item.childVersion == bomChange.childVersion)
|
||||
{
|
||||
ComparedBomResultData.changeType = "修改";
|
||||
|
||||
//ComparedBomResultData.preCompareQtyManual = item.QtyManual;
|
||||
//ComparedBomResultData.postCompareQtyManual = bomChange.QtyManual;
|
||||
ComparedBomResultData.preCompareQtyManual = bomChange.QtyManual;
|
||||
ComparedBomResultData.postCompareQtyManual = item.QtyManual;
|
||||
|
||||
//ComparedBomResultData.preCompareVersion = item.childVersion;
|
||||
//ComparedBomResultData.postCompareVersion = bomChange.childVersion;
|
||||
ComparedBomResultData.preCompareVersion = bomChange.childVersion;
|
||||
ComparedBomResultData.postCompareVersion = item.childVersion;
|
||||
}
|
||||
//数量未变更,版本存在变更
|
||||
if (item.QtyManual == bomChange.QtyManual && item.childVersion != bomChange.childVersion)
|
||||
{
|
||||
ComparedBomResultData.changeType = "修改";
|
||||
ComparedBomResultData.isVersionChange = "是";
|
||||
|
||||
//ComparedBomResultData.preCompareQtyManual = item.QtyManual;
|
||||
//ComparedBomResultData.postCompareQtyManual = bomChange.QtyManual;
|
||||
ComparedBomResultData.preCompareQtyManual = bomChange.QtyManual;
|
||||
ComparedBomResultData.postCompareQtyManual = item.QtyManual;
|
||||
|
||||
//ComparedBomResultData.preCompareVersion = item.childVersion;
|
||||
//ComparedBomResultData.postCompareVersion = bomChange.childVersion;
|
||||
ComparedBomResultData.preCompareVersion = bomChange.childVersion;
|
||||
ComparedBomResultData.postCompareVersion = item.childVersion;
|
||||
}
|
||||
list3.Add(ComparedBomResultData);
|
||||
}
|
||||
|
||||
//BOM对比-新增
|
||||
if (bomChange == null)
|
||||
{
|
||||
ComparedBomResultData.PartNumber = item.PartNumber;
|
||||
ComparedBomResultData.Description = item.Description;
|
||||
ComparedBomResultData.fld005747 = item.fld005747;
|
||||
ComparedBomResultData.fld005590 = item.fld005590;
|
||||
ComparedBomResultData.fld005587 = item.fld005587;
|
||||
ComparedBomResultData.fld006325 = item.fld006325;
|
||||
ComparedBomResultData.fld005744 = item.fld005744;
|
||||
ComparedBomResultData.fld006928 = item.fld006928;
|
||||
ComparedBomResultData.fld006929 = item.fld006929;
|
||||
ComparedBomResultData.fld006930 = item.fld006930;
|
||||
ComparedBomResultData.fld006931 = item.fld006931;
|
||||
|
||||
//ComparedBomResultData.preCompareQtyManual = item.QtyManual;
|
||||
//ComparedBomResultData.preCompareVersion = item.childVersion;
|
||||
ComparedBomResultData.postCompareQtyManual = item.QtyManual;
|
||||
ComparedBomResultData.postCompareVersion = item.childVersion;
|
||||
|
||||
|
||||
ComparedBomResultData.changeType = "新增";
|
||||
list3.Add(ComparedBomResultData);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
//BOM对比-删除
|
||||
foreach (var item2 in list2)
|
||||
{
|
||||
ComparedBomResult ComparedBomResultData = new ComparedBomResult();
|
||||
var bomChange = list1.Where(x => x.PartNumber == item2.PartNumber).FirstOrDefault();
|
||||
if (bomChange == null)
|
||||
{
|
||||
ComparedBomResultData.PartNumber = item2.PartNumber;
|
||||
ComparedBomResultData.Description = item2.Description;
|
||||
ComparedBomResultData.fld005747 = item2.fld005747;
|
||||
ComparedBomResultData.fld005590 = item2.fld005590;
|
||||
ComparedBomResultData.fld005587 = item2.fld005587;
|
||||
ComparedBomResultData.fld006325 = item2.fld006325;
|
||||
ComparedBomResultData.fld005744 = item2.fld005744;
|
||||
ComparedBomResultData.fld006928 = item2.fld006928;
|
||||
ComparedBomResultData.fld006929 = item2.fld006929;
|
||||
ComparedBomResultData.fld006930 = item2.fld006930;
|
||||
ComparedBomResultData.fld006931 = item2.fld006931;
|
||||
//ComparedBomResultData.preCompareQtyManual = item2.QtyManual;
|
||||
//ComparedBomResultData.preCompareVersion = item2.childVersion;
|
||||
ComparedBomResultData.preCompareQtyManual = item2.QtyManual;
|
||||
ComparedBomResultData.preCompareVersion = item2.childVersion;
|
||||
|
||||
ComparedBomResultData.changeType = "删除";
|
||||
list3.Add(ComparedBomResultData);
|
||||
}
|
||||
|
||||
}
|
||||
if (list3.Count != 0)
|
||||
{
|
||||
// 清空现有行
|
||||
dataGridView3.Rows.Clear();
|
||||
|
||||
// 重新添加数据行
|
||||
foreach (var item in list3)
|
||||
{
|
||||
int index = dataGridView3.Rows.Add();
|
||||
dataGridView3.Rows[index].Cells["物料编码3"].Value = item.PartNumber;
|
||||
dataGridView3.Rows[index].Cells["名称3"].Value = item.Description;
|
||||
|
||||
dataGridView3.Rows[index].Cells["代号3"].Value = item.fld005747;
|
||||
dataGridView3.Rows[index].Cells["品牌3"].Value = item.fld005590;
|
||||
dataGridView3.Rows[index].Cells["材质3"].Value = item.fld005587;
|
||||
dataGridView3.Rows[index].Cells["表面处理3"].Value = item.fld006325;
|
||||
dataGridView3.Rows[index].Cells["单位3"].Value = item.fld005744;
|
||||
|
||||
dataGridView3.Rows[index].Cells["库存3"].Value = item.fld006928;
|
||||
dataGridView3.Rows[index].Cells["预留3"].Value = item.fld006929;
|
||||
dataGridView3.Rows[index].Cells["未清采购申请数量3"].Value = item.fld006930;
|
||||
dataGridView3.Rows[index].Cells["未清采购订单数量3"].Value = item.fld006931;
|
||||
|
||||
|
||||
dataGridView3.Rows[index].Cells["对比前数量3"].Value = item.preCompareQtyManual;
|
||||
dataGridView3.Rows[index].Cells["对比后数量3"].Value = item.postCompareQtyManual;
|
||||
dataGridView3.Rows[index].Cells["对比前修订版3"].Value = item.preCompareVersion;
|
||||
dataGridView3.Rows[index].Cells["对比后修订版3"].Value = item.postCompareVersion;
|
||||
|
||||
dataGridView3.Rows[index].Cells["对比类型3"].Value = item.changeType;
|
||||
dataGridView3.Rows[index].Cells["是否版本变更3"].Value = item.isVersionChange;
|
||||
|
||||
// 设置行颜色
|
||||
if (item.changeType == "新增")
|
||||
{
|
||||
System.Drawing.Color customColor = System.Drawing.Color.FromArgb(122, 244, 122);
|
||||
dataGridView3.Rows[index].DefaultCellStyle.BackColor = customColor;
|
||||
}
|
||||
|
||||
if (item.changeType == "修改")
|
||||
{
|
||||
System.Drawing.Color customColor = System.Drawing.Color.FromArgb(255, 192, 128);
|
||||
dataGridView3.Rows[index].DefaultCellStyle.BackColor = customColor;
|
||||
}
|
||||
|
||||
if (item.changeType == "删除")
|
||||
{
|
||||
System.Drawing.Color customColor = System.Drawing.Color.FromArgb(244, 122, 122);
|
||||
dataGridView3.Rows[index].DefaultCellStyle.BackColor = customColor;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void versionComboBox1_TextChanged(object sender, EventArgs e)
|
||||
{
|
||||
dataGridView1.Rows.Clear();// 清空现有行
|
||||
dataGridView3.Rows.Clear();// 清空现有行
|
||||
}
|
||||
|
||||
private void versionComboBox2_TextChanged(object sender, EventArgs e)
|
||||
{
|
||||
dataGridView2.Rows.Clear();// 清空现有行
|
||||
dataGridView3.Rows.Clear();// 清空现有行
|
||||
}
|
||||
|
||||
private void dataGridView1_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e)
|
||||
{
|
||||
//自动编号,与数据无关
|
||||
Rectangle rectangle = new Rectangle(e.RowBounds.Location.X,
|
||||
e.RowBounds.Location.Y,
|
||||
dataGridView1.RowHeadersWidth - 4,
|
||||
e.RowBounds.Height);
|
||||
TextRenderer.DrawText(e.Graphics,
|
||||
(e.RowIndex + 1).ToString(),
|
||||
dataGridView1.RowHeadersDefaultCellStyle.Font,
|
||||
rectangle,
|
||||
dataGridView1.RowHeadersDefaultCellStyle.ForeColor,
|
||||
TextFormatFlags.VerticalCenter | TextFormatFlags.Right);
|
||||
}
|
||||
|
||||
private void dataGridView2_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e)
|
||||
{
|
||||
//自动编号,与数据无关
|
||||
Rectangle rectangle = new Rectangle(e.RowBounds.Location.X,
|
||||
e.RowBounds.Location.Y,
|
||||
dataGridView1.RowHeadersWidth - 4,
|
||||
e.RowBounds.Height);
|
||||
TextRenderer.DrawText(e.Graphics,
|
||||
(e.RowIndex + 1).ToString(),
|
||||
dataGridView1.RowHeadersDefaultCellStyle.Font,
|
||||
rectangle,
|
||||
dataGridView1.RowHeadersDefaultCellStyle.ForeColor,
|
||||
TextFormatFlags.VerticalCenter | TextFormatFlags.Right);
|
||||
}
|
||||
|
||||
private void dataGridView3_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e)
|
||||
{
|
||||
//自动编号,与数据无关
|
||||
Rectangle rectangle = new Rectangle(e.RowBounds.Location.X,
|
||||
e.RowBounds.Location.Y,
|
||||
dataGridView1.RowHeadersWidth - 4,
|
||||
e.RowBounds.Height);
|
||||
TextRenderer.DrawText(e.Graphics,
|
||||
(e.RowIndex + 1).ToString(),
|
||||
dataGridView1.RowHeadersDefaultCellStyle.Font,
|
||||
rectangle,
|
||||
dataGridView1.RowHeadersDefaultCellStyle.ForeColor,
|
||||
TextFormatFlags.VerticalCenter | TextFormatFlags.Right);
|
||||
}
|
||||
|
||||
private void ExportToExcel(DataGridView dataGridView)
|
||||
{
|
||||
// 创建 Excel 应用程序对象
|
||||
Excel.Application excelApp = new Excel.Application();
|
||||
Excel.Workbook workbook = excelApp.Workbooks.Add();
|
||||
Excel.Worksheet worksheet = workbook.ActiveSheet;
|
||||
|
||||
try
|
||||
{
|
||||
// 导出列标题
|
||||
for (int i = 0; i < dataGridView.Columns.Count; i++)
|
||||
{
|
||||
worksheet.Cells[1, i + 1] = dataGridView.Columns[i].HeaderText;
|
||||
// 设置列标题字体为微软雅黑
|
||||
worksheet.Cells[1, i + 1].Font.Name = "微软雅黑";
|
||||
}
|
||||
|
||||
// 导出数据行
|
||||
for (int i = 0; i < dataGridView.Rows.Count; i++)
|
||||
{
|
||||
for (int j = 0; j < dataGridView.Columns.Count; j++)
|
||||
{
|
||||
if (dataGridView.Rows[i].Cells[j].Value != null)
|
||||
{
|
||||
worksheet.Cells[i + 2, j + 1] = dataGridView.Rows[i].Cells[j].Value.ToString();
|
||||
// 设置单元格格式为文本,防止数字显示为科学计数法
|
||||
worksheet.Cells[i + 2, j + 1].NumberFormat = "@";
|
||||
// 设置单元格字体为微软雅黑
|
||||
worksheet.Cells[i + 2, j + 1].Font.Name = "微软雅黑";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 获取数据区域
|
||||
Excel.Range range = worksheet.Range[worksheet.Cells[1, 1], worksheet.Cells[dataGridView.Rows.Count + 1, dataGridView.Columns.Count]];
|
||||
|
||||
// 设置边框样式
|
||||
range.Borders.LineStyle = Excel.XlLineStyle.xlContinuous;
|
||||
range.Borders.Weight = Excel.XlBorderWeight.xlThin;
|
||||
|
||||
// 自动调整列宽
|
||||
range.EntireColumn.AutoFit();
|
||||
|
||||
// 保存 Excel 文件
|
||||
SaveFileDialog saveFileDialog = new SaveFileDialog();
|
||||
saveFileDialog.Filter = "Excel 文件 (*.xlsx)|*.xlsx";
|
||||
saveFileDialog.Title = "保存 Excel 文件";
|
||||
if (saveFileDialog.ShowDialog() == DialogResult.OK)
|
||||
{
|
||||
workbook.SaveAs(saveFileDialog.FileName);
|
||||
MessageBox.Show("Bom对比结果,已成功导出到 Excel 文件!");
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
MessageBox.Show("导出数据时发生错误:" + ex.Message);
|
||||
}
|
||||
finally
|
||||
{
|
||||
// 释放资源
|
||||
workbook.Close();
|
||||
excelApp.Quit();
|
||||
System.Runtime.InteropServices.Marshal.ReleaseComObject(worksheet);
|
||||
System.Runtime.InteropServices.Marshal.ReleaseComObject(workbook);
|
||||
System.Runtime.InteropServices.Marshal.ReleaseComObject(excelApp);
|
||||
}
|
||||
}
|
||||
|
||||
//private void ExportToExcel(DataGridView dataGridView)
|
||||
//{
|
||||
// // 创建一个新的工作簿
|
||||
// IWorkbook workbook = new XSSFWorkbook();
|
||||
// // 创建一个工作表
|
||||
// ISheet sheet = workbook.CreateSheet("Sheet1");
|
||||
|
||||
// try
|
||||
// {
|
||||
// // 导出列标题
|
||||
// IRow headerRow = sheet.CreateRow(0);
|
||||
// for (int i = 0; i < dataGridView.Columns.Count; i++)
|
||||
// {
|
||||
// ICell cell = headerRow.CreateCell(i);
|
||||
// cell.SetCellValue(dataGridView.Columns[i].HeaderText);
|
||||
// }
|
||||
|
||||
// // 导出数据行
|
||||
// for (int i = 0; i < dataGridView.Rows.Count; i++)
|
||||
// {
|
||||
// IRow dataRow = sheet.CreateRow(i + 1);
|
||||
// for (int j = 0; j < dataGridView.Columns.Count; j++)
|
||||
// {
|
||||
// if (dataGridView.Rows[i].Cells[j].Value != null)
|
||||
// {
|
||||
// ICell cell = dataRow.CreateCell(j);
|
||||
// cell.SetCellValue(dataGridView.Rows[i].Cells[j].Value.ToString());
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
|
||||
// // 设置边框样式
|
||||
// for (int rowIndex = 0; rowIndex <= dataGridView.Rows.Count; rowIndex++)
|
||||
// {
|
||||
// IRow row = sheet.GetRow(rowIndex);
|
||||
// if (row != null)
|
||||
// {
|
||||
// for (int cellIndex = 0; cellIndex < dataGridView.Columns.Count; cellIndex++)
|
||||
// {
|
||||
// ICell cell = row.GetCell(cellIndex);
|
||||
// if (cell != null)
|
||||
// {
|
||||
// ICellStyle style = workbook.CreateCellStyle();
|
||||
// style.BorderTop = BorderStyle.Thin;
|
||||
// style.BorderLeft = BorderStyle.Thin;
|
||||
// style.BorderRight = BorderStyle.Thin;
|
||||
// style.BorderBottom = BorderStyle.Thin;
|
||||
// cell.CellStyle = style;
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
|
||||
// // 自动调整列宽
|
||||
// for (int i = 0; i < dataGridView.Columns.Count; i++)
|
||||
// {
|
||||
// sheet.AutoSizeColumn(i);
|
||||
// }
|
||||
|
||||
// // 保存 Excel 文件
|
||||
// SaveFileDialog saveFileDialog = new SaveFileDialog();
|
||||
// saveFileDialog.Filter = "Excel 文件 (*.xlsx)|*.xlsx";
|
||||
// saveFileDialog.Title = "保存 Excel 文件";
|
||||
// if (saveFileDialog.ShowDialog() == DialogResult.OK)
|
||||
// {
|
||||
// using (FileStream fs = new FileStream(saveFileDialog.FileName, FileMode.Create, FileAccess.Write))
|
||||
// {
|
||||
// workbook.Write(fs);
|
||||
// }
|
||||
// MessageBox.Show("数据已成功导出到 Excel 文件!");
|
||||
// }
|
||||
// }
|
||||
// catch (Exception ex)
|
||||
// {
|
||||
// MessageBox.Show("导出数据时发生错误:" + ex.Message);
|
||||
// }
|
||||
// finally
|
||||
// {
|
||||
// // 关闭工作簿
|
||||
// workbook.Close();
|
||||
// }
|
||||
//}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
//private void ExportToExcel(DataGridView dataGridView)
|
||||
//{
|
||||
// using (ExcelPackage package = new ExcelPackage())
|
||||
// {
|
||||
// ExcelWorksheet worksheet = package.Workbook.Worksheets.Add("Sheet1");
|
||||
|
||||
// try
|
||||
// {
|
||||
// // 导出列标题
|
||||
// for (int i = 0; i < dataGridView.Columns.Count; i++)
|
||||
// {
|
||||
// worksheet.Cells[1, i + 1].Value = dataGridView.Columns[i].HeaderText;
|
||||
// }
|
||||
|
||||
// // 导出数据行
|
||||
// for (int i = 0; i < dataGridView.Rows.Count; i++)
|
||||
// {
|
||||
// for (int j = 0; j < dataGridView.Columns.Count; j++)
|
||||
// {
|
||||
// if (dataGridView.Rows[i].Cells[j].Value != null)
|
||||
// {
|
||||
// worksheet.Cells[i + 2, j + 1].Value = dataGridView.Rows[i].Cells[j].Value.ToString();
|
||||
// // 设置单元格格式为文本,防止数字显示为科学计数法
|
||||
// worksheet.Cells[i + 2, j + 1].Style.Numberformat.Format = "@";
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
|
||||
// // 获取数据区域
|
||||
// var range = worksheet.Cells[1, 1, dataGridView.Rows.Count + 1, dataGridView.Columns.Count];
|
||||
|
||||
// // 设置边框样式
|
||||
// range.Style.Border.Top.Style = OfficeOpenXml.Style.ExcelBorderStyle.Thin;
|
||||
// range.Style.Border.Left.Style = OfficeOpenXml.Style.ExcelBorderStyle.Thin;
|
||||
// range.Style.Border.Right.Style = OfficeOpenXml.Style.ExcelBorderStyle.Thin;
|
||||
// range.Style.Border.Bottom.Style = OfficeOpenXml.Style.ExcelBorderStyle.Thin;
|
||||
|
||||
// // 自动调整列宽
|
||||
// worksheet.Cells.AutoFitColumns();
|
||||
|
||||
// // 保存 Excel 文件
|
||||
// SaveFileDialog saveFileDialog = new SaveFileDialog();
|
||||
// saveFileDialog.Filter = "Excel 文件 (*.xlsx)|*.xlsx";
|
||||
// saveFileDialog.Title = "保存 Excel 文件";
|
||||
// if (saveFileDialog.ShowDialog() == DialogResult.OK)
|
||||
// {
|
||||
// FileInfo file = new FileInfo(saveFileDialog.FileName);
|
||||
// package.SaveAs(file);
|
||||
// MessageBox.Show("数据已成功导出到 Excel 文件!");
|
||||
// }
|
||||
// }
|
||||
// catch (Exception ex)
|
||||
// {
|
||||
// MessageBox.Show("导出数据时发生错误:" + ex.Message);
|
||||
// }
|
||||
// }
|
||||
//}
|
||||
|
||||
|
||||
|
||||
private void button1_Click(object sender, EventArgs e)
|
||||
{
|
||||
ExportToExcel(dataGridView3);
|
||||
}
|
||||
}
|
||||
}
|
782
StockInQuiry/BomComparisonForm.resx
Normal file
782
StockInQuiry/BomComparisonForm.resx
Normal file
@ -0,0 +1,782 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<metadata name="物料编码1.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="名称1.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="数量1.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="代号1.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="品牌1.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="材质1.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="表面处理1.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="单位1.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="修订版1.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="库存1.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="预留1.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="未清采购申请数量1.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="未清采购订单数量1.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="物料编码3.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="名称3.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="对比前修订版3.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="对比后修订版3.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="对比前数量3.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="对比后数量3.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="对比类型3.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="是否版本变更3.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="单位3.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="代号3.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="品牌3.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="材质3.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="表面处理3.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="库存3.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="预留3.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="未清采购订单数量3.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="未清采购申请数量3.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="物料编码2.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="名称2.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="数量2.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="代号2.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="品牌2.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="材质2.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="表面处理2.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="单位2.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="修订版2.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="库存2.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="预留2.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="未清采购申请数量2.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<metadata name="未清采购订单数量2.UserAddedColumn" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||
<data name="pictureBox4.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
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
|
||||
v4aysusou1H8+lhSXIiy0hLmOxH3K05QWZS/XgyJyocUCU1f1dLSeviDxgPS5nQWFhbNXl5eoAVu6EGs
|
||||
Cv+pwHrJVKk0z8PX15cyMOrp6Zl19OjRJXl5eZ+eP3/+Lzt27NA0MzO7ZmRkxKEmkN5eIqDo/d426Dls
|
||||
obNvO50j04FWyKLPNNiTCt7Ozo6rp6fXYmpqes/Pzy9p48aNDrm5uTIXL178lMyHlpaWfxEt828Tmv9S
|
||||
VVX17xTyycvL+4g2BExISLB0d3fP1tHReaSvr9/r7OKEdZvX4mR+Hh4+FQ4OvVFcjrtl93Dvxn1cv0b1
|
||||
d+M1+YpvFOF6GZVZCW6UXceN0jLm2vWyktega6WvfkPHmzfJ/iW7n5psYb4pz0S+GzeEZhURj0hI9UER
|
||||
E4rzvvGcEOqZWL169S5tbW3O/v37Xxe4aIW8bVAlsk08ZYI04ashPVOfffZZlaKiYrGEhEShhITEXQMD
|
||||
g2Gao0F/R80haSDR+71tsCYGqxHZc1QJrFNGHiCdpw5/msLp7e3N2LRKSkqD4uLizbKysg90dXWvOjk5
|
||||
HQkJCdkSFxfnv3XrVvsdO3aY7Nq1y3jPnj1Ghw4dMkxMTDTavXu3I/V3e3p6plpbW5/S1tYulJeXfyAu
|
||||
Lt6ooKAwYG5uPkXBZVodtaDgCu49LEdhaQEuFVxFQUkZSm89QFH5A1wpuY1LxaUovFmGwlvFKL5RiOs3
|
||||
SJsV4UbJdZQXleNGMTXHN1BMBH2FrwgpPJbe+Ko1YPJcWITSkuu4eaOcITBrklDdETlpTRojI6M7b6wB
|
||||
Sct4enret7CwwMWLF5kbs0b3TwkiElUekZ2+UybpjaK+XhoKRUY1DQolG5HCINStxNouVPGi93vbECWj
|
||||
6DnWFKDzREgCBWSp94S6K2nBRjItXFxcsHTp0hl7e/sJc3PzMUNDQ+oR6rOwsOg1Njbu1dXV7dPR0ek3
|
||||
NDQcsrCw4Do4OMw4OzuDWiPSKrThDdmd5N1S/oUOXiHKbwg11fXymyi5fQ9XbtzFmcIyXCgtR8n9u7ha
|
||||
XojC8qsoKbuM0tKruFFSzDTL5cX3UFZyD9dLylFUWoai0usMSkRARLx6rYAhF5Pnkuuvce1qwetOCSIo
|
||||
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
|
||||
</value>
|
||||
</data>
|
||||
</root>
|
90
StockInQuiry/BomCostInquiryForm.Designer.cs
generated
90
StockInQuiry/BomCostInquiryForm.Designer.cs
generated
@ -29,19 +29,20 @@
|
||||
private void InitializeComponent()
|
||||
{
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(BomCostInquiryForm));
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
this.InExecutionlabel = new System.Windows.Forms.Label();
|
||||
this.panel16 = new System.Windows.Forms.Panel();
|
||||
this.pictureBox1 = new System.Windows.Forms.PictureBox();
|
||||
this.pictureBox2 = new System.Windows.Forms.PictureBox();
|
||||
this.pictureBox3 = new System.Windows.Forms.PictureBox();
|
||||
this.dataGridView1 = new System.Windows.Forms.DataGridView();
|
||||
this.panel1 = new System.Windows.Forms.Panel();
|
||||
this.label1 = new System.Windows.Forms.Label();
|
||||
this.物料编码 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||
this.物料名称 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||
this.价格 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||
this.更新日期 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||
this.状态 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||
this.panel1 = new System.Windows.Forms.Panel();
|
||||
this.label1 = new System.Windows.Forms.Label();
|
||||
this.panel16.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
|
||||
@ -55,9 +56,10 @@
|
||||
this.InExecutionlabel.AutoSize = true;
|
||||
this.InExecutionlabel.Font = new System.Drawing.Font("微软雅黑", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.InExecutionlabel.ForeColor = System.Drawing.Color.Red;
|
||||
this.InExecutionlabel.Location = new System.Drawing.Point(503, 297);
|
||||
this.InExecutionlabel.Location = new System.Drawing.Point(335, 198);
|
||||
this.InExecutionlabel.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
|
||||
this.InExecutionlabel.Name = "InExecutionlabel";
|
||||
this.InExecutionlabel.Size = new System.Drawing.Size(411, 46);
|
||||
this.InExecutionlabel.Size = new System.Drawing.Size(274, 31);
|
||||
this.InExecutionlabel.TabIndex = 20;
|
||||
this.InExecutionlabel.Text = "加载中,请勿操作.... ... ..";
|
||||
//
|
||||
@ -69,40 +71,41 @@
|
||||
this.panel16.Controls.Add(this.pictureBox1);
|
||||
this.panel16.Controls.Add(this.pictureBox2);
|
||||
this.panel16.Controls.Add(this.pictureBox3);
|
||||
this.panel16.Location = new System.Drawing.Point(14, 620);
|
||||
this.panel16.Location = new System.Drawing.Point(9, 413);
|
||||
this.panel16.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.panel16.Name = "panel16";
|
||||
this.panel16.Size = new System.Drawing.Size(1384, 76);
|
||||
this.panel16.Size = new System.Drawing.Size(924, 52);
|
||||
this.panel16.TabIndex = 23;
|
||||
//
|
||||
// pictureBox1
|
||||
//
|
||||
this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
|
||||
this.pictureBox1.Location = new System.Drawing.Point(1140, 13);
|
||||
this.pictureBox1.Location = new System.Drawing.Point(760, 9);
|
||||
this.pictureBox1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.pictureBox1.Name = "pictureBox1";
|
||||
this.pictureBox1.Size = new System.Drawing.Size(52, 52);
|
||||
this.pictureBox1.Size = new System.Drawing.Size(35, 35);
|
||||
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
|
||||
this.pictureBox1.TabIndex = 11;
|
||||
this.pictureBox1.TabStop = false;
|
||||
//
|
||||
// pictureBox2
|
||||
//
|
||||
this.pictureBox2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.pictureBox2.Image = global::StockInQuiry.Properties.Resources.公司;
|
||||
this.pictureBox2.Location = new System.Drawing.Point(1207, 12);
|
||||
this.pictureBox2.Location = new System.Drawing.Point(805, 8);
|
||||
this.pictureBox2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.pictureBox2.Name = "pictureBox2";
|
||||
this.pictureBox2.Size = new System.Drawing.Size(163, 50);
|
||||
this.pictureBox2.Size = new System.Drawing.Size(109, 33);
|
||||
this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
|
||||
this.pictureBox2.TabIndex = 12;
|
||||
this.pictureBox2.TabStop = false;
|
||||
//
|
||||
// pictureBox3
|
||||
//
|
||||
this.pictureBox3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.pictureBox3.Image = global::StockInQuiry.Properties.Resources.启威星logo;
|
||||
this.pictureBox3.Location = new System.Drawing.Point(9, 13);
|
||||
this.pictureBox3.Location = new System.Drawing.Point(13, 9);
|
||||
this.pictureBox3.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.pictureBox3.Name = "pictureBox3";
|
||||
this.pictureBox3.Size = new System.Drawing.Size(100, 50);
|
||||
this.pictureBox3.Size = new System.Drawing.Size(67, 33);
|
||||
this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
|
||||
this.pictureBox3.TabIndex = 13;
|
||||
this.pictureBox3.TabStop = false;
|
||||
@ -124,36 +127,18 @@
|
||||
this.更新日期,
|
||||
this.状态});
|
||||
this.dataGridView1.GridColor = System.Drawing.SystemColors.InactiveBorder;
|
||||
this.dataGridView1.Location = new System.Drawing.Point(14, 94);
|
||||
this.dataGridView1.Location = new System.Drawing.Point(9, 63);
|
||||
this.dataGridView1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.dataGridView1.Name = "dataGridView1";
|
||||
this.dataGridView1.ReadOnly = true;
|
||||
this.dataGridView1.RowHeadersVisible = false;
|
||||
this.dataGridView1.RowHeadersWidth = 62;
|
||||
dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.dataGridView1.RowsDefaultCellStyle = dataGridViewCellStyle2;
|
||||
this.dataGridView1.RowTemplate.Height = 30;
|
||||
this.dataGridView1.Size = new System.Drawing.Size(1384, 520);
|
||||
this.dataGridView1.Size = new System.Drawing.Size(923, 347);
|
||||
this.dataGridView1.TabIndex = 22;
|
||||
//
|
||||
// panel1
|
||||
//
|
||||
this.panel1.Anchor = System.Windows.Forms.AnchorStyles.None;
|
||||
this.panel1.BackColor = System.Drawing.Color.LightSteelBlue;
|
||||
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.panel1.Controls.Add(this.label1);
|
||||
this.panel1.Location = new System.Drawing.Point(14, 12);
|
||||
this.panel1.Name = "panel1";
|
||||
this.panel1.Size = new System.Drawing.Size(1384, 76);
|
||||
this.panel1.TabIndex = 21;
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.AutoSize = true;
|
||||
this.label1.Font = new System.Drawing.Font("微软雅黑", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.label1.Location = new System.Drawing.Point(19, 16);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Size = new System.Drawing.Size(225, 37);
|
||||
this.label1.TabIndex = 0;
|
||||
this.label1.Text = "子 件 价 格 信 息";
|
||||
//
|
||||
// 物料编码
|
||||
//
|
||||
this.物料编码.HeaderText = "物料编码";
|
||||
@ -195,17 +180,42 @@
|
||||
this.状态.ReadOnly = true;
|
||||
this.状态.Width = 200;
|
||||
//
|
||||
// panel1
|
||||
//
|
||||
this.panel1.Anchor = System.Windows.Forms.AnchorStyles.None;
|
||||
this.panel1.BackColor = System.Drawing.Color.LightSteelBlue;
|
||||
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.panel1.Controls.Add(this.label1);
|
||||
this.panel1.Location = new System.Drawing.Point(9, 8);
|
||||
this.panel1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.panel1.Name = "panel1";
|
||||
this.panel1.Size = new System.Drawing.Size(924, 52);
|
||||
this.panel1.TabIndex = 21;
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.AutoSize = true;
|
||||
this.label1.Font = new System.Drawing.Font("微软雅黑", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.label1.Location = new System.Drawing.Point(13, 11);
|
||||
this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Size = new System.Drawing.Size(156, 26);
|
||||
this.label1.TabIndex = 0;
|
||||
this.label1.Text = "子 件 价 格 信 息";
|
||||
//
|
||||
// BomCostInquiryForm
|
||||
//
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
||||
this.BackColor = System.Drawing.SystemColors.InactiveBorder;
|
||||
this.ClientSize = new System.Drawing.Size(1412, 708);
|
||||
this.ClientSize = new System.Drawing.Size(941, 472);
|
||||
this.Controls.Add(this.InExecutionlabel);
|
||||
this.Controls.Add(this.panel16);
|
||||
this.Controls.Add(this.dataGridView1);
|
||||
this.Controls.Add(this.panel1);
|
||||
this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
|
||||
this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.MaximizeBox = false;
|
||||
this.Name = "BomCostInquiryForm";
|
||||
this.ShowIcon = false;
|
||||
|
@ -15,12 +15,11 @@ namespace StockInQuiry
|
||||
{
|
||||
public partial class BomCostInquiryForm : Form
|
||||
{
|
||||
public BomCostInquiryForm(string materialCode)
|
||||
public BomCostInquiryForm(string materialCode,string environment)
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
string url = "http://192.168.10.101:5005/api/stockInquiry/getBomPriceInquiry/" + materialCode;
|
||||
//string url = "http://localhost:5005/api/stockInquiry/getBomPriceInquiry/" + materialCode;
|
||||
string url = environment + "api/stockInquiry/getBomPriceInquiry/" + materialCode;
|
||||
if (!string.IsNullOrEmpty(materialCode))
|
||||
{
|
||||
GetBomPriceInformation(url);
|
||||
|
File diff suppressed because it is too large
Load Diff
6
StockInQuiry/BomstockInquiryForm.Designer.cs
generated
6
StockInQuiry/BomstockInquiryForm.Designer.cs
generated
@ -184,7 +184,6 @@
|
||||
//
|
||||
// pictureBox1
|
||||
//
|
||||
this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
|
||||
this.pictureBox1.Location = new System.Drawing.Point(1140, 13);
|
||||
this.pictureBox1.Name = "pictureBox1";
|
||||
@ -195,7 +194,6 @@
|
||||
//
|
||||
// pictureBox2
|
||||
//
|
||||
this.pictureBox2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.pictureBox2.Image = global::StockInQuiry.Properties.Resources.公司;
|
||||
this.pictureBox2.Location = new System.Drawing.Point(1207, 12);
|
||||
this.pictureBox2.Name = "pictureBox2";
|
||||
@ -206,7 +204,6 @@
|
||||
//
|
||||
// pictureBox3
|
||||
//
|
||||
this.pictureBox3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.pictureBox3.Image = global::StockInQuiry.Properties.Resources.启威星logo;
|
||||
this.pictureBox3.Location = new System.Drawing.Point(9, 13);
|
||||
this.pictureBox3.Name = "pictureBox3";
|
||||
@ -217,7 +214,8 @@
|
||||
//
|
||||
// BomstockInquiryForm
|
||||
//
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(144F, 144F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
||||
this.BackColor = System.Drawing.SystemColors.InactiveBorder;
|
||||
this.ClientSize = new System.Drawing.Size(1408, 704);
|
||||
this.Controls.Add(this.InExecutionlabel);
|
||||
|
@ -17,12 +17,11 @@ namespace StockInQuiry
|
||||
{
|
||||
public partial class BomstockInquiryForm : Form
|
||||
{
|
||||
public BomstockInquiryForm(string materialCode)
|
||||
public BomstockInquiryForm(string materialCode,string environment)
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
string url = "http://192.168.10.101:5005/api/stockInquiry/getBomProductInventory/" + materialCode;
|
||||
//string url = "http://localhost:5005/api/stockInquiry/getBomProductInventory/" + materialCode;
|
||||
string url = environment + "api/stockInquiry/getBomProductInventory/" + materialCode;
|
||||
if (!string.IsNullOrEmpty(materialCode))
|
||||
{
|
||||
FetchProductInventory(url);
|
||||
|
File diff suppressed because it is too large
Load Diff
96
StockInQuiry/Dto/ComparedBomResult.cs
Normal file
96
StockInQuiry/Dto/ComparedBomResult.cs
Normal file
@ -0,0 +1,96 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace StockInQuiry.Dto
|
||||
{
|
||||
public class ComparedBomResult
|
||||
{
|
||||
/// <summary>
|
||||
/// 物料编码
|
||||
/// </summary>
|
||||
public string PartNumber { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 名称 映射字段
|
||||
/// </summary>
|
||||
public string Description { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 对比前数量
|
||||
/// </summary>
|
||||
public float preCompareQtyManual { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 对比后数量
|
||||
/// </summary>
|
||||
public float postCompareQtyManual { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 代号 映射字段
|
||||
/// </summary>
|
||||
public string fld005747 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 品牌 映射字段
|
||||
/// </summary>
|
||||
public string fld005590 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 材质 映射字段
|
||||
/// </summary>
|
||||
public string fld005587 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 表面处理 映射字段
|
||||
/// </summary>
|
||||
public string fld006325 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 单位 映射字段
|
||||
/// </summary>
|
||||
public string fld005744 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 对比前版本+修订版 映射字段
|
||||
/// </summary>
|
||||
public string preCompareVersion { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 对比后版本+修订版 映射字段
|
||||
/// </summary>
|
||||
public string postCompareVersion { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 库存 映射字段
|
||||
/// </summary>
|
||||
public string fld006928 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 预留 映射字段
|
||||
/// </summary>
|
||||
public string fld006929 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 未清采购申请数量 映射字段
|
||||
/// </summary>
|
||||
public string fld006930 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 未清采购订单数量 映射字段
|
||||
/// </summary>
|
||||
public string fld006931 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 变更类型
|
||||
/// </summary>
|
||||
public string changeType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否变更版本
|
||||
/// </summary>
|
||||
public string isVersionChange { get; set; }
|
||||
}
|
||||
}
|
25
StockInQuiry/Dto/MaterialVersions.cs
Normal file
25
StockInQuiry/Dto/MaterialVersions.cs
Normal file
@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace StockInQuiry.Dto
|
||||
{
|
||||
public class MaterialVersions
|
||||
{
|
||||
public string code { get; set; }
|
||||
public string type { get; set; }
|
||||
public string message { get; set; }
|
||||
public List<MaterialVersionsData> result { get; set; }
|
||||
public string extras { get; set; }
|
||||
public string time { get; set; }
|
||||
|
||||
}
|
||||
|
||||
public class MaterialVersionsData
|
||||
{
|
||||
public int? Version_index { get; set; }
|
||||
public string Version { get; set; }
|
||||
}
|
||||
}
|
87
StockInQuiry/Dto/PdmMaterialBom.cs
Normal file
87
StockInQuiry/Dto/PdmMaterialBom.cs
Normal file
@ -0,0 +1,87 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace StockInQuiry.Dto
|
||||
{
|
||||
public class PdmMaterialBom
|
||||
{
|
||||
public string code { get; set; }
|
||||
public string type { get; set; }
|
||||
public string message { get; set; }
|
||||
public List<PdmMaterialBomData> result { get; set; }
|
||||
public string extras { get; set; }
|
||||
public string time { get; set; }
|
||||
}
|
||||
|
||||
public class PdmMaterialBomData
|
||||
{
|
||||
public long OrderIndex { get; set; }
|
||||
/// <summary>
|
||||
/// 物料编码
|
||||
/// </summary>
|
||||
public string PartNumber { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 名称 映射字段
|
||||
/// </summary>
|
||||
public string Description { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 数量
|
||||
/// </summary>
|
||||
public float QtyManual { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 代号 映射字段
|
||||
/// </summary>
|
||||
public string fld005747 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 品牌 映射字段
|
||||
/// </summary>
|
||||
public string fld005590 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 材质 映射字段
|
||||
/// </summary>
|
||||
public string fld005587 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 表面处理 映射字段
|
||||
/// </summary>
|
||||
public string fld006325 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 单位 映射字段
|
||||
/// </summary>
|
||||
public string fld005744 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 版本+修订版 映射字段
|
||||
/// </summary>
|
||||
public string childVersion { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 库存 映射字段
|
||||
/// </summary>
|
||||
public string fld006928 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 预留 映射字段
|
||||
/// </summary>
|
||||
public string fld006929 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 未清采购申请数量 映射字段
|
||||
/// </summary>
|
||||
public string fld006930 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 未清采购订单数量 映射字段
|
||||
/// </summary>
|
||||
public string fld006931 { get; set; }
|
||||
}
|
||||
}
|
@ -13,6 +13,11 @@ namespace StockInQuiry
|
||||
[Guid("2e434738-8e71-43e7-a580-cb464a021b30")]
|
||||
public class PdmAddIn : IEdmAddIn5
|
||||
{
|
||||
//切换环境
|
||||
//private string environment = "http://192.168.10.101:5005/";
|
||||
//private string environment = "http://192.168.10.74:5005/";
|
||||
private string environment = "http://localhost:5005/";
|
||||
|
||||
const int TEST_CMD_ID = 1;
|
||||
public void GetAddInInfo(ref EdmAddInInfo poInfo, IEdmVault5 poVault, IEdmCmdMgr5 poCmdMgr)
|
||||
{
|
||||
@ -30,7 +35,7 @@ namespace StockInQuiry
|
||||
string CommandName = null;
|
||||
if (poCmd.mlCmdID == 1000)
|
||||
{
|
||||
CommandName = "The first command.";
|
||||
CommandName = "第一个命令。";
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -47,7 +52,7 @@ namespace StockInQuiry
|
||||
|
||||
// 创建Form1的实例并传递变量值
|
||||
|
||||
StockInQuiryForm form1 = new StockInQuiryForm(materialCode?.ToString());
|
||||
StockInQuiryForm form1 = new StockInQuiryForm(materialCode?.ToString(), environment);
|
||||
form1.ShowDialog();
|
||||
return;
|
||||
}
|
||||
@ -61,7 +66,7 @@ namespace StockInQuiry
|
||||
|
||||
// 创建Form1的实例并传递变量值
|
||||
|
||||
BomstockInquiryForm form1 = new BomstockInquiryForm(materialCode?.ToString());
|
||||
BomstockInquiryForm form1 = new BomstockInquiryForm(materialCode?.ToString(), environment);
|
||||
form1.ShowDialog();
|
||||
return;
|
||||
}
|
||||
@ -69,7 +74,7 @@ namespace StockInQuiry
|
||||
if (CommandName.StartsWith("原材料库存查询"))
|
||||
{
|
||||
|
||||
RawMaterialForm form1 = new RawMaterialForm();
|
||||
RawMaterialForm form1 = new RawMaterialForm(environment);
|
||||
form1.ShowDialog();
|
||||
return;
|
||||
}
|
||||
@ -80,7 +85,7 @@ namespace StockInQuiry
|
||||
// 获取变量"名称"的值
|
||||
IEdmEnumeratorVariable8 variableEnumerator = (IEdmEnumeratorVariable8)edmCard;
|
||||
variableEnumerator.GetVar("SW-物料编码", "", out object materialCode);
|
||||
PriceInquiryForm form1 = new PriceInquiryForm(materialCode?.ToString());
|
||||
PriceInquiryForm form1 = new PriceInquiryForm(materialCode?.ToString(), environment);
|
||||
form1.ShowDialog();
|
||||
return;
|
||||
}
|
||||
@ -94,28 +99,39 @@ namespace StockInQuiry
|
||||
|
||||
// 创建Form1的实例并传递变量值
|
||||
|
||||
BomCostInquiryForm form1 = new BomCostInquiryForm(materialCode?.ToString());
|
||||
BomCostInquiryForm form1 = new BomCostInquiryForm(materialCode?.ToString(), environment);
|
||||
form1.ShowDialog();
|
||||
return;
|
||||
}
|
||||
|
||||
if (CommandName.StartsWith("原材料价格查询"))
|
||||
{
|
||||
RawMaterialPriceInquiryForm form1 = new RawMaterialPriceInquiryForm();
|
||||
RawMaterialPriceInquiryForm form1 = new RawMaterialPriceInquiryForm(environment);
|
||||
form1.ShowDialog();
|
||||
return;
|
||||
}
|
||||
|
||||
if (CommandName.StartsWith("产品设计库库存查询"))
|
||||
{
|
||||
PdmStockInquiryForm form1 = new PdmStockInquiryForm();
|
||||
PdmStockInquiryForm form1 = new PdmStockInquiryForm(environment);
|
||||
form1.ShowDialog();
|
||||
return;
|
||||
}
|
||||
|
||||
if (CommandName.StartsWith("产品设计库价格查询"))
|
||||
{
|
||||
PdmCostInquiryForm form1 = new PdmCostInquiryForm();
|
||||
PdmCostInquiryForm form1 = new PdmCostInquiryForm(environment);
|
||||
form1.ShowDialog();
|
||||
return;
|
||||
}
|
||||
|
||||
if (CommandName.StartsWith("BOM差异对比"))
|
||||
{
|
||||
var edmCard = poCmd.mpoExtra;
|
||||
// 获取变量"名称"的值
|
||||
IEdmEnumeratorVariable8 variableEnumerator = (IEdmEnumeratorVariable8)edmCard;
|
||||
variableEnumerator.GetVar("SW-物料编码", "", out object materialCode);
|
||||
BomComparisonForm form1 = new BomComparisonForm(materialCode?.ToString(), environment);
|
||||
form1.ShowDialog();
|
||||
return;
|
||||
}
|
||||
|
135
StockInQuiry/PdmCostInquiryForm.Designer.cs
generated
135
StockInQuiry/PdmCostInquiryForm.Designer.cs
generated
@ -29,12 +29,14 @@
|
||||
private void InitializeComponent()
|
||||
{
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PdmCostInquiryForm));
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle19 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle20 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle21 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle22 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle23 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle24 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
this.InExecutionlabel = new System.Windows.Forms.Label();
|
||||
this.panel16 = new System.Windows.Forms.Panel();
|
||||
this.button2 = new System.Windows.Forms.Button();
|
||||
@ -66,9 +68,10 @@
|
||||
this.InExecutionlabel.AutoSize = true;
|
||||
this.InExecutionlabel.Font = new System.Drawing.Font("微软雅黑", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.InExecutionlabel.ForeColor = System.Drawing.Color.Red;
|
||||
this.InExecutionlabel.Location = new System.Drawing.Point(575, 359);
|
||||
this.InExecutionlabel.Location = new System.Drawing.Point(383, 239);
|
||||
this.InExecutionlabel.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
|
||||
this.InExecutionlabel.Name = "InExecutionlabel";
|
||||
this.InExecutionlabel.Size = new System.Drawing.Size(0, 46);
|
||||
this.InExecutionlabel.Size = new System.Drawing.Size(0, 31);
|
||||
this.InExecutionlabel.TabIndex = 29;
|
||||
//
|
||||
// panel16
|
||||
@ -83,18 +86,20 @@
|
||||
this.panel16.Controls.Add(this.pictureBox1);
|
||||
this.panel16.Controls.Add(this.pictureBox2);
|
||||
this.panel16.Controls.Add(this.pictureBox3);
|
||||
this.panel16.Location = new System.Drawing.Point(13, 770);
|
||||
this.panel16.Location = new System.Drawing.Point(9, 513);
|
||||
this.panel16.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.panel16.Name = "panel16";
|
||||
this.panel16.Size = new System.Drawing.Size(1543, 76);
|
||||
this.panel16.Size = new System.Drawing.Size(1030, 52);
|
||||
this.panel16.TabIndex = 28;
|
||||
//
|
||||
// button2
|
||||
//
|
||||
this.button2.BackColor = System.Drawing.Color.GhostWhite;
|
||||
this.button2.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.button2.Location = new System.Drawing.Point(196, 17);
|
||||
this.button2.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.button2.Location = new System.Drawing.Point(111, 11);
|
||||
this.button2.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.button2.Name = "button2";
|
||||
this.button2.Size = new System.Drawing.Size(162, 42);
|
||||
this.button2.Size = new System.Drawing.Size(108, 28);
|
||||
this.button2.TabIndex = 17;
|
||||
this.button2.Text = "全部价格查询";
|
||||
this.button2.UseVisualStyleBackColor = false;
|
||||
@ -103,10 +108,11 @@
|
||||
// button1
|
||||
//
|
||||
this.button1.BackColor = System.Drawing.Color.GhostWhite;
|
||||
this.button1.Font = new System.Drawing.Font("微软雅黑", 6.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.button1.Location = new System.Drawing.Point(1176, 26);
|
||||
this.button1.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.button1.Location = new System.Drawing.Point(773, 13);
|
||||
this.button1.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.button1.Name = "button1";
|
||||
this.button1.Size = new System.Drawing.Size(71, 28);
|
||||
this.button1.Size = new System.Drawing.Size(70, 27);
|
||||
this.button1.TabIndex = 16;
|
||||
this.button1.Text = "查 询";
|
||||
this.button1.UseVisualStyleBackColor = false;
|
||||
@ -115,50 +121,53 @@
|
||||
// label2
|
||||
//
|
||||
this.label2.AutoSize = true;
|
||||
this.label2.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.label2.Location = new System.Drawing.Point(760, 30);
|
||||
this.label2.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.label2.Location = new System.Drawing.Point(459, 15);
|
||||
this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Size = new System.Drawing.Size(69, 20);
|
||||
this.label2.Size = new System.Drawing.Size(65, 20);
|
||||
this.label2.TabIndex = 15;
|
||||
this.label2.Text = "物料编码";
|
||||
//
|
||||
// materialCodeTextBox
|
||||
//
|
||||
this.materialCodeTextBox.BackColor = System.Drawing.Color.GhostWhite;
|
||||
this.materialCodeTextBox.Location = new System.Drawing.Point(835, 26);
|
||||
this.materialCodeTextBox.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.materialCodeTextBox.Location = new System.Drawing.Point(537, 13);
|
||||
this.materialCodeTextBox.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.materialCodeTextBox.Name = "materialCodeTextBox";
|
||||
this.materialCodeTextBox.Size = new System.Drawing.Size(335, 28);
|
||||
this.materialCodeTextBox.Size = new System.Drawing.Size(225, 26);
|
||||
this.materialCodeTextBox.TabIndex = 14;
|
||||
//
|
||||
// pictureBox1
|
||||
//
|
||||
this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
|
||||
this.pictureBox1.Location = new System.Drawing.Point(1275, 13);
|
||||
this.pictureBox1.Location = new System.Drawing.Point(850, 9);
|
||||
this.pictureBox1.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.pictureBox1.Name = "pictureBox1";
|
||||
this.pictureBox1.Size = new System.Drawing.Size(52, 52);
|
||||
this.pictureBox1.Size = new System.Drawing.Size(35, 35);
|
||||
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
|
||||
this.pictureBox1.TabIndex = 11;
|
||||
this.pictureBox1.TabStop = false;
|
||||
//
|
||||
// pictureBox2
|
||||
//
|
||||
this.pictureBox2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.pictureBox2.Image = global::StockInQuiry.Properties.Resources.公司;
|
||||
this.pictureBox2.Location = new System.Drawing.Point(1356, 13);
|
||||
this.pictureBox2.Location = new System.Drawing.Point(904, 9);
|
||||
this.pictureBox2.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.pictureBox2.Name = "pictureBox2";
|
||||
this.pictureBox2.Size = new System.Drawing.Size(163, 50);
|
||||
this.pictureBox2.Size = new System.Drawing.Size(109, 33);
|
||||
this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
|
||||
this.pictureBox2.TabIndex = 12;
|
||||
this.pictureBox2.TabStop = false;
|
||||
//
|
||||
// pictureBox3
|
||||
//
|
||||
this.pictureBox3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.pictureBox3.Image = global::StockInQuiry.Properties.Resources.启威星logo;
|
||||
this.pictureBox3.Location = new System.Drawing.Point(15, 13);
|
||||
this.pictureBox3.Location = new System.Drawing.Point(10, 9);
|
||||
this.pictureBox3.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.pictureBox3.Name = "pictureBox3";
|
||||
this.pictureBox3.Size = new System.Drawing.Size(100, 50);
|
||||
this.pictureBox3.Size = new System.Drawing.Size(67, 33);
|
||||
this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
|
||||
this.pictureBox3.TabIndex = 13;
|
||||
this.pictureBox3.TabStop = false;
|
||||
@ -172,6 +181,14 @@
|
||||
this.dataGridView1.BackgroundColor = System.Drawing.Color.LightSteelBlue;
|
||||
this.dataGridView1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.dataGridView1.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.Raised;
|
||||
dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
|
||||
dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
|
||||
dataGridViewCellStyle1.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
|
||||
dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
|
||||
dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
|
||||
dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
|
||||
this.dataGridView1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
|
||||
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
||||
this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
||||
this.物料编码,
|
||||
@ -181,20 +198,29 @@
|
||||
this.状态,
|
||||
this.操作});
|
||||
this.dataGridView1.GridColor = System.Drawing.SystemColors.InactiveBorder;
|
||||
this.dataGridView1.Location = new System.Drawing.Point(13, 94);
|
||||
this.dataGridView1.Location = new System.Drawing.Point(9, 63);
|
||||
this.dataGridView1.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.dataGridView1.Name = "dataGridView1";
|
||||
this.dataGridView1.ReadOnly = true;
|
||||
dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
|
||||
dataGridViewCellStyle8.BackColor = System.Drawing.SystemColors.Control;
|
||||
dataGridViewCellStyle8.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
dataGridViewCellStyle8.ForeColor = System.Drawing.SystemColors.WindowText;
|
||||
dataGridViewCellStyle8.SelectionBackColor = System.Drawing.SystemColors.Highlight;
|
||||
dataGridViewCellStyle8.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
|
||||
dataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
|
||||
this.dataGridView1.RowHeadersDefaultCellStyle = dataGridViewCellStyle8;
|
||||
this.dataGridView1.RowHeadersVisible = false;
|
||||
this.dataGridView1.RowHeadersWidth = 62;
|
||||
this.dataGridView1.RowTemplate.Height = 30;
|
||||
this.dataGridView1.Size = new System.Drawing.Size(1543, 670);
|
||||
this.dataGridView1.Size = new System.Drawing.Size(1029, 447);
|
||||
this.dataGridView1.TabIndex = 27;
|
||||
this.dataGridView1.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentClick);
|
||||
//
|
||||
// 物料编码
|
||||
//
|
||||
dataGridViewCellStyle19.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.物料编码.DefaultCellStyle = dataGridViewCellStyle19;
|
||||
dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.物料编码.DefaultCellStyle = dataGridViewCellStyle2;
|
||||
this.物料编码.HeaderText = "物料编码";
|
||||
this.物料编码.MinimumWidth = 8;
|
||||
this.物料编码.Name = "物料编码";
|
||||
@ -204,8 +230,8 @@
|
||||
//
|
||||
// 物料名称
|
||||
//
|
||||
dataGridViewCellStyle20.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.物料名称.DefaultCellStyle = dataGridViewCellStyle20;
|
||||
dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.物料名称.DefaultCellStyle = dataGridViewCellStyle3;
|
||||
this.物料名称.HeaderText = "物料名称";
|
||||
this.物料名称.MinimumWidth = 8;
|
||||
this.物料名称.Name = "物料名称";
|
||||
@ -214,8 +240,8 @@
|
||||
//
|
||||
// 价格
|
||||
//
|
||||
dataGridViewCellStyle21.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.价格.DefaultCellStyle = dataGridViewCellStyle21;
|
||||
dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.价格.DefaultCellStyle = dataGridViewCellStyle4;
|
||||
this.价格.HeaderText = "价格";
|
||||
this.价格.MinimumWidth = 8;
|
||||
this.价格.Name = "价格";
|
||||
@ -224,8 +250,8 @@
|
||||
//
|
||||
// 更新日期
|
||||
//
|
||||
dataGridViewCellStyle22.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.更新日期.DefaultCellStyle = dataGridViewCellStyle22;
|
||||
dataGridViewCellStyle5.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.更新日期.DefaultCellStyle = dataGridViewCellStyle5;
|
||||
this.更新日期.HeaderText = "更新日期";
|
||||
this.更新日期.MinimumWidth = 8;
|
||||
this.更新日期.Name = "更新日期";
|
||||
@ -234,8 +260,8 @@
|
||||
//
|
||||
// 状态
|
||||
//
|
||||
dataGridViewCellStyle23.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.状态.DefaultCellStyle = dataGridViewCellStyle23;
|
||||
dataGridViewCellStyle6.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.状态.DefaultCellStyle = dataGridViewCellStyle6;
|
||||
this.状态.HeaderText = "状态";
|
||||
this.状态.MinimumWidth = 8;
|
||||
this.状态.Name = "状态";
|
||||
@ -244,10 +270,10 @@
|
||||
//
|
||||
// 操作
|
||||
//
|
||||
dataGridViewCellStyle24.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
||||
dataGridViewCellStyle24.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
dataGridViewCellStyle24.NullValue = "查 询 ";
|
||||
this.操作.DefaultCellStyle = dataGridViewCellStyle24;
|
||||
dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
||||
dataGridViewCellStyle7.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
dataGridViewCellStyle7.NullValue = "查 询 ";
|
||||
this.操作.DefaultCellStyle = dataGridViewCellStyle7;
|
||||
this.操作.HeaderText = "操作";
|
||||
this.操作.MinimumWidth = 8;
|
||||
this.操作.Name = "操作";
|
||||
@ -262,32 +288,35 @@
|
||||
this.panel1.BackColor = System.Drawing.Color.LightSteelBlue;
|
||||
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.panel1.Controls.Add(this.label1);
|
||||
this.panel1.Location = new System.Drawing.Point(13, 12);
|
||||
this.panel1.Location = new System.Drawing.Point(9, 8);
|
||||
this.panel1.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.panel1.Name = "panel1";
|
||||
this.panel1.Size = new System.Drawing.Size(1543, 76);
|
||||
this.panel1.Size = new System.Drawing.Size(1030, 52);
|
||||
this.panel1.TabIndex = 26;
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.AutoSize = true;
|
||||
this.label1.Font = new System.Drawing.Font("微软雅黑", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.label1.Location = new System.Drawing.Point(19, 16);
|
||||
this.label1.Location = new System.Drawing.Point(13, 11);
|
||||
this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Size = new System.Drawing.Size(333, 37);
|
||||
this.label1.Size = new System.Drawing.Size(231, 26);
|
||||
this.label1.TabIndex = 0;
|
||||
this.label1.Text = "产 品 设 计 库 价 格 信 息";
|
||||
//
|
||||
// PdmCostInquiryForm
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
||||
this.BackColor = System.Drawing.SystemColors.InactiveBorder;
|
||||
this.ClientSize = new System.Drawing.Size(1569, 858);
|
||||
this.ClientSize = new System.Drawing.Size(1046, 572);
|
||||
this.Controls.Add(this.InExecutionlabel);
|
||||
this.Controls.Add(this.panel16);
|
||||
this.Controls.Add(this.dataGridView1);
|
||||
this.Controls.Add(this.panel1);
|
||||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
|
||||
this.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.MaximizeBox = false;
|
||||
this.Name = "PdmCostInquiryForm";
|
||||
this.ShowIcon = false;
|
||||
|
@ -15,8 +15,10 @@ namespace StockInQuiry
|
||||
{
|
||||
public partial class PdmCostInquiryForm : Form
|
||||
{
|
||||
public PdmCostInquiryForm()
|
||||
private string _environment;
|
||||
public PdmCostInquiryForm(string environment)
|
||||
{
|
||||
_environment = environment;
|
||||
InitializeComponent();
|
||||
GetPdmPrices();
|
||||
}
|
||||
@ -24,8 +26,7 @@ namespace StockInQuiry
|
||||
private async void GetPdmPrices()
|
||||
{
|
||||
var materialCodeText = materialCodeTextBox.Text;
|
||||
string url = "http://192.168.10.101:5005/api/stockInquiry/getPdmMaterial";
|
||||
//string url = "http://localhost:5005/api/stockInquiry/getPdmMaterial";
|
||||
string url = _environment + "api/stockInquiry/getPdmMaterial";
|
||||
// 构建请求参数字典
|
||||
var requestData = new
|
||||
{
|
||||
@ -91,8 +92,7 @@ namespace StockInQuiry
|
||||
|
||||
private async void GetPDMMaterialPriceInformation(int rowIndex, string materialCode)
|
||||
{
|
||||
string url = "http://192.168.10.101:5005/api/stockInquiry/getPriceInquiry/" + materialCode;
|
||||
//string url = "http://localhost:5005/api/stockInquiry/getPriceInquiry/" + materialCode;
|
||||
string url = _environment + "api/stockInquiry/getPriceInquiry/" + materialCode;
|
||||
using (HttpClient client = new HttpClient())
|
||||
{
|
||||
try
|
||||
@ -145,8 +145,7 @@ namespace StockInQuiry
|
||||
client.Timeout = TimeSpan.FromMinutes(60);
|
||||
try
|
||||
{
|
||||
var url = "http://192.168.10.101:5005/api/stockInquiry/pdmMaterialPriceInquiry";
|
||||
//var url = "http://localhost:5005/api/stockInquiry/pdmMaterialPriceInquiry";
|
||||
var url = _environment + "api/stockInquiry/pdmMaterialPriceInquiry";
|
||||
HttpResponseMessage response = await client.GetAsync(url);
|
||||
response.EnsureSuccessStatusCode();
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
135
StockInQuiry/PdmStockInquiryForm.Designer.cs
generated
135
StockInQuiry/PdmStockInquiryForm.Designer.cs
generated
@ -30,6 +30,7 @@
|
||||
{
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PdmStockInquiryForm));
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
@ -38,6 +39,7 @@
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
this.InExecutionlabel = new System.Windows.Forms.Label();
|
||||
this.panel16 = new System.Windows.Forms.Panel();
|
||||
this.button2 = new System.Windows.Forms.Button();
|
||||
@ -72,9 +74,10 @@
|
||||
this.InExecutionlabel.AutoSize = true;
|
||||
this.InExecutionlabel.Font = new System.Drawing.Font("微软雅黑", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.InExecutionlabel.ForeColor = System.Drawing.Color.Red;
|
||||
this.InExecutionlabel.Location = new System.Drawing.Point(575, 359);
|
||||
this.InExecutionlabel.Location = new System.Drawing.Point(383, 239);
|
||||
this.InExecutionlabel.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
|
||||
this.InExecutionlabel.Name = "InExecutionlabel";
|
||||
this.InExecutionlabel.Size = new System.Drawing.Size(0, 46);
|
||||
this.InExecutionlabel.Size = new System.Drawing.Size(0, 31);
|
||||
this.InExecutionlabel.TabIndex = 25;
|
||||
//
|
||||
// panel16
|
||||
@ -89,18 +92,20 @@
|
||||
this.panel16.Controls.Add(this.pictureBox1);
|
||||
this.panel16.Controls.Add(this.pictureBox2);
|
||||
this.panel16.Controls.Add(this.pictureBox3);
|
||||
this.panel16.Location = new System.Drawing.Point(13, 770);
|
||||
this.panel16.Location = new System.Drawing.Point(9, 513);
|
||||
this.panel16.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.panel16.Name = "panel16";
|
||||
this.panel16.Size = new System.Drawing.Size(1543, 76);
|
||||
this.panel16.Size = new System.Drawing.Size(1030, 52);
|
||||
this.panel16.TabIndex = 24;
|
||||
//
|
||||
// button2
|
||||
//
|
||||
this.button2.BackColor = System.Drawing.Color.GhostWhite;
|
||||
this.button2.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.button2.Location = new System.Drawing.Point(196, 17);
|
||||
this.button2.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.button2.Location = new System.Drawing.Point(106, 12);
|
||||
this.button2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.button2.Name = "button2";
|
||||
this.button2.Size = new System.Drawing.Size(162, 42);
|
||||
this.button2.Size = new System.Drawing.Size(108, 28);
|
||||
this.button2.TabIndex = 17;
|
||||
this.button2.Text = "全部库存查询";
|
||||
this.button2.UseVisualStyleBackColor = false;
|
||||
@ -109,10 +114,11 @@
|
||||
// button1
|
||||
//
|
||||
this.button1.BackColor = System.Drawing.Color.GhostWhite;
|
||||
this.button1.Font = new System.Drawing.Font("微软雅黑", 6.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.button1.Location = new System.Drawing.Point(1176, 26);
|
||||
this.button1.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.button1.Location = new System.Drawing.Point(772, 13);
|
||||
this.button1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.button1.Name = "button1";
|
||||
this.button1.Size = new System.Drawing.Size(71, 28);
|
||||
this.button1.Size = new System.Drawing.Size(62, 28);
|
||||
this.button1.TabIndex = 16;
|
||||
this.button1.Text = "查 询";
|
||||
this.button1.UseVisualStyleBackColor = false;
|
||||
@ -121,50 +127,53 @@
|
||||
// label2
|
||||
//
|
||||
this.label2.AutoSize = true;
|
||||
this.label2.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.label2.Location = new System.Drawing.Point(760, 30);
|
||||
this.label2.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.label2.Location = new System.Drawing.Point(474, 17);
|
||||
this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Size = new System.Drawing.Size(69, 20);
|
||||
this.label2.Size = new System.Drawing.Size(65, 20);
|
||||
this.label2.TabIndex = 15;
|
||||
this.label2.Text = "物料编码";
|
||||
//
|
||||
// materialCodeTextBox
|
||||
//
|
||||
this.materialCodeTextBox.BackColor = System.Drawing.Color.GhostWhite;
|
||||
this.materialCodeTextBox.Location = new System.Drawing.Point(835, 26);
|
||||
this.materialCodeTextBox.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.materialCodeTextBox.Location = new System.Drawing.Point(543, 17);
|
||||
this.materialCodeTextBox.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.materialCodeTextBox.Name = "materialCodeTextBox";
|
||||
this.materialCodeTextBox.Size = new System.Drawing.Size(335, 28);
|
||||
this.materialCodeTextBox.Size = new System.Drawing.Size(225, 23);
|
||||
this.materialCodeTextBox.TabIndex = 14;
|
||||
//
|
||||
// pictureBox1
|
||||
//
|
||||
this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
|
||||
this.pictureBox1.Location = new System.Drawing.Point(1275, 13);
|
||||
this.pictureBox1.Location = new System.Drawing.Point(850, 9);
|
||||
this.pictureBox1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.pictureBox1.Name = "pictureBox1";
|
||||
this.pictureBox1.Size = new System.Drawing.Size(52, 52);
|
||||
this.pictureBox1.Size = new System.Drawing.Size(35, 35);
|
||||
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
|
||||
this.pictureBox1.TabIndex = 11;
|
||||
this.pictureBox1.TabStop = false;
|
||||
//
|
||||
// pictureBox2
|
||||
//
|
||||
this.pictureBox2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.pictureBox2.Image = global::StockInQuiry.Properties.Resources.公司;
|
||||
this.pictureBox2.Location = new System.Drawing.Point(1356, 13);
|
||||
this.pictureBox2.Location = new System.Drawing.Point(904, 9);
|
||||
this.pictureBox2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.pictureBox2.Name = "pictureBox2";
|
||||
this.pictureBox2.Size = new System.Drawing.Size(163, 50);
|
||||
this.pictureBox2.Size = new System.Drawing.Size(109, 33);
|
||||
this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
|
||||
this.pictureBox2.TabIndex = 12;
|
||||
this.pictureBox2.TabStop = false;
|
||||
//
|
||||
// pictureBox3
|
||||
//
|
||||
this.pictureBox3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.pictureBox3.Image = global::StockInQuiry.Properties.Resources.启威星logo;
|
||||
this.pictureBox3.Location = new System.Drawing.Point(15, 13);
|
||||
this.pictureBox3.Location = new System.Drawing.Point(10, 9);
|
||||
this.pictureBox3.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.pictureBox3.Name = "pictureBox3";
|
||||
this.pictureBox3.Size = new System.Drawing.Size(100, 50);
|
||||
this.pictureBox3.Size = new System.Drawing.Size(67, 33);
|
||||
this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
|
||||
this.pictureBox3.TabIndex = 13;
|
||||
this.pictureBox3.TabStop = false;
|
||||
@ -178,6 +187,14 @@
|
||||
this.dataGridView1.BackgroundColor = System.Drawing.Color.LightSteelBlue;
|
||||
this.dataGridView1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.dataGridView1.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.Raised;
|
||||
dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
|
||||
dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
|
||||
dataGridViewCellStyle1.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
|
||||
dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
|
||||
dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
|
||||
dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
|
||||
this.dataGridView1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
|
||||
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
||||
this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
||||
this.物料编码,
|
||||
@ -190,20 +207,29 @@
|
||||
this.状态,
|
||||
this.操作});
|
||||
this.dataGridView1.GridColor = System.Drawing.SystemColors.InactiveBorder;
|
||||
this.dataGridView1.Location = new System.Drawing.Point(13, 94);
|
||||
this.dataGridView1.Location = new System.Drawing.Point(9, 63);
|
||||
this.dataGridView1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.dataGridView1.Name = "dataGridView1";
|
||||
this.dataGridView1.ReadOnly = true;
|
||||
dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
|
||||
dataGridViewCellStyle11.BackColor = System.Drawing.SystemColors.Control;
|
||||
dataGridViewCellStyle11.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
dataGridViewCellStyle11.ForeColor = System.Drawing.SystemColors.WindowText;
|
||||
dataGridViewCellStyle11.SelectionBackColor = System.Drawing.SystemColors.Highlight;
|
||||
dataGridViewCellStyle11.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
|
||||
dataGridViewCellStyle11.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
|
||||
this.dataGridView1.RowHeadersDefaultCellStyle = dataGridViewCellStyle11;
|
||||
this.dataGridView1.RowHeadersVisible = false;
|
||||
this.dataGridView1.RowHeadersWidth = 62;
|
||||
this.dataGridView1.RowTemplate.Height = 30;
|
||||
this.dataGridView1.Size = new System.Drawing.Size(1543, 670);
|
||||
this.dataGridView1.Size = new System.Drawing.Size(1029, 447);
|
||||
this.dataGridView1.TabIndex = 23;
|
||||
this.dataGridView1.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentClick);
|
||||
//
|
||||
// 物料编码
|
||||
//
|
||||
dataGridViewCellStyle1.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.物料编码.DefaultCellStyle = dataGridViewCellStyle1;
|
||||
dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.物料编码.DefaultCellStyle = dataGridViewCellStyle2;
|
||||
this.物料编码.HeaderText = "物料编码";
|
||||
this.物料编码.MinimumWidth = 8;
|
||||
this.物料编码.Name = "物料编码";
|
||||
@ -213,8 +239,8 @@
|
||||
//
|
||||
// 物料名称
|
||||
//
|
||||
dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.物料名称.DefaultCellStyle = dataGridViewCellStyle2;
|
||||
dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.物料名称.DefaultCellStyle = dataGridViewCellStyle3;
|
||||
this.物料名称.HeaderText = "物料名称";
|
||||
this.物料名称.MinimumWidth = 8;
|
||||
this.物料名称.Name = "物料名称";
|
||||
@ -223,8 +249,8 @@
|
||||
//
|
||||
// 库存
|
||||
//
|
||||
dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.库存.DefaultCellStyle = dataGridViewCellStyle3;
|
||||
dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.库存.DefaultCellStyle = dataGridViewCellStyle4;
|
||||
this.库存.HeaderText = "库存";
|
||||
this.库存.MinimumWidth = 8;
|
||||
this.库存.Name = "库存";
|
||||
@ -233,8 +259,8 @@
|
||||
//
|
||||
// 预留
|
||||
//
|
||||
dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.预留.DefaultCellStyle = dataGridViewCellStyle4;
|
||||
dataGridViewCellStyle5.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.预留.DefaultCellStyle = dataGridViewCellStyle5;
|
||||
this.预留.HeaderText = "预留";
|
||||
this.预留.MinimumWidth = 8;
|
||||
this.预留.Name = "预留";
|
||||
@ -243,8 +269,8 @@
|
||||
//
|
||||
// 未清采购申请数量
|
||||
//
|
||||
dataGridViewCellStyle5.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.未清采购申请数量.DefaultCellStyle = dataGridViewCellStyle5;
|
||||
dataGridViewCellStyle6.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.未清采购申请数量.DefaultCellStyle = dataGridViewCellStyle6;
|
||||
this.未清采购申请数量.HeaderText = "未清采购申请数量";
|
||||
this.未清采购申请数量.MinimumWidth = 8;
|
||||
this.未清采购申请数量.Name = "未清采购申请数量";
|
||||
@ -253,8 +279,8 @@
|
||||
//
|
||||
// 未清采购订单数量
|
||||
//
|
||||
dataGridViewCellStyle6.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.未清采购订单数量.DefaultCellStyle = dataGridViewCellStyle6;
|
||||
dataGridViewCellStyle7.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.未清采购订单数量.DefaultCellStyle = dataGridViewCellStyle7;
|
||||
this.未清采购订单数量.HeaderText = "未清采购订单数量";
|
||||
this.未清采购订单数量.MinimumWidth = 8;
|
||||
this.未清采购订单数量.Name = "未清采购订单数量";
|
||||
@ -263,8 +289,8 @@
|
||||
//
|
||||
// 更新日期
|
||||
//
|
||||
dataGridViewCellStyle7.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.更新日期.DefaultCellStyle = dataGridViewCellStyle7;
|
||||
dataGridViewCellStyle8.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.更新日期.DefaultCellStyle = dataGridViewCellStyle8;
|
||||
this.更新日期.HeaderText = "更新日期";
|
||||
this.更新日期.MinimumWidth = 8;
|
||||
this.更新日期.Name = "更新日期";
|
||||
@ -273,8 +299,8 @@
|
||||
//
|
||||
// 状态
|
||||
//
|
||||
dataGridViewCellStyle8.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.状态.DefaultCellStyle = dataGridViewCellStyle8;
|
||||
dataGridViewCellStyle9.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.状态.DefaultCellStyle = dataGridViewCellStyle9;
|
||||
this.状态.HeaderText = "状态";
|
||||
this.状态.MinimumWidth = 8;
|
||||
this.状态.Name = "状态";
|
||||
@ -283,10 +309,10 @@
|
||||
//
|
||||
// 操作
|
||||
//
|
||||
dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
||||
dataGridViewCellStyle9.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
dataGridViewCellStyle9.NullValue = "查 询 ";
|
||||
this.操作.DefaultCellStyle = dataGridViewCellStyle9;
|
||||
dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
||||
dataGridViewCellStyle10.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
dataGridViewCellStyle10.NullValue = "查 询 ";
|
||||
this.操作.DefaultCellStyle = dataGridViewCellStyle10;
|
||||
this.操作.HeaderText = "操作";
|
||||
this.操作.MinimumWidth = 8;
|
||||
this.操作.Name = "操作";
|
||||
@ -301,32 +327,35 @@
|
||||
this.panel1.BackColor = System.Drawing.Color.LightSteelBlue;
|
||||
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.panel1.Controls.Add(this.label1);
|
||||
this.panel1.Location = new System.Drawing.Point(13, 12);
|
||||
this.panel1.Location = new System.Drawing.Point(9, 8);
|
||||
this.panel1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.panel1.Name = "panel1";
|
||||
this.panel1.Size = new System.Drawing.Size(1543, 76);
|
||||
this.panel1.Size = new System.Drawing.Size(1030, 52);
|
||||
this.panel1.TabIndex = 22;
|
||||
//
|
||||
// label1
|
||||
//
|
||||
this.label1.AutoSize = true;
|
||||
this.label1.Font = new System.Drawing.Font("微软雅黑", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.label1.Location = new System.Drawing.Point(19, 16);
|
||||
this.label1.Location = new System.Drawing.Point(13, 11);
|
||||
this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Size = new System.Drawing.Size(333, 37);
|
||||
this.label1.Size = new System.Drawing.Size(231, 26);
|
||||
this.label1.TabIndex = 0;
|
||||
this.label1.Text = "产 品 设 计 库 库 存 信 息";
|
||||
//
|
||||
// PdmStockInquiryForm
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
||||
this.BackColor = System.Drawing.SystemColors.InactiveBorder;
|
||||
this.ClientSize = new System.Drawing.Size(1569, 858);
|
||||
this.ClientSize = new System.Drawing.Size(1046, 572);
|
||||
this.Controls.Add(this.InExecutionlabel);
|
||||
this.Controls.Add(this.panel16);
|
||||
this.Controls.Add(this.dataGridView1);
|
||||
this.Controls.Add(this.panel1);
|
||||
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
|
||||
this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
||||
this.MaximizeBox = false;
|
||||
this.Name = "PdmStockInquiryForm";
|
||||
this.ShowIcon = false;
|
||||
|
@ -15,8 +15,10 @@ namespace StockInQuiry
|
||||
{
|
||||
public partial class PdmStockInquiryForm : Form
|
||||
{
|
||||
public PdmStockInquiryForm()
|
||||
private string _environment;
|
||||
public PdmStockInquiryForm(string environment)
|
||||
{
|
||||
_environment = environment;
|
||||
InitializeComponent();
|
||||
GetPdmInventory();
|
||||
}
|
||||
@ -24,8 +26,7 @@ namespace StockInQuiry
|
||||
private async void GetPdmInventory()
|
||||
{
|
||||
var materialCodeText = materialCodeTextBox.Text;
|
||||
string url = "http://192.168.10.101:5005/api/stockInquiry/getPdmMaterial";
|
||||
//string url = "http://localhost:5005/api/stockInquiry/getPdmMaterial";
|
||||
string url = _environment+"api/stockInquiry/getPdmMaterial";
|
||||
// 构建请求参数字典
|
||||
var requestData = new
|
||||
{
|
||||
@ -63,7 +64,7 @@ namespace StockInQuiry
|
||||
}
|
||||
catch (HttpRequestException e)
|
||||
{
|
||||
MessageBox.Show($"Request failed: {e.Message}");
|
||||
MessageBox.Show($"请求失败: {e.Message}");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -93,18 +94,15 @@ namespace StockInQuiry
|
||||
|
||||
private async void PdmMaterialStockInquiry(int rowIndex, string materialCode)
|
||||
{
|
||||
string url = "http://192.168.10.101:5005/api/stockInquiry/getProductInventory/" + materialCode;
|
||||
//string url = "http://localhost:5005/api/stockInquiry/getProductInventory/" + materialCode;
|
||||
string url = _environment + "api/stockInquiry/getProductInventory/" + materialCode;
|
||||
|
||||
using (HttpClient client = new HttpClient())
|
||||
{
|
||||
try
|
||||
{
|
||||
// Make the GET request
|
||||
HttpResponseMessage response = await client.GetAsync(url);
|
||||
response.EnsureSuccessStatusCode();
|
||||
|
||||
// Read the response content
|
||||
string content = await response.Content.ReadAsStringAsync();
|
||||
SapEcnQueryOutput result = JsonConvert.DeserializeObject<SapEcnQueryOutput>(content);
|
||||
|
||||
@ -153,8 +151,7 @@ namespace StockInQuiry
|
||||
|
||||
try
|
||||
{
|
||||
var url = "http://192.168.10.101:5005/api/stockInquiry/pdmMaterialStockInquiry";
|
||||
//var url = "http://localhost:5005/api/stockInquiry/pdmMaterialStockInquiry";
|
||||
var url = _environment + "api/stockInquiry/pdmMaterialStockInquiry";
|
||||
HttpResponseMessage response = await client.GetAsync(url);
|
||||
response.EnsureSuccessStatusCode();
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
51
StockInQuiry/PriceInquiryForm.Designer.cs
generated
51
StockInQuiry/PriceInquiryForm.Designer.cs
generated
@ -79,10 +79,10 @@
|
||||
// label1
|
||||
//
|
||||
this.label1.AutoSize = true;
|
||||
this.label1.Font = new System.Drawing.Font("微软雅黑", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.label1.Location = new System.Drawing.Point(19, 19);
|
||||
this.label1.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.label1.Location = new System.Drawing.Point(17, 23);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Size = new System.Drawing.Size(153, 37);
|
||||
this.label1.Size = new System.Drawing.Size(114, 28);
|
||||
this.label1.TabIndex = 0;
|
||||
this.label1.Text = "价 格 信 息";
|
||||
//
|
||||
@ -101,9 +101,10 @@
|
||||
// code
|
||||
//
|
||||
this.code.AutoSize = true;
|
||||
this.code.Location = new System.Drawing.Point(30, 15);
|
||||
this.code.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.code.Location = new System.Drawing.Point(37, 15);
|
||||
this.code.Name = "code";
|
||||
this.code.Size = new System.Drawing.Size(84, 28);
|
||||
this.code.Size = new System.Drawing.Size(76, 25);
|
||||
this.code.TabIndex = 0;
|
||||
this.code.Text = "--------";
|
||||
//
|
||||
@ -122,10 +123,10 @@
|
||||
// materialCode
|
||||
//
|
||||
this.materialCode.AutoSize = true;
|
||||
this.materialCode.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.materialCode.Location = new System.Drawing.Point(68, 15);
|
||||
this.materialCode.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.materialCode.Location = new System.Drawing.Point(69, 15);
|
||||
this.materialCode.Name = "materialCode";
|
||||
this.materialCode.Size = new System.Drawing.Size(66, 28);
|
||||
this.materialCode.Size = new System.Drawing.Size(62, 25);
|
||||
this.materialCode.TabIndex = 0;
|
||||
this.materialCode.Text = "编 码";
|
||||
//
|
||||
@ -144,9 +145,10 @@
|
||||
// price
|
||||
//
|
||||
this.price.AutoSize = true;
|
||||
this.price.Location = new System.Drawing.Point(30, 14);
|
||||
this.price.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.price.Location = new System.Drawing.Point(37, 14);
|
||||
this.price.Name = "price";
|
||||
this.price.Size = new System.Drawing.Size(84, 28);
|
||||
this.price.Size = new System.Drawing.Size(76, 25);
|
||||
this.price.TabIndex = 1;
|
||||
this.price.Text = "--------";
|
||||
//
|
||||
@ -165,9 +167,10 @@
|
||||
// label9
|
||||
//
|
||||
this.label9.AutoSize = true;
|
||||
this.label9.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.label9.Location = new System.Drawing.Point(68, 14);
|
||||
this.label9.Name = "label9";
|
||||
this.label9.Size = new System.Drawing.Size(66, 28);
|
||||
this.label9.Size = new System.Drawing.Size(62, 25);
|
||||
this.label9.TabIndex = 1;
|
||||
this.label9.Text = "价 格";
|
||||
//
|
||||
@ -186,9 +189,10 @@
|
||||
// inventoryDate
|
||||
//
|
||||
this.inventoryDate.AutoSize = true;
|
||||
this.inventoryDate.Location = new System.Drawing.Point(30, 15);
|
||||
this.inventoryDate.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.inventoryDate.Location = new System.Drawing.Point(37, 15);
|
||||
this.inventoryDate.Name = "inventoryDate";
|
||||
this.inventoryDate.Size = new System.Drawing.Size(84, 28);
|
||||
this.inventoryDate.Size = new System.Drawing.Size(76, 25);
|
||||
this.inventoryDate.TabIndex = 3;
|
||||
this.inventoryDate.Text = "--------";
|
||||
//
|
||||
@ -207,9 +211,10 @@
|
||||
// label11
|
||||
//
|
||||
this.label11.AutoSize = true;
|
||||
this.label11.Location = new System.Drawing.Point(29, 13);
|
||||
this.label11.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.label11.Location = new System.Drawing.Point(42, 15);
|
||||
this.label11.Name = "label11";
|
||||
this.label11.Size = new System.Drawing.Size(138, 28);
|
||||
this.label11.Size = new System.Drawing.Size(126, 25);
|
||||
this.label11.TabIndex = 1;
|
||||
this.label11.Text = "价格更新日期";
|
||||
//
|
||||
@ -227,7 +232,6 @@
|
||||
//
|
||||
// pictureBox1
|
||||
//
|
||||
this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
|
||||
this.pictureBox1.Location = new System.Drawing.Point(597, 12);
|
||||
this.pictureBox1.Name = "pictureBox1";
|
||||
@ -238,7 +242,6 @@
|
||||
//
|
||||
// pictureBox2
|
||||
//
|
||||
this.pictureBox2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.pictureBox2.Image = global::StockInQuiry.Properties.Resources.公司;
|
||||
this.pictureBox2.Location = new System.Drawing.Point(657, 14);
|
||||
this.pictureBox2.Name = "pictureBox2";
|
||||
@ -249,7 +252,6 @@
|
||||
//
|
||||
// pictureBox3
|
||||
//
|
||||
this.pictureBox3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.pictureBox3.Image = global::StockInQuiry.Properties.Resources.启威星logo;
|
||||
this.pictureBox3.Location = new System.Drawing.Point(14, 14);
|
||||
this.pictureBox3.Name = "pictureBox3";
|
||||
@ -273,9 +275,10 @@
|
||||
// state
|
||||
//
|
||||
this.state.AutoSize = true;
|
||||
this.state.Location = new System.Drawing.Point(32, 15);
|
||||
this.state.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.state.Location = new System.Drawing.Point(39, 15);
|
||||
this.state.Name = "state";
|
||||
this.state.Size = new System.Drawing.Size(84, 28);
|
||||
this.state.Size = new System.Drawing.Size(76, 25);
|
||||
this.state.TabIndex = 6;
|
||||
this.state.Text = "--------";
|
||||
//
|
||||
@ -294,16 +297,16 @@
|
||||
// label13
|
||||
//
|
||||
this.label13.AutoSize = true;
|
||||
this.label13.Location = new System.Drawing.Point(66, 13);
|
||||
this.label13.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.label13.Location = new System.Drawing.Point(67, 15);
|
||||
this.label13.Name = "label13";
|
||||
this.label13.Size = new System.Drawing.Size(66, 28);
|
||||
this.label13.Size = new System.Drawing.Size(62, 25);
|
||||
this.label13.TabIndex = 1;
|
||||
this.label13.Text = "状 态";
|
||||
//
|
||||
// PriceInquiryForm
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
|
||||
this.BackColor = System.Drawing.SystemColors.InactiveBorder;
|
||||
this.ClientSize = new System.Drawing.Size(865, 509);
|
||||
this.Controls.Add(this.panel14);
|
||||
|
@ -16,7 +16,7 @@ namespace StockInQuiry
|
||||
{
|
||||
public partial class PriceInquiryForm : Form
|
||||
{
|
||||
public PriceInquiryForm(string materialCode)
|
||||
public PriceInquiryForm(string materialCode, string environment)
|
||||
{
|
||||
InitializeComponent();
|
||||
code.Text = materialCode;
|
||||
@ -25,8 +25,7 @@ namespace StockInQuiry
|
||||
state.Text = "查询失败";
|
||||
}
|
||||
|
||||
string url = "http://192.168.10.101:5005/api/stockInquiry/getPriceInquiry/" + materialCode;
|
||||
//string url = "http://localhost:5005/api/stockInquiry/getPriceInquiry/" + materialCode;
|
||||
string url = environment + "api/stockInquiry/getPriceInquiry/" + materialCode;
|
||||
if (!string.IsNullOrEmpty(materialCode))
|
||||
{
|
||||
GetPriceInformation(url);
|
||||
|
File diff suppressed because it is too large
Load Diff
111
StockInQuiry/RawMaterialForm.Designer.cs
generated
111
StockInQuiry/RawMaterialForm.Designer.cs
generated
@ -28,15 +28,17 @@
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle22 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle18 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle19 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle20 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle21 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RawMaterialForm));
|
||||
this.panel1 = new System.Windows.Forms.Panel();
|
||||
this.label1 = new System.Windows.Forms.Label();
|
||||
@ -81,10 +83,10 @@
|
||||
// label1
|
||||
//
|
||||
this.label1.AutoSize = true;
|
||||
this.label1.Font = new System.Drawing.Font("微软雅黑", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.label1.Location = new System.Drawing.Point(19, 16);
|
||||
this.label1.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.label1.Location = new System.Drawing.Point(21, 24);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Size = new System.Drawing.Size(261, 37);
|
||||
this.label1.Size = new System.Drawing.Size(195, 28);
|
||||
this.label1.TabIndex = 0;
|
||||
this.label1.Text = "原 材 料 库 存 信 息";
|
||||
//
|
||||
@ -97,6 +99,14 @@
|
||||
this.dataGridView1.BackgroundColor = System.Drawing.Color.LightSteelBlue;
|
||||
this.dataGridView1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.dataGridView1.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.Raised;
|
||||
dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
|
||||
dataGridViewCellStyle12.BackColor = System.Drawing.SystemColors.Control;
|
||||
dataGridViewCellStyle12.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
dataGridViewCellStyle12.ForeColor = System.Drawing.SystemColors.WindowText;
|
||||
dataGridViewCellStyle12.SelectionBackColor = System.Drawing.SystemColors.Highlight;
|
||||
dataGridViewCellStyle12.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
|
||||
dataGridViewCellStyle12.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
|
||||
this.dataGridView1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle12;
|
||||
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
||||
this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
||||
this.物料编码,
|
||||
@ -112,6 +122,14 @@
|
||||
this.dataGridView1.Location = new System.Drawing.Point(14, 94);
|
||||
this.dataGridView1.Name = "dataGridView1";
|
||||
this.dataGridView1.ReadOnly = true;
|
||||
dataGridViewCellStyle22.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
|
||||
dataGridViewCellStyle22.BackColor = System.Drawing.SystemColors.Control;
|
||||
dataGridViewCellStyle22.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
dataGridViewCellStyle22.ForeColor = System.Drawing.SystemColors.WindowText;
|
||||
dataGridViewCellStyle22.SelectionBackColor = System.Drawing.SystemColors.Highlight;
|
||||
dataGridViewCellStyle22.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
|
||||
dataGridViewCellStyle22.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
|
||||
this.dataGridView1.RowHeadersDefaultCellStyle = dataGridViewCellStyle22;
|
||||
this.dataGridView1.RowHeadersVisible = false;
|
||||
this.dataGridView1.RowHeadersWidth = 62;
|
||||
this.dataGridView1.RowTemplate.Height = 30;
|
||||
@ -121,8 +139,8 @@
|
||||
//
|
||||
// 物料编码
|
||||
//
|
||||
dataGridViewCellStyle1.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.物料编码.DefaultCellStyle = dataGridViewCellStyle1;
|
||||
dataGridViewCellStyle13.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.物料编码.DefaultCellStyle = dataGridViewCellStyle13;
|
||||
this.物料编码.HeaderText = "物料编码";
|
||||
this.物料编码.MinimumWidth = 8;
|
||||
this.物料编码.Name = "物料编码";
|
||||
@ -132,8 +150,8 @@
|
||||
//
|
||||
// 物料名称
|
||||
//
|
||||
dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.物料名称.DefaultCellStyle = dataGridViewCellStyle2;
|
||||
dataGridViewCellStyle14.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.物料名称.DefaultCellStyle = dataGridViewCellStyle14;
|
||||
this.物料名称.HeaderText = "物料名称";
|
||||
this.物料名称.MinimumWidth = 8;
|
||||
this.物料名称.Name = "物料名称";
|
||||
@ -142,8 +160,8 @@
|
||||
//
|
||||
// 库存
|
||||
//
|
||||
dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.库存.DefaultCellStyle = dataGridViewCellStyle3;
|
||||
dataGridViewCellStyle15.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.库存.DefaultCellStyle = dataGridViewCellStyle15;
|
||||
this.库存.HeaderText = "库存";
|
||||
this.库存.MinimumWidth = 8;
|
||||
this.库存.Name = "库存";
|
||||
@ -152,8 +170,8 @@
|
||||
//
|
||||
// 预留
|
||||
//
|
||||
dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.预留.DefaultCellStyle = dataGridViewCellStyle4;
|
||||
dataGridViewCellStyle16.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.预留.DefaultCellStyle = dataGridViewCellStyle16;
|
||||
this.预留.HeaderText = "预留";
|
||||
this.预留.MinimumWidth = 8;
|
||||
this.预留.Name = "预留";
|
||||
@ -162,8 +180,8 @@
|
||||
//
|
||||
// 未清采购申请数量
|
||||
//
|
||||
dataGridViewCellStyle5.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.未清采购申请数量.DefaultCellStyle = dataGridViewCellStyle5;
|
||||
dataGridViewCellStyle17.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.未清采购申请数量.DefaultCellStyle = dataGridViewCellStyle17;
|
||||
this.未清采购申请数量.HeaderText = "未清采购申请数量";
|
||||
this.未清采购申请数量.MinimumWidth = 8;
|
||||
this.未清采购申请数量.Name = "未清采购申请数量";
|
||||
@ -172,8 +190,8 @@
|
||||
//
|
||||
// 未清采购订单数量
|
||||
//
|
||||
dataGridViewCellStyle6.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.未清采购订单数量.DefaultCellStyle = dataGridViewCellStyle6;
|
||||
dataGridViewCellStyle18.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.未清采购订单数量.DefaultCellStyle = dataGridViewCellStyle18;
|
||||
this.未清采购订单数量.HeaderText = "未清采购订单数量";
|
||||
this.未清采购订单数量.MinimumWidth = 8;
|
||||
this.未清采购订单数量.Name = "未清采购订单数量";
|
||||
@ -182,8 +200,8 @@
|
||||
//
|
||||
// 更新日期
|
||||
//
|
||||
dataGridViewCellStyle7.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.更新日期.DefaultCellStyle = dataGridViewCellStyle7;
|
||||
dataGridViewCellStyle19.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.更新日期.DefaultCellStyle = dataGridViewCellStyle19;
|
||||
this.更新日期.HeaderText = "更新日期";
|
||||
this.更新日期.MinimumWidth = 8;
|
||||
this.更新日期.Name = "更新日期";
|
||||
@ -192,8 +210,8 @@
|
||||
//
|
||||
// 状态
|
||||
//
|
||||
dataGridViewCellStyle8.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.状态.DefaultCellStyle = dataGridViewCellStyle8;
|
||||
dataGridViewCellStyle20.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.状态.DefaultCellStyle = dataGridViewCellStyle20;
|
||||
this.状态.HeaderText = "状态";
|
||||
this.状态.MinimumWidth = 8;
|
||||
this.状态.Name = "状态";
|
||||
@ -202,10 +220,10 @@
|
||||
//
|
||||
// 操作
|
||||
//
|
||||
dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
||||
dataGridViewCellStyle9.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
dataGridViewCellStyle9.NullValue = "查 询 ";
|
||||
this.操作.DefaultCellStyle = dataGridViewCellStyle9;
|
||||
dataGridViewCellStyle21.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
||||
dataGridViewCellStyle21.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
dataGridViewCellStyle21.NullValue = "查 询 ";
|
||||
this.操作.DefaultCellStyle = dataGridViewCellStyle21;
|
||||
this.操作.HeaderText = "操作";
|
||||
this.操作.MinimumWidth = 8;
|
||||
this.操作.Name = "操作";
|
||||
@ -234,8 +252,8 @@
|
||||
// button2
|
||||
//
|
||||
this.button2.BackColor = System.Drawing.Color.GhostWhite;
|
||||
this.button2.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.button2.Location = new System.Drawing.Point(196, 17);
|
||||
this.button2.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.button2.Location = new System.Drawing.Point(177, 17);
|
||||
this.button2.Name = "button2";
|
||||
this.button2.Size = new System.Drawing.Size(162, 42);
|
||||
this.button2.TabIndex = 17;
|
||||
@ -246,10 +264,10 @@
|
||||
// button1
|
||||
//
|
||||
this.button1.BackColor = System.Drawing.Color.GhostWhite;
|
||||
this.button1.Font = new System.Drawing.Font("微软雅黑", 6.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.button1.Location = new System.Drawing.Point(1176, 26);
|
||||
this.button1.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.button1.Location = new System.Drawing.Point(1158, 17);
|
||||
this.button1.Name = "button1";
|
||||
this.button1.Size = new System.Drawing.Size(71, 28);
|
||||
this.button1.Size = new System.Drawing.Size(85, 42);
|
||||
this.button1.TabIndex = 16;
|
||||
this.button1.Text = "查 询";
|
||||
this.button1.UseVisualStyleBackColor = false;
|
||||
@ -258,24 +276,24 @@
|
||||
// label2
|
||||
//
|
||||
this.label2.AutoSize = true;
|
||||
this.label2.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.label2.Location = new System.Drawing.Point(760, 30);
|
||||
this.label2.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.label2.Location = new System.Drawing.Point(709, 26);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Size = new System.Drawing.Size(69, 20);
|
||||
this.label2.Size = new System.Drawing.Size(88, 25);
|
||||
this.label2.TabIndex = 15;
|
||||
this.label2.Text = "物料编码";
|
||||
//
|
||||
// materialCodeTextBox
|
||||
//
|
||||
this.materialCodeTextBox.BackColor = System.Drawing.Color.GhostWhite;
|
||||
this.materialCodeTextBox.Location = new System.Drawing.Point(835, 26);
|
||||
this.materialCodeTextBox.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.materialCodeTextBox.Location = new System.Drawing.Point(803, 23);
|
||||
this.materialCodeTextBox.Name = "materialCodeTextBox";
|
||||
this.materialCodeTextBox.Size = new System.Drawing.Size(335, 28);
|
||||
this.materialCodeTextBox.Size = new System.Drawing.Size(335, 33);
|
||||
this.materialCodeTextBox.TabIndex = 14;
|
||||
//
|
||||
// pictureBox1
|
||||
//
|
||||
this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
|
||||
this.pictureBox1.Location = new System.Drawing.Point(1275, 13);
|
||||
this.pictureBox1.Name = "pictureBox1";
|
||||
@ -286,7 +304,6 @@
|
||||
//
|
||||
// pictureBox2
|
||||
//
|
||||
this.pictureBox2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.pictureBox2.Image = global::StockInQuiry.Properties.Resources.公司;
|
||||
this.pictureBox2.Location = new System.Drawing.Point(1356, 13);
|
||||
this.pictureBox2.Name = "pictureBox2";
|
||||
@ -297,7 +314,6 @@
|
||||
//
|
||||
// pictureBox3
|
||||
//
|
||||
this.pictureBox3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.pictureBox3.Image = global::StockInQuiry.Properties.Resources.启威星logo;
|
||||
this.pictureBox3.Location = new System.Drawing.Point(15, 13);
|
||||
this.pictureBox3.Name = "pictureBox3";
|
||||
@ -313,13 +329,12 @@
|
||||
this.InExecutionlabel.ForeColor = System.Drawing.Color.Red;
|
||||
this.InExecutionlabel.Location = new System.Drawing.Point(576, 359);
|
||||
this.InExecutionlabel.Name = "InExecutionlabel";
|
||||
this.InExecutionlabel.Size = new System.Drawing.Size(0, 46);
|
||||
this.InExecutionlabel.Size = new System.Drawing.Size(0, 31);
|
||||
this.InExecutionlabel.TabIndex = 21;
|
||||
//
|
||||
// RawMaterialForm
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
|
||||
this.BackColor = System.Drawing.SystemColors.InactiveBorder;
|
||||
this.ClientSize = new System.Drawing.Size(1569, 858);
|
||||
this.Controls.Add(this.InExecutionlabel);
|
||||
|
@ -19,15 +19,18 @@ namespace StockInQuiry
|
||||
{
|
||||
public partial class RawMaterialForm : Form
|
||||
{
|
||||
public RawMaterialForm()
|
||||
private string _environment;
|
||||
|
||||
public RawMaterialForm(string environment)
|
||||
{
|
||||
_environment = environment;
|
||||
InitializeComponent();
|
||||
FetchProductInventory();
|
||||
}
|
||||
private async void FetchProductInventory()
|
||||
{
|
||||
var materialCodeText = materialCodeTextBox.Text;
|
||||
string url = "http://192.168.10.101:5005/api/stockInquiry/getRawMaterial";
|
||||
string url = _environment + "api/stockInquiry/getRawMaterial";
|
||||
// 构建请求参数字典
|
||||
var requestData = new
|
||||
{
|
||||
@ -94,8 +97,7 @@ namespace StockInQuiry
|
||||
|
||||
private async void RawMaterialStockInquiry(int rowIndex, string materialCode)
|
||||
{
|
||||
string url = "http://192.168.10.101:5005/api/stockInquiry/getProductInventory/" + materialCode;
|
||||
//string url = "http://localhost:5005/api/stockInquiry/getProductInventory/" + materialCode;
|
||||
string url = _environment+"api/stockInquiry/getProductInventory/" + materialCode;
|
||||
|
||||
using (HttpClient client = new HttpClient())
|
||||
{
|
||||
@ -151,8 +153,7 @@ namespace StockInQuiry
|
||||
{
|
||||
try
|
||||
{
|
||||
var url = "http://192.168.10.101:5005/api/stockInquiry/rawMaterialStockInquiry";
|
||||
//var url = "http://localhost:5005/api/stockInquiry/rawMaterialStockInquiry";
|
||||
var url = _environment+"api/stockInquiry/rawMaterialStockInquiry";
|
||||
HttpResponseMessage response = await client.GetAsync(url);
|
||||
response.EnsureSuccessStatusCode();
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
195
StockInQuiry/RawMaterialPriceInquiryForm.Designer.cs
generated
195
StockInQuiry/RawMaterialPriceInquiryForm.Designer.cs
generated
@ -29,12 +29,14 @@
|
||||
private void InitializeComponent()
|
||||
{
|
||||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RawMaterialPriceInquiryForm));
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
|
||||
this.InExecutionlabel = new System.Windows.Forms.Label();
|
||||
this.panel16 = new System.Windows.Forms.Panel();
|
||||
this.button2 = new System.Windows.Forms.Button();
|
||||
@ -45,14 +47,14 @@
|
||||
this.pictureBox2 = new System.Windows.Forms.PictureBox();
|
||||
this.pictureBox3 = new System.Windows.Forms.PictureBox();
|
||||
this.dataGridView1 = new System.Windows.Forms.DataGridView();
|
||||
this.panel1 = new System.Windows.Forms.Panel();
|
||||
this.label1 = new System.Windows.Forms.Label();
|
||||
this.物料编码 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||
this.物料名称 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||
this.价格 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||
this.更新日期 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||
this.状态 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||||
this.操作 = new System.Windows.Forms.DataGridViewButtonColumn();
|
||||
this.panel1 = new System.Windows.Forms.Panel();
|
||||
this.label1 = new System.Windows.Forms.Label();
|
||||
this.panel16.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
|
||||
@ -68,7 +70,7 @@
|
||||
this.InExecutionlabel.ForeColor = System.Drawing.Color.Red;
|
||||
this.InExecutionlabel.Location = new System.Drawing.Point(575, 359);
|
||||
this.InExecutionlabel.Name = "InExecutionlabel";
|
||||
this.InExecutionlabel.Size = new System.Drawing.Size(0, 46);
|
||||
this.InExecutionlabel.Size = new System.Drawing.Size(0, 31);
|
||||
this.InExecutionlabel.TabIndex = 25;
|
||||
//
|
||||
// panel16
|
||||
@ -91,7 +93,7 @@
|
||||
// button2
|
||||
//
|
||||
this.button2.BackColor = System.Drawing.Color.GhostWhite;
|
||||
this.button2.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.button2.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.button2.Location = new System.Drawing.Point(196, 17);
|
||||
this.button2.Name = "button2";
|
||||
this.button2.Size = new System.Drawing.Size(162, 42);
|
||||
@ -103,10 +105,10 @@
|
||||
// button1
|
||||
//
|
||||
this.button1.BackColor = System.Drawing.Color.GhostWhite;
|
||||
this.button1.Font = new System.Drawing.Font("微软雅黑", 6.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.button1.Location = new System.Drawing.Point(1176, 26);
|
||||
this.button1.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.button1.Location = new System.Drawing.Point(1152, 20);
|
||||
this.button1.Name = "button1";
|
||||
this.button1.Size = new System.Drawing.Size(71, 28);
|
||||
this.button1.Size = new System.Drawing.Size(87, 42);
|
||||
this.button1.TabIndex = 16;
|
||||
this.button1.Text = "查 询";
|
||||
this.button1.UseVisualStyleBackColor = false;
|
||||
@ -115,24 +117,24 @@
|
||||
// label2
|
||||
//
|
||||
this.label2.AutoSize = true;
|
||||
this.label2.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.label2.Location = new System.Drawing.Point(760, 30);
|
||||
this.label2.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.label2.Location = new System.Drawing.Point(714, 29);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Size = new System.Drawing.Size(69, 20);
|
||||
this.label2.Size = new System.Drawing.Size(88, 25);
|
||||
this.label2.TabIndex = 15;
|
||||
this.label2.Text = "物料编码";
|
||||
//
|
||||
// materialCodeTextBox
|
||||
//
|
||||
this.materialCodeTextBox.BackColor = System.Drawing.Color.GhostWhite;
|
||||
this.materialCodeTextBox.Location = new System.Drawing.Point(835, 26);
|
||||
this.materialCodeTextBox.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.materialCodeTextBox.Location = new System.Drawing.Point(808, 26);
|
||||
this.materialCodeTextBox.Name = "materialCodeTextBox";
|
||||
this.materialCodeTextBox.Size = new System.Drawing.Size(335, 28);
|
||||
this.materialCodeTextBox.Size = new System.Drawing.Size(335, 33);
|
||||
this.materialCodeTextBox.TabIndex = 14;
|
||||
//
|
||||
// pictureBox1
|
||||
//
|
||||
this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
|
||||
this.pictureBox1.Location = new System.Drawing.Point(1275, 13);
|
||||
this.pictureBox1.Name = "pictureBox1";
|
||||
@ -143,7 +145,6 @@
|
||||
//
|
||||
// pictureBox2
|
||||
//
|
||||
this.pictureBox2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.pictureBox2.Image = global::StockInQuiry.Properties.Resources.公司;
|
||||
this.pictureBox2.Location = new System.Drawing.Point(1356, 13);
|
||||
this.pictureBox2.Name = "pictureBox2";
|
||||
@ -154,7 +155,6 @@
|
||||
//
|
||||
// pictureBox3
|
||||
//
|
||||
this.pictureBox3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.pictureBox3.Image = global::StockInQuiry.Properties.Resources.启威星logo;
|
||||
this.pictureBox3.Location = new System.Drawing.Point(15, 13);
|
||||
this.pictureBox3.Name = "pictureBox3";
|
||||
@ -172,6 +172,14 @@
|
||||
this.dataGridView1.BackgroundColor = System.Drawing.Color.LightSteelBlue;
|
||||
this.dataGridView1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.dataGridView1.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.Raised;
|
||||
dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
|
||||
dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
|
||||
dataGridViewCellStyle1.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
|
||||
dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
|
||||
dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
|
||||
dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
|
||||
this.dataGridView1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
|
||||
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
||||
this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
||||
this.物料编码,
|
||||
@ -184,6 +192,14 @@
|
||||
this.dataGridView1.Location = new System.Drawing.Point(13, 94);
|
||||
this.dataGridView1.Name = "dataGridView1";
|
||||
this.dataGridView1.ReadOnly = true;
|
||||
dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
|
||||
dataGridViewCellStyle8.BackColor = System.Drawing.SystemColors.Control;
|
||||
dataGridViewCellStyle8.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
dataGridViewCellStyle8.ForeColor = System.Drawing.SystemColors.WindowText;
|
||||
dataGridViewCellStyle8.SelectionBackColor = System.Drawing.SystemColors.Highlight;
|
||||
dataGridViewCellStyle8.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
|
||||
dataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
|
||||
this.dataGridView1.RowHeadersDefaultCellStyle = dataGridViewCellStyle8;
|
||||
this.dataGridView1.RowHeadersVisible = false;
|
||||
this.dataGridView1.RowHeadersWidth = 62;
|
||||
this.dataGridView1.RowTemplate.Height = 30;
|
||||
@ -191,6 +207,71 @@
|
||||
this.dataGridView1.TabIndex = 23;
|
||||
this.dataGridView1.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentClick);
|
||||
//
|
||||
// 物料编码
|
||||
//
|
||||
dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.物料编码.DefaultCellStyle = dataGridViewCellStyle2;
|
||||
this.物料编码.HeaderText = "物料编码";
|
||||
this.物料编码.MinimumWidth = 8;
|
||||
this.物料编码.Name = "物料编码";
|
||||
this.物料编码.ReadOnly = true;
|
||||
this.物料编码.Resizable = System.Windows.Forms.DataGridViewTriState.True;
|
||||
this.物料编码.Width = 370;
|
||||
//
|
||||
// 物料名称
|
||||
//
|
||||
dataGridViewCellStyle3.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.物料名称.DefaultCellStyle = dataGridViewCellStyle3;
|
||||
this.物料名称.HeaderText = "物料名称";
|
||||
this.物料名称.MinimumWidth = 8;
|
||||
this.物料名称.Name = "物料名称";
|
||||
this.物料名称.ReadOnly = true;
|
||||
this.物料名称.Width = 450;
|
||||
//
|
||||
// 价格
|
||||
//
|
||||
dataGridViewCellStyle4.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.价格.DefaultCellStyle = dataGridViewCellStyle4;
|
||||
this.价格.HeaderText = "价格";
|
||||
this.价格.MinimumWidth = 8;
|
||||
this.价格.Name = "价格";
|
||||
this.价格.ReadOnly = true;
|
||||
this.价格.Width = 170;
|
||||
//
|
||||
// 更新日期
|
||||
//
|
||||
dataGridViewCellStyle5.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.更新日期.DefaultCellStyle = dataGridViewCellStyle5;
|
||||
this.更新日期.HeaderText = "更新日期";
|
||||
this.更新日期.MinimumWidth = 8;
|
||||
this.更新日期.Name = "更新日期";
|
||||
this.更新日期.ReadOnly = true;
|
||||
this.更新日期.Width = 200;
|
||||
//
|
||||
// 状态
|
||||
//
|
||||
dataGridViewCellStyle6.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.状态.DefaultCellStyle = dataGridViewCellStyle6;
|
||||
this.状态.HeaderText = "状态";
|
||||
this.状态.MinimumWidth = 8;
|
||||
this.状态.Name = "状态";
|
||||
this.状态.ReadOnly = true;
|
||||
this.状态.Width = 200;
|
||||
//
|
||||
// 操作
|
||||
//
|
||||
dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
||||
dataGridViewCellStyle7.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
dataGridViewCellStyle7.NullValue = "查 询 ";
|
||||
this.操作.DefaultCellStyle = dataGridViewCellStyle7;
|
||||
this.操作.HeaderText = "操作";
|
||||
this.操作.MinimumWidth = 8;
|
||||
this.操作.Name = "操作";
|
||||
this.操作.ReadOnly = true;
|
||||
this.操作.Text = "查 询";
|
||||
this.操作.UseColumnTextForButtonValue = true;
|
||||
this.操作.Width = 150;
|
||||
//
|
||||
// panel1
|
||||
//
|
||||
this.panel1.Anchor = System.Windows.Forms.AnchorStyles.None;
|
||||
@ -205,82 +286,16 @@
|
||||
// label1
|
||||
//
|
||||
this.label1.AutoSize = true;
|
||||
this.label1.Font = new System.Drawing.Font("微软雅黑", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.label1.Location = new System.Drawing.Point(19, 16);
|
||||
this.label1.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.label1.Location = new System.Drawing.Point(19, 24);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Size = new System.Drawing.Size(261, 37);
|
||||
this.label1.Size = new System.Drawing.Size(195, 28);
|
||||
this.label1.TabIndex = 0;
|
||||
this.label1.Text = "原 材 料 价 格 信 息";
|
||||
//
|
||||
// 物料编码
|
||||
//
|
||||
dataGridViewCellStyle7.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.物料编码.DefaultCellStyle = dataGridViewCellStyle7;
|
||||
this.物料编码.HeaderText = "物料编码";
|
||||
this.物料编码.MinimumWidth = 8;
|
||||
this.物料编码.Name = "物料编码";
|
||||
this.物料编码.ReadOnly = true;
|
||||
this.物料编码.Resizable = System.Windows.Forms.DataGridViewTriState.True;
|
||||
this.物料编码.Width = 370;
|
||||
//
|
||||
// 物料名称
|
||||
//
|
||||
dataGridViewCellStyle8.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.物料名称.DefaultCellStyle = dataGridViewCellStyle8;
|
||||
this.物料名称.HeaderText = "物料名称";
|
||||
this.物料名称.MinimumWidth = 8;
|
||||
this.物料名称.Name = "物料名称";
|
||||
this.物料名称.ReadOnly = true;
|
||||
this.物料名称.Width = 450;
|
||||
//
|
||||
// 价格
|
||||
//
|
||||
dataGridViewCellStyle9.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.价格.DefaultCellStyle = dataGridViewCellStyle9;
|
||||
this.价格.HeaderText = "价格";
|
||||
this.价格.MinimumWidth = 8;
|
||||
this.价格.Name = "价格";
|
||||
this.价格.ReadOnly = true;
|
||||
this.价格.Width = 170;
|
||||
//
|
||||
// 更新日期
|
||||
//
|
||||
dataGridViewCellStyle10.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.更新日期.DefaultCellStyle = dataGridViewCellStyle10;
|
||||
this.更新日期.HeaderText = "更新日期";
|
||||
this.更新日期.MinimumWidth = 8;
|
||||
this.更新日期.Name = "更新日期";
|
||||
this.更新日期.ReadOnly = true;
|
||||
this.更新日期.Width = 200;
|
||||
//
|
||||
// 状态
|
||||
//
|
||||
dataGridViewCellStyle11.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.状态.DefaultCellStyle = dataGridViewCellStyle11;
|
||||
this.状态.HeaderText = "状态";
|
||||
this.状态.MinimumWidth = 8;
|
||||
this.状态.Name = "状态";
|
||||
this.状态.ReadOnly = true;
|
||||
this.状态.Width = 200;
|
||||
//
|
||||
// 操作
|
||||
//
|
||||
dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
||||
dataGridViewCellStyle12.Font = new System.Drawing.Font("微软雅黑", 7.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
dataGridViewCellStyle12.NullValue = "查 询 ";
|
||||
this.操作.DefaultCellStyle = dataGridViewCellStyle12;
|
||||
this.操作.HeaderText = "操作";
|
||||
this.操作.MinimumWidth = 8;
|
||||
this.操作.Name = "操作";
|
||||
this.操作.ReadOnly = true;
|
||||
this.操作.Text = "查 询";
|
||||
this.操作.UseColumnTextForButtonValue = true;
|
||||
this.操作.Width = 150;
|
||||
//
|
||||
// RawMaterialPriceInquiryForm
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
|
||||
this.BackColor = System.Drawing.SystemColors.InactiveBorder;
|
||||
this.ClientSize = new System.Drawing.Size(1569, 858);
|
||||
this.Controls.Add(this.InExecutionlabel);
|
||||
|
@ -15,16 +15,17 @@ namespace StockInQuiry
|
||||
{
|
||||
public partial class RawMaterialPriceInquiryForm : Form
|
||||
{
|
||||
public RawMaterialPriceInquiryForm()
|
||||
private string _environment;
|
||||
public RawMaterialPriceInquiryForm(string environment)
|
||||
{
|
||||
_environment = environment;
|
||||
InitializeComponent();
|
||||
FetchProductInventory();
|
||||
}
|
||||
private async void FetchProductInventory()
|
||||
{
|
||||
var materialCodeText = materialCodeTextBox.Text;
|
||||
string url = "http://192.168.10.101:5005/api/stockInquiry/getRawMaterial";
|
||||
//string url = "http://localhost:5005/api/stockInquiry/getRawMaterial";
|
||||
string url = _environment + "api/stockInquiry/getRawMaterial";
|
||||
// 构建请求参数字典
|
||||
var requestData = new
|
||||
{
|
||||
@ -91,8 +92,7 @@ namespace StockInQuiry
|
||||
|
||||
private async void GetRawMaterialPriceInformation(int rowIndex, string materialCode)
|
||||
{
|
||||
string url = "http://192.168.10.101:5005/api/stockInquiry/getPriceInquiry/" + materialCode;
|
||||
//string url = "http://localhost:5005/api/stockInquiry/getPriceInquiry/" + materialCode;
|
||||
string url = _environment + "api/stockInquiry/getPriceInquiry/" + materialCode;
|
||||
using (HttpClient client = new HttpClient())
|
||||
{
|
||||
try
|
||||
@ -143,8 +143,7 @@ namespace StockInQuiry
|
||||
{
|
||||
try
|
||||
{
|
||||
var url = "http://192.168.10.101:5005/api/stockInquiry/rawMaterialPriceInquiry";
|
||||
//var url = "http://localhost:5005/api/stockInquiry/rawMaterialPriceInquiry";
|
||||
var url = _environment + "api/stockInquiry/rawMaterialPriceInquiry";
|
||||
HttpResponseMessage response = await client.GetAsync(url);
|
||||
response.EnsureSuccessStatusCode();
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -9,9 +9,10 @@
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>StockInQuiry</RootNamespace>
|
||||
<AssemblyName>StockInQuiry</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
|
||||
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<Deterministic>true</Deterministic>
|
||||
<TargetFrameworkProfile />
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
@ -37,12 +38,20 @@
|
||||
<EmbedInteropTypes>False</EmbedInteropTypes>
|
||||
<HintPath>F:\启威星资料\EPDM.Interop.epdm.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Microsoft.Office.Interop.Excel, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Microsoft.Office.Interop.Excel.15.0.4795.1001\lib\net20\Microsoft.Office.Interop.Excel.dll</HintPath>
|
||||
<EmbedInteropTypes>True</EmbedInteropTypes>
|
||||
</Reference>
|
||||
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Newtonsoft.Json.13.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="PresentationCore" />
|
||||
<Reference Include="PresentationFramework" />
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.configuration" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Drawing" />
|
||||
<Reference Include="System.Security" />
|
||||
<Reference Include="System.Windows.Forms" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
@ -50,8 +59,15 @@
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
<Reference Include="System.Xml" />
|
||||
<Reference Include="WindowsBase" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="BomComparisonForm.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="BomComparisonForm.Designer.cs">
|
||||
<DependentUpon>BomComparisonForm.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="BomCostInquiryForm.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
@ -66,6 +82,9 @@
|
||||
</Compile>
|
||||
<Compile Include="Dto\BomPriceInquiryOutput.cs" />
|
||||
<Compile Include="Dto\BomStockInquiryOutput.cs" />
|
||||
<Compile Include="Dto\ComparedBomResult.cs" />
|
||||
<Compile Include="Dto\MaterialVersions.cs" />
|
||||
<Compile Include="Dto\PdmMaterialBom.cs" />
|
||||
<Compile Include="Dto\RawMaterialOutput.cs" />
|
||||
<Compile Include="Dto\SapEcnQueryOutput.cs" />
|
||||
<Compile Include="Dto\SapPriceInquiryOutput.cs" />
|
||||
@ -114,6 +133,9 @@
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="BomComparisonForm.resx">
|
||||
<DependentUpon>BomComparisonForm.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="BomCostInquiryForm.resx">
|
||||
<DependentUpon>BomCostInquiryForm.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
@ -142,6 +164,7 @@
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="StockInQuiryForm.resx">
|
||||
<DependentUpon>StockInQuiryForm.cs</DependentUpon>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
|
88
StockInQuiry/StockInQuiryForm.Designer.cs
generated
88
StockInQuiry/StockInQuiryForm.Designer.cs
generated
@ -98,10 +98,10 @@
|
||||
// label1
|
||||
//
|
||||
this.label1.AutoSize = true;
|
||||
this.label1.Font = new System.Drawing.Font("微软雅黑", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.label1.Location = new System.Drawing.Point(19, 19);
|
||||
this.label1.Font = new System.Drawing.Font("微软雅黑", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.label1.Location = new System.Drawing.Point(21, 24);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Size = new System.Drawing.Size(153, 37);
|
||||
this.label1.Size = new System.Drawing.Size(114, 28);
|
||||
this.label1.TabIndex = 0;
|
||||
this.label1.Text = "库 存 信 息";
|
||||
//
|
||||
@ -120,9 +120,10 @@
|
||||
// code
|
||||
//
|
||||
this.code.AutoSize = true;
|
||||
this.code.Location = new System.Drawing.Point(30, 15);
|
||||
this.code.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.code.Location = new System.Drawing.Point(39, 15);
|
||||
this.code.Name = "code";
|
||||
this.code.Size = new System.Drawing.Size(84, 28);
|
||||
this.code.Size = new System.Drawing.Size(76, 25);
|
||||
this.code.TabIndex = 0;
|
||||
this.code.Text = "--------";
|
||||
//
|
||||
@ -141,10 +142,10 @@
|
||||
// materialCode
|
||||
//
|
||||
this.materialCode.AutoSize = true;
|
||||
this.materialCode.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.materialCode.Location = new System.Drawing.Point(68, 15);
|
||||
this.materialCode.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.materialCode.Location = new System.Drawing.Point(66, 15);
|
||||
this.materialCode.Name = "materialCode";
|
||||
this.materialCode.Size = new System.Drawing.Size(66, 28);
|
||||
this.materialCode.Size = new System.Drawing.Size(62, 25);
|
||||
this.materialCode.TabIndex = 0;
|
||||
this.materialCode.Text = "编 码";
|
||||
//
|
||||
@ -163,9 +164,10 @@
|
||||
// stock
|
||||
//
|
||||
this.stock.AutoSize = true;
|
||||
this.stock.Location = new System.Drawing.Point(30, 14);
|
||||
this.stock.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.stock.Location = new System.Drawing.Point(39, 14);
|
||||
this.stock.Name = "stock";
|
||||
this.stock.Size = new System.Drawing.Size(84, 28);
|
||||
this.stock.Size = new System.Drawing.Size(76, 25);
|
||||
this.stock.TabIndex = 1;
|
||||
this.stock.Text = "--------";
|
||||
//
|
||||
@ -184,9 +186,10 @@
|
||||
// label9
|
||||
//
|
||||
this.label9.AutoSize = true;
|
||||
this.label9.Location = new System.Drawing.Point(68, 14);
|
||||
this.label9.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.label9.Location = new System.Drawing.Point(66, 14);
|
||||
this.label9.Name = "label9";
|
||||
this.label9.Size = new System.Drawing.Size(66, 28);
|
||||
this.label9.Size = new System.Drawing.Size(62, 25);
|
||||
this.label9.TabIndex = 1;
|
||||
this.label9.Text = "库 存";
|
||||
//
|
||||
@ -205,9 +208,10 @@
|
||||
// reserved
|
||||
//
|
||||
this.reserved.AutoSize = true;
|
||||
this.reserved.Location = new System.Drawing.Point(32, 14);
|
||||
this.reserved.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.reserved.Location = new System.Drawing.Point(41, 14);
|
||||
this.reserved.Name = "reserved";
|
||||
this.reserved.Size = new System.Drawing.Size(84, 28);
|
||||
this.reserved.Size = new System.Drawing.Size(76, 25);
|
||||
this.reserved.TabIndex = 4;
|
||||
this.reserved.Text = "--------";
|
||||
//
|
||||
@ -217,7 +221,7 @@
|
||||
this.panel7.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.panel7.Controls.Add(this.label4);
|
||||
this.panel7.Controls.Add(this.label5);
|
||||
this.panel7.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.panel7.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.panel7.Location = new System.Drawing.Point(557, 181);
|
||||
this.panel7.Margin = new System.Windows.Forms.Padding(10);
|
||||
this.panel7.Name = "panel7";
|
||||
@ -227,9 +231,10 @@
|
||||
// label4
|
||||
//
|
||||
this.label4.AutoSize = true;
|
||||
this.label4.Location = new System.Drawing.Point(66, 14);
|
||||
this.label4.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.label4.Location = new System.Drawing.Point(65, 14);
|
||||
this.label4.Name = "label4";
|
||||
this.label4.Size = new System.Drawing.Size(66, 28);
|
||||
this.label4.Size = new System.Drawing.Size(62, 25);
|
||||
this.label4.TabIndex = 1;
|
||||
this.label4.Text = "预 留";
|
||||
//
|
||||
@ -238,7 +243,7 @@
|
||||
this.label5.AutoSize = true;
|
||||
this.label5.Location = new System.Drawing.Point(48, 10);
|
||||
this.label5.Name = "label5";
|
||||
this.label5.Size = new System.Drawing.Size(0, 28);
|
||||
this.label5.Size = new System.Drawing.Size(0, 25);
|
||||
this.label5.TabIndex = 0;
|
||||
//
|
||||
// panel8
|
||||
@ -256,9 +261,10 @@
|
||||
// applyForQuantity
|
||||
//
|
||||
this.applyForQuantity.AutoSize = true;
|
||||
this.applyForQuantity.Location = new System.Drawing.Point(30, 15);
|
||||
this.applyForQuantity.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.applyForQuantity.Location = new System.Drawing.Point(39, 15);
|
||||
this.applyForQuantity.Name = "applyForQuantity";
|
||||
this.applyForQuantity.Size = new System.Drawing.Size(84, 28);
|
||||
this.applyForQuantity.Size = new System.Drawing.Size(76, 25);
|
||||
this.applyForQuantity.TabIndex = 2;
|
||||
this.applyForQuantity.Text = "--------";
|
||||
//
|
||||
@ -277,9 +283,10 @@
|
||||
// label6
|
||||
//
|
||||
this.label6.AutoSize = true;
|
||||
this.label6.Location = new System.Drawing.Point(15, 15);
|
||||
this.label6.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.label6.Location = new System.Drawing.Point(17, 15);
|
||||
this.label6.Name = "label6";
|
||||
this.label6.Size = new System.Drawing.Size(180, 28);
|
||||
this.label6.Size = new System.Drawing.Size(164, 25);
|
||||
this.label6.TabIndex = 1;
|
||||
this.label6.Text = "未清采购申请数量";
|
||||
//
|
||||
@ -298,9 +305,10 @@
|
||||
// orderForGoodsQuantity
|
||||
//
|
||||
this.orderForGoodsQuantity.AutoSize = true;
|
||||
this.orderForGoodsQuantity.Location = new System.Drawing.Point(32, 15);
|
||||
this.orderForGoodsQuantity.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.orderForGoodsQuantity.Location = new System.Drawing.Point(41, 15);
|
||||
this.orderForGoodsQuantity.Name = "orderForGoodsQuantity";
|
||||
this.orderForGoodsQuantity.Size = new System.Drawing.Size(84, 28);
|
||||
this.orderForGoodsQuantity.Size = new System.Drawing.Size(76, 25);
|
||||
this.orderForGoodsQuantity.TabIndex = 5;
|
||||
this.orderForGoodsQuantity.Text = "--------";
|
||||
//
|
||||
@ -319,9 +327,10 @@
|
||||
// label8
|
||||
//
|
||||
this.label8.AutoSize = true;
|
||||
this.label8.Location = new System.Drawing.Point(14, 15);
|
||||
this.label8.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.label8.Location = new System.Drawing.Point(13, 15);
|
||||
this.label8.Name = "label8";
|
||||
this.label8.Size = new System.Drawing.Size(180, 28);
|
||||
this.label8.Size = new System.Drawing.Size(164, 25);
|
||||
this.label8.TabIndex = 1;
|
||||
this.label8.Text = "未清采购订单数量";
|
||||
//
|
||||
@ -340,9 +349,10 @@
|
||||
// inventoryDate
|
||||
//
|
||||
this.inventoryDate.AutoSize = true;
|
||||
this.inventoryDate.Location = new System.Drawing.Point(30, 15);
|
||||
this.inventoryDate.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.inventoryDate.Location = new System.Drawing.Point(39, 15);
|
||||
this.inventoryDate.Name = "inventoryDate";
|
||||
this.inventoryDate.Size = new System.Drawing.Size(84, 28);
|
||||
this.inventoryDate.Size = new System.Drawing.Size(76, 25);
|
||||
this.inventoryDate.TabIndex = 3;
|
||||
this.inventoryDate.Text = "--------";
|
||||
//
|
||||
@ -361,9 +371,10 @@
|
||||
// label11
|
||||
//
|
||||
this.label11.AutoSize = true;
|
||||
this.label11.Location = new System.Drawing.Point(29, 13);
|
||||
this.label11.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.label11.Location = new System.Drawing.Point(39, 13);
|
||||
this.label11.Name = "label11";
|
||||
this.label11.Size = new System.Drawing.Size(138, 28);
|
||||
this.label11.Size = new System.Drawing.Size(126, 25);
|
||||
this.label11.TabIndex = 1;
|
||||
this.label11.Text = "库存更新日期";
|
||||
//
|
||||
@ -382,9 +393,10 @@
|
||||
// state
|
||||
//
|
||||
this.state.AutoSize = true;
|
||||
this.state.Location = new System.Drawing.Point(32, 15);
|
||||
this.state.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.state.Location = new System.Drawing.Point(41, 15);
|
||||
this.state.Name = "state";
|
||||
this.state.Size = new System.Drawing.Size(84, 28);
|
||||
this.state.Size = new System.Drawing.Size(76, 25);
|
||||
this.state.TabIndex = 6;
|
||||
this.state.Text = "--------";
|
||||
//
|
||||
@ -403,9 +415,10 @@
|
||||
// label13
|
||||
//
|
||||
this.label13.AutoSize = true;
|
||||
this.label13.Location = new System.Drawing.Point(66, 13);
|
||||
this.label13.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.label13.Location = new System.Drawing.Point(65, 13);
|
||||
this.label13.Name = "label13";
|
||||
this.label13.Size = new System.Drawing.Size(66, 28);
|
||||
this.label13.Size = new System.Drawing.Size(62, 25);
|
||||
this.label13.TabIndex = 1;
|
||||
this.label13.Text = "状 态";
|
||||
//
|
||||
@ -416,6 +429,7 @@
|
||||
this.panel16.Controls.Add(this.pictureBox1);
|
||||
this.panel16.Controls.Add(this.pictureBox2);
|
||||
this.panel16.Controls.Add(this.pictureBox3);
|
||||
this.panel16.Font = new System.Drawing.Font("微软雅黑", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||||
this.panel16.Location = new System.Drawing.Point(12, 424);
|
||||
this.panel16.Name = "panel16";
|
||||
this.panel16.Size = new System.Drawing.Size(1054, 76);
|
||||
@ -423,7 +437,6 @@
|
||||
//
|
||||
// pictureBox1
|
||||
//
|
||||
this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
|
||||
this.pictureBox1.Location = new System.Drawing.Point(790, 12);
|
||||
this.pictureBox1.Name = "pictureBox1";
|
||||
@ -434,7 +447,6 @@
|
||||
//
|
||||
// pictureBox2
|
||||
//
|
||||
this.pictureBox2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.pictureBox2.Image = global::StockInQuiry.Properties.Resources.公司;
|
||||
this.pictureBox2.Location = new System.Drawing.Point(868, 14);
|
||||
this.pictureBox2.Name = "pictureBox2";
|
||||
@ -445,7 +457,6 @@
|
||||
//
|
||||
// pictureBox3
|
||||
//
|
||||
this.pictureBox3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
||||
this.pictureBox3.Image = global::StockInQuiry.Properties.Resources.启威星logo;
|
||||
this.pictureBox3.Location = new System.Drawing.Point(14, 14);
|
||||
this.pictureBox3.Name = "pictureBox3";
|
||||
@ -456,8 +467,7 @@
|
||||
//
|
||||
// StockInQuiryForm
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
|
||||
this.BackColor = System.Drawing.SystemColors.InactiveBorder;
|
||||
this.ClientSize = new System.Drawing.Size(1078, 512);
|
||||
this.Controls.Add(this.panel16);
|
||||
|
@ -16,7 +16,7 @@ namespace StockInQuiry
|
||||
{
|
||||
public partial class StockInQuiryForm : Form
|
||||
{
|
||||
public StockInQuiryForm(string materialCode)
|
||||
public StockInQuiryForm(string materialCode, string environment)
|
||||
{
|
||||
InitializeComponent();
|
||||
code.Text = materialCode;
|
||||
@ -25,8 +25,7 @@ namespace StockInQuiry
|
||||
state.Text = "查询失败";
|
||||
}
|
||||
|
||||
string url = "http://192.168.10.101:5005/api/stockInquiry/getProductInventory/" + materialCode;
|
||||
//string url = "http://localhost:5005/api/stockInquiry/getProductInventory/" + materialCode;
|
||||
string url = environment + "api/stockInquiry/getProductInventory/" + materialCode;
|
||||
if (!string.IsNullOrEmpty(materialCode))
|
||||
{
|
||||
FetchProductInventory(url);
|
||||
@ -41,11 +40,9 @@ namespace StockInQuiry
|
||||
{
|
||||
try
|
||||
{
|
||||
// Make the GET request
|
||||
HttpResponseMessage response = await client.GetAsync(url);
|
||||
response.EnsureSuccessStatusCode(); // Will throw an exception if the status code is not 2xx
|
||||
response.EnsureSuccessStatusCode();
|
||||
|
||||
// Read the response content
|
||||
string content = await response.Content.ReadAsStringAsync();
|
||||
SapEcnQueryOutput result = JsonConvert.DeserializeObject<SapEcnQueryOutput>(content);
|
||||
|
||||
@ -55,7 +52,7 @@ namespace StockInQuiry
|
||||
reserved.Text = result.result.Bdmng;
|
||||
applyForQuantity.Text = result.result.ZwqslPr;
|
||||
orderForGoodsQuantity.Text = result.result.ZwqslPo;
|
||||
inventoryDate.Text = result.result.DateUpdated.ToString("yy-MM-dd HH:dd:ss");
|
||||
inventoryDate.Text = result.result.DateUpdated.ToString("yyyy-MM-dd HH:dd:ss");
|
||||
state.Text = "查询成功";
|
||||
}
|
||||
else
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,4 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="EPPlus" version="8.0.1" targetFramework="net451" />
|
||||
<package id="EPPlus.Interfaces" version="8.0.0" targetFramework="net451" />
|
||||
<package id="Microsoft.Office.Interop.Excel" version="15.0.4795.1001" targetFramework="net451" />
|
||||
<package id="Newtonsoft.Json" version="13.0.3" targetFramework="net462" />
|
||||
</packages>
|
Loading…
Reference in New Issue
Block a user