구매담당자 메세지 및 수량 항목 추가

This commit is contained in:
chi
2023-08-17 11:13:18 +09:00
parent 40112e039f
commit fed728d82f
15 changed files with 2924 additions and 1010 deletions

View File

@@ -895,6 +895,13 @@ namespace FEQ0000
this.label1.Text = $"비고:{dr.bigo.Replace("\r", "").Replace("\n", "")}";
else
this.label1.Text = $"프로젝트:{dr.project},비고:{dr.bigo.Replace("\r", "").Replace("\n", "")}";
if (dr.IschkremarkNull() == false && dr.chkremark.Length > 0)
{
this.label2.Text = $"구매담당비고:{dr.chkremark}";
this.label2.Visible = true;
}
else this.label2.Visible = false;
}
private void toolStripButton4_Click(object sender, EventArgs e)