1
duhe
2025-01-09 90b1cce02de94cc36870310bb7c54a8b15b4101d
1
10个文件已修改
11 ■■■■ 已修改文件
DAL/公用/frmHlpBillList1.cs 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
PayM/bin/x86/Debug/BLL.dll 补丁 | 查看 | 原始文档 | blame | 历史
PayM/bin/x86/Debug/BLL.pdb 补丁 | 查看 | 原始文档 | blame | 历史
PayM/bin/x86/Debug/DAL.dll 补丁 | 查看 | 原始文档 | blame | 历史
PayM/bin/x86/Debug/DAL.pdb 补丁 | 查看 | 原始文档 | blame | 历史
PayM/bin/x86/Debug/PayM.dll 补丁 | 查看 | 原始文档 | blame | 历史
PayM/bin/x86/Debug/PayM.pdb 补丁 | 查看 | 原始文档 | blame | 历史
PayM/obj/x86/Debug/PayM.dll 补丁 | 查看 | 原始文档 | blame | 历史
PayM/obj/x86/Debug/PayM.pdb 补丁 | 查看 | 原始文档 | blame | 历史
WarM/条码打印/Gy_BarCodeBill_automaticallyByPLC_New_Change.cs 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
DAL/¹«ÓÃ/frmHlpBillList1.cs
@@ -55,7 +55,8 @@
            }
            sSql = frmCondition.SqlStr + sWhere ;
            sSql = sSql.Replace("AND ä½œåºŸäºº=''", "");
 
            //
            DSet = SubCn.RunProcReturn(sSql, ViewName, ref DBUtility.ClsPub.sExeReturnInfo);
PayM/bin/x86/Debug/BLL.dll
Binary files differ
PayM/bin/x86/Debug/BLL.pdb
Binary files differ
PayM/bin/x86/Debug/DAL.dll
Binary files differ
PayM/bin/x86/Debug/DAL.pdb
Binary files differ
PayM/bin/x86/Debug/PayM.dll
Binary files differ
PayM/bin/x86/Debug/PayM.pdb
Binary files differ
PayM/obj/x86/Debug/PayM.dll
Binary files differ
PayM/obj/x86/Debug/PayM.pdb
Binary files differ
WarM/ÌõÂë´òÓ¡/Gy_BarCodeBill_automaticallyByPLC_New_Change.cs
@@ -1363,9 +1363,9 @@
            {
                string message = Encoding.UTF8.GetString(e.Message);
                List<MQTT_MainEntity> mQTT_MainEntity = getObjectByJson_Xs_OutDoorBillMain(message);
                for(int i = 0; i < mQTT_MainEntity[0].data.Count; i++)
                for(int i = 0; i < mQTT_MainEntity[0].values.Count; i++)
                {
                    if (mQTT_MainEntity[0].data[i].id == textBox_WorkPositionParams.Text && mQTT_MainEntity[0].data[i].value == true)
                    if (mQTT_MainEntity[0].values[i].id == textBox_WorkPositionParams.Text && mQTT_MainEntity[0].values[i].v == true)
                    {
                        produceQty += 1;
                    }
@@ -2635,12 +2635,12 @@
    public class MQTT_MainEntity
    {
        public string timestamp;
        public List<MQTT_SubEntity> data;
        public List<MQTT_SubEntity> values;
    }
    public class MQTT_SubEntity
    {   
        public string id;                           //工位
        public bool value;                          //结果
        public bool v;                              //结果
        public long t;                              //时间戳
    }
    #endregion