Esempio n. 1
0
        public void Refresh_ChatThread(int ws_pcpo_id)
        {
            if (_ucChat != null)
            {
                _ucChat.Enabled = false;

                if (ws_pcpo_id >= 0)
                {
                    if (isPOHeaderRetrieved())
                    {
                        _ucChat.Enabled = true;
                        _ucChat.LoadChatThread(_Chat_FieldLink_ID, ws_pcpo_id);
                    }
                }
            }
        }
Esempio n. 2
0
        public void RefreshChatThread(int ws_inv_id)
        {
            if (Chat != null)
            {
                Chat.Enabled = false;

                if (ws_inv_id > 0)
                {
                    Chat.Enabled = true;
                }
                Chat.LoadChatThread(_Chat_FieldLink_ID, ws_inv_id);
            }
        }
Esempio n. 3
0
        public override void LoadAlert(int AlertID, string Subject, string Module, DateTime Received, string Notes, int DetailID)
        {
            base.LoadAlert(AlertID, Subject, Module, Received, Notes, DetailID);

            _ucChat.LoadChatThread(DetailID);
        }