2023-06-30

This commit is contained in:
2023-06-30 10:47:07 +08:00
parent ccc16a5994
commit 6488cc6981
4 changed files with 60 additions and 11 deletions
@@ -26,6 +26,15 @@ namespace FineUIPro.Web.HJGL.WeldingManage
/// 安装口总达因
/// </summary>
public static string FieldSumSize = "0";
/// <summary>
/// 预制口总数量
/// </summary>
public static string ShopSum = "0";
/// <summary>
/// 安装口总数量
/// </summary>
public static string FieldSum = "0";
protected void Page_Load(object sender, EventArgs e)
{
@@ -253,6 +262,8 @@ namespace FineUIPro.Web.HJGL.WeldingManage
}
this.lbShopSize.Text = ShopSumSize;
this.lbFiledSize.Text = FieldSumSize;
this.lbShopSum.Text = ShopSum;
this.lbFiledSum.Text = FieldSum;
}
}
@@ -462,6 +473,8 @@ namespace FineUIPro.Web.HJGL.WeldingManage
where x.JointAttribute == "安装口"
select x
).Count();
ShopSum = ShopNum.ToString();
FieldSum = FieldSum.ToString();
AllNum = ShopNum + FieldNum;
if (AllNum > 0)
@@ -543,6 +556,8 @@ namespace FineUIPro.Web.HJGL.WeldingManage
where x.JointAttribute == "安装口"
select x
).Count();
ShopSum = ShopNum.ToString();
FieldSum = FieldSum.ToString();
AllNum = ShopNum + FieldNum;
if (AllNum > 0)