• Y
  • All List
  • Feedback
    • This Project
    • This Group
    • All Projects
My profile Account settings Log out
  • Project
  • Groups
Loading...
  • Log in
  • Sign up
OLD_Project / 한미칼라_본점 star
  • Project homeH
  • CodeC
  • IssueI
  • Pull requestP
  • Review R
  • MilestoneM
  • BoardB
  • Files
  • Commit
  • Branches
한미칼라_본점HANMI_SALEReportInitialManagerReport.cs
Download as .zip file
File name
Commit message
Commit date
.svn
초기 커밋.
2022-03-31
02_Module
ㅇㅇ
2022-04-22
HANMI_J_SALE
업데이트
2022-04-06
HANMI_MACH
업데이트
2022-04-06
HANMI_SALE
ㅇㅇ
2022-04-22
HANMI_STD
업데이트
2022-04-06
HANMI_WORK
업데이트
2022-04-06
HM_WORK
업데이트
2022-04-06
.gitattributes
.gitignore 및 .gitattributes를 추가하세요.
2022-03-31
.gitignore
.gitignore 및 .gitattributes를 추가하세요.
2022-03-31
HanmiColor.sln
초기 커밋.
2022-03-31
File name
Commit message
Commit date
Popup
업데이트
2022-04-06
Properties
초기 커밋.
2022-03-31
Report
ㅇㅇ
2022-04-22
AcceptManager.Designer.cs
초기 커밋.
2022-03-31
AcceptManager.cs
업데이트
2022-04-06
AcceptManager.resx
초기 커밋.
2022-03-31
BillManager.Designer.cs
초기 커밋.
2022-03-31
BillManager.cs
업데이트
2022-04-06
BillManager.resx
초기 커밋.
2022-03-31
ChangeOrderDate.Designer.cs
초기 커밋.
2022-03-31
ChangeOrderDate.cs
업데이트
2022-04-06
ChangeOrderDate.resx
초기 커밋.
2022-03-31
CostManager.Designer.cs
초기 커밋.
2022-03-31
CostManager.cs
업데이트
2022-04-06
CostManager.resx
초기 커밋.
2022-03-31
CreditDaySalesList.Designer.cs
초기 커밋.
2022-03-31
CreditDaySalesList.cs
업데이트
2022-04-06
CreditDaySalesList.resx
초기 커밋.
2022-03-31
CustAccountList.Designer.cs
초기 커밋.
2022-03-31
CustAccountList.cs
업데이트
2022-04-06
CustAccountList.resx
초기 커밋.
2022-03-31
HANMI_SALE.csproj
업데이트
2022-04-06
InitialManager.Designer.cs
초기 커밋.
2022-03-31
InitialManager.cs
업데이트
2022-04-06
InitialManager.resx
초기 커밋.
2022-03-31
OrderManager.Designer.cs
업데이트
2022-04-06
OrderManager.cs
업데이트
2022-04-06
OrderManager.resx
업데이트
2022-04-06
SaleForECount.cs
업데이트
2022-04-06
WorkManager.Designer.cs
초기 커밋.
2022-03-31
WorkManager.cs
업데이트
2022-04-06
WorkManager.resx
초기 커밋.
2022-03-31
File name
Commit message
Commit date
BillManagerReport.Designer.cs
업데이트
2022-04-22
BillManagerReport.cs
ㅇㅇ
2022-04-22
BillManagerReport.resx
초기 커밋.
2022-03-31
CostInputReport.Designer.cs
초기 커밋.
2022-03-31
CostInputReport.cs
초기 커밋.
2022-03-31
CostInputReport.resx
초기 커밋.
2022-03-31
CostManagerReport.Designer.cs
초기 커밋.
2022-03-31
CostManagerReport.cs
초기 커밋.
2022-03-31
CostManagerReport.resx
초기 커밋.
2022-03-31
InitialInputReport.Designer.cs
초기 커밋.
2022-03-31
InitialInputReport.cs
초기 커밋.
2022-03-31
InitialInputReport.resx
초기 커밋.
2022-03-31
InitialManagerReport.Designer.cs
초기 커밋.
2022-03-31
InitialManagerReport.cs
초기 커밋.
2022-03-31
InitialManagerReport.resx
초기 커밋.
2022-03-31
WorkManagerReport.Designer.cs
초기 커밋.
2022-03-31
WorkManagerReport.cs
초기 커밋.
2022-03-31
WorkManagerReport.resx
초기 커밋.
2022-03-31
WorkOrderReport.Designer.cs
초기 커밋.
2022-03-31
WorkOrderReport.cs
초기 커밋.
2022-03-31
WorkOrderReport.resx
초기 커밋.
2022-03-31
sbkim 2022-03-31 3fc348f 초기 커밋. UNIX
Raw Open in browser Change history
using System; using System.Drawing; using System.Collections; using System.ComponentModel; using DevExpress.XtraReports.UI; using PublicLib; using System.Data; namespace HANMI_SALE { public partial class InitialManagerReport : DevExpress.XtraReports.UI.XtraReport { // private DataTable m_Data; public InitialManagerReport() { InitializeComponent(); } public void SetData(DataTable data, string order_sdate, string order_fdate) { xrLabel_ORDER_DATE.Text = "일자 : " + order_sdate + " ~ " + order_fdate; xrLabel_Today.Text = "Date : " + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"); xrLabel_COMP_NM.Text = ConstClass._COMP_NM; xrTableCell_ORDER_NO.DataBindings.Add("Text", data, "ORDER_NO"); xrTableCell_LN_SEQ.DataBindings.Add("Text", data, "LN_SEQ"); xrTableCell_CUST_NM.DataBindings.Add("Text", data, "CUST_NM"); xrTableCell_FILE_NM.DataBindings.Add("Text", data, "FILE_NM"); xrTableCell_ITEM_NM.DataBindings.Add("Text", data, "ITEM_NM"); xrTableCell_ORDER_NORM.DataBindings.Add("Text", data, "ORDER_NORM"); xrTableCell_ORDER_QTY.DataBindings.Add("Text", data, "ORDER_QTY", "{0:#,###}"); xrTableCell_CURR_UNIT_MY.DataBindings.Add("Text", data, "CURR_UNIT_MY", "{0:#,###}"); xrTableCell_CURR_MY.DataBindings.Add("Text", data, "CURR_MY", "{0:#,###}"); xrTableCell_VAT_MY.DataBindings.Add("Text", data, "VAT_MY", "{0:#,###}"); xrTableCell_ORDER_MY.DataBindings.Add("Text", data, "ORDER_MY", "{0:#,###}"); xrTableCell_LN_RMK.DataBindings.Add("Text", data, "LN_RMK"); this.DataSource = data; CommonPreview form = new CommonPreview("견적 현황", true, false); form.SetH1Report(this); form.ShowDialog(); } } }

          
        
    
    
Copyright Yona authors & © NAVER Corp. Supported by D2 Program

or
Sign in with github login with Google Sign in with Google
Reset password | Sign up