init: 导入项目到 meswork Gitea
This commit is contained in:
@@ -0,0 +1,127 @@
|
||||
using System;
|
||||
using bizFacade;
|
||||
//using SystemFramework;
|
||||
|
||||
namespace MesServerFunctions
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 此类用于向WEB发送各种类型消息
|
||||
/// </summary>
|
||||
partial class Functions_BASE_22
|
||||
{
|
||||
|
||||
// /// <summary>
|
||||
// /// 批量发送WEB消息(Value为BOOL值)
|
||||
// /// </summary>
|
||||
// /// <param name="MessageNumm">消息编号组合</param>
|
||||
// /// <param name="Value">消息值组合</param>
|
||||
// /// <param name="OpName">工位号</param>
|
||||
//void Sendmessage(string MessageNumm,string Value, string OpName)
|
||||
//{
|
||||
// for (int i=0;i<MessageNumm.Length;i++)
|
||||
// {
|
||||
// Sendmessage(MessageNumm[i], Value[i].ToString(), OpName);
|
||||
|
||||
// }
|
||||
//}
|
||||
// /// <summary>
|
||||
// /// 选择发送给WEB的消息
|
||||
// /// </summary>
|
||||
// /// <param name="Num">消息类型</param>
|
||||
// /// <param name="OpName">消息工位</param>
|
||||
//string Sendmessage(char Num,string Value, string OpName)
|
||||
//{
|
||||
// string SendMessage;
|
||||
// string result = "";
|
||||
// switch (Num)
|
||||
// {
|
||||
// case '1':
|
||||
// //1(直接在界面通过选择机型确认工序内容)
|
||||
// SendMessage = "MES|ProcessList|" + OpName + "|" + Value;
|
||||
// result = AsyncSendMessage(SendMessage);
|
||||
// break;
|
||||
// case '2':
|
||||
// //2显示物料
|
||||
// SendMessage = "MES|MaterialList|" + OpName + "|" + Value;
|
||||
// result = AsyncSendMessage(SendMessage);
|
||||
// break;
|
||||
// case '3':
|
||||
// //3显示操作指导图片
|
||||
// SendMessage = "MES|PicShow|" + OpName + "|" + Value;
|
||||
// result = AsyncSendMessage(SendMessage);
|
||||
// break;
|
||||
// case '4':
|
||||
// //4订单完工模块刷新完成数量
|
||||
// SendMessage = "MES|OrderFormList|" + OpName + "|" + Value;
|
||||
// AsyncSendMessage(SendMessage);
|
||||
// break;
|
||||
// case '5':
|
||||
// SendMessage = "MES|ShowMoby|" + OpName + "|" + Value;
|
||||
// result = AsyncSendMessage(SendMessage);
|
||||
// break;
|
||||
// case '6':
|
||||
// SendMessage = "MES|MaterialCheckPosition|" + OpName + "|" +Value;
|
||||
// result = AsyncSendMessage(SendMessage);
|
||||
// break;
|
||||
// case '7':
|
||||
// SendMessage = "MES|WorkStart|" + OpName + "|" + Value;
|
||||
// result = AsyncSendMessage(SendMessage);
|
||||
// break;
|
||||
// case '8'://清除MES生成编号
|
||||
|
||||
// break;
|
||||
// case '9':
|
||||
// SendMessage = "MES|ConfirmOkGo|" + OpName + "|" + Value;
|
||||
// result = AsyncSendMessage(SendMessage);
|
||||
// break;
|
||||
// case 'a':
|
||||
// SendMessage = "MES|FixAllow|" + OpName + "|" + Value;
|
||||
// result = AsyncSendMessage(SendMessage);
|
||||
// break;
|
||||
// }
|
||||
// return result;
|
||||
//}
|
||||
// /// <summary>
|
||||
// /// 向WEB发送信息(value为字符串)
|
||||
// /// </summary>
|
||||
// /// <param name="Command">消息种类</param>
|
||||
// /// <param name="Value">消息内容</param>
|
||||
// /// <param name="OpName">工位号</param>
|
||||
// string SendInfomation(string Command, string Value, string OpName)
|
||||
// {
|
||||
// string SendMessage = "MES|" + Command + "|" + OpName + "|" + Value;
|
||||
// return AsyncSendMessage(SendMessage);
|
||||
// }
|
||||
|
||||
|
||||
///// <summary>
|
||||
///// 发送在线产量、在线节拍
|
||||
///// </summary>
|
||||
///// <param name="OpName"></param>
|
||||
///// <param name="tagValue"></param>
|
||||
//private void SendActuallyCount(string OpName, int tagValue)
|
||||
//{
|
||||
// //当工件离开时,更新在线产量、在线节拍
|
||||
// if (tagValue == 0)
|
||||
// {
|
||||
// try
|
||||
// {
|
||||
// int opNameCount = 0;//在线产量
|
||||
// int opNameCountTime = 0;//在线节拍
|
||||
// //基本数据_工作日历_班次产量查询_New
|
||||
// BaseDataSystemMES.OpNameCount_New(OpName, out opNameCount, out opNameCountTime);
|
||||
// string SendMessage;
|
||||
// SendMessage = "MES|ActuallyCount|" + OpName + "|" + opNameCount.ToString() + "&" + opNameCountTime.ToString();
|
||||
// AsyncSendMessage(SendMessage);
|
||||
// }
|
||||
// catch (Exception err)
|
||||
// {
|
||||
// //ApplicationLog.WriteLog(err, "Function02:SendActuallyCount");
|
||||
// }
|
||||
// }
|
||||
//}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
using bizFacade;
|
||||
//using SystemFramework;
|
||||
using MesServerWork;
|
||||
using DataLinkMesWork;
|
||||
|
||||
namespace MesServerFunctions
|
||||
{
|
||||
partial class Functions_BASE_22
|
||||
{
|
||||
/// <summary>
|
||||
/// 发送信息到MES通讯服务器或者其他的
|
||||
/// </summary>
|
||||
/// <param name="Message"></param>
|
||||
private string AsyncSendMessage(string Message)
|
||||
{
|
||||
return MIS_BASE.asyncSendMessage(Message);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 发送提示消息
|
||||
/// </summary>
|
||||
/// <param name="Message"></param>
|
||||
private void AsyncSendMessage_Notice(string opname, string notice)
|
||||
{
|
||||
//通知Web界面
|
||||
BaseDataSystemMES.Web_Notice_Insert(opname, notice);
|
||||
string SendMessage = "MES|Notice|" + opname + "|" + "1";
|
||||
MIS_BASE.asyncSendMessage(SendMessage);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 发送信息到打印机
|
||||
/// </summary>
|
||||
/// <param name="Message"></param>
|
||||
private void asyncSendMessageToMark(string Message)
|
||||
{
|
||||
string messageSend = (string)Message;
|
||||
//UDPClientSend.Send_ALL(ApplicationConfig.MES_MarkPortNum, messageSend);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 发送信息到LED
|
||||
/// </summary>
|
||||
/// <param name="Message"></param>
|
||||
private void asyncSendMessageLED(string OpName)
|
||||
{
|
||||
//发送到大屏幕显示 41104
|
||||
string strMessage = "MIS|" + OpName + "|" + "0" + "|" + "1";
|
||||
//UDPClientSend.Send_ALL(ApplicationConfig.Port_ShowLED_ProductCount, strMessage);
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Reference in New Issue
Block a user