71 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| //190806    chi getWorkWeek 추가
 | |
| //190805    chi MakeCSVString 추가
 | |
| //180903    chi makefilepath/ ftppath 추가
 | |
| //180807    chi rad2deg, deg2rad 추가
 | |
| //180625    chi  ToCharHexString,ToStringFromHexString 추가
 | |
| //180624    chi isLocalApplication 추가
 | |
| //180618    chi GetCSVBuffer 추가
 | |
| //180614    chi map 명령어 추가
 | |
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Diagnostics;
 | |
| using System.IO;
 | |
| using System.Linq;
 | |
| using System.Net;
 | |
| using System.Text;
 | |
| using System.Windows.Forms;
 | |
| 
 | |
| namespace FCOMMON
 | |
| {
 | |
|     public enum eGroupPermission
 | |
|     {
 | |
|         menu_purchase=0,
 | |
|         menu_project,
 | |
|         menu_history,
 | |
|         menu_jago,
 | |
|         menu_equipment,
 | |
|         menu_workday,
 | |
|         purchase_adv,
 | |
|         menu_docu,
 | |
|         menu_logdata,
 | |
|         jobreport_kisul,
 | |
|     }
 | |
|   
 | |
|     public static class info
 | |
|     {
 | |
|         public struct sUserInfo
 | |
|         {
 | |
|             public string title;
 | |
|             public string tel;
 | |
|             public string hp;            
 | |
|             public string no;
 | |
|             public string nameE;
 | |
|             public string ShortID;            
 | |
|             public string nameK;
 | |
|             public string dept;
 | |
|             public string email;
 | |
|             public string process;
 | |
|             public int level;
 | |
|             public string gcode;
 | |
|             public int gpermission;
 | |
|             public int permission;
 | |
|         }
 | |
| 
 | |
|         public static Boolean NotShowJobReportview = false;
 | |
|         public static double dollertowon = 1200;
 | |
|         public static Boolean ShowBuyerror = true;
 | |
|         public static Boolean Disable_8hourover = false;
 | |
|         public static sUserInfo Login;
 | |
|         public static string Path;
 | |
|         public static string CS;
 | |
|         public static string libxlCompany = "Amkor Technology korea, Inc";
 | |
|         public static string libxlKey = "windows-282b2b0800c5e0016bb06a6fafjfd6o8";
 | |
|         public static int camIndex = 0;
 | |
|         //public static string datapath;
 | |
|         //public static string ftp_id = "project";
 | |
|         //public static string ftp_pw = "Amkor1234";
 | |
|         //public static int ftp_port = 2121;
 | |
|         //public static bool ftp_passive = true;
 | |
|     }
 | |
| }
 | 
