ConfigFreeFields.ascx.cs :  » CRM-ERP » Tustena-CRM » Digita » Tustena » Admin » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » CRM ERP » Tustena CRM 
Tustena CRM » Digita » Tustena » Admin » ConfigFreeFields.ascx.cs
/// <license>TUSTENA PUBLIC LICENSE v1.0</license>
/// <copyright>
/// Portions Copyright (c) 2003-2006 Digita S.r.l. All Rights Reserved.
///
/// Tustena CRM is a trademark of:
/// Digita S.r.l.
/// Viale Enrico Fermi 14/z
/// 31011 Asolo (Italy)
/// Tel. +39-0423-951251
/// Mail. info@digita.it
///
/// This file contains Original Code and/or Modifications of Original Code
/// as defined in and that are subject to the Tustena Public Source License
/// Version 1.0 (the 'License'). You may not use this file except in
/// compliance with the License. Please obtain a copy of the License at
/// http://www.tustena.com/TPL/ and read it before using this
// file.
///
/// The Original Code and all software distributed under the License are
/// distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
/// EXPRESS OR IMPLIED, AND DIGITA S.R.L. HEREBY DISCLAIMS ALL SUCH WARRANTIES,
/// INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
/// FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
/// Please see the License for the specific language governing rights and
/// limitations under the License.
///
/// YOU MAY NOT REMOVE OR ALTER THIS COPYRIGHT NOTICE!
/// </copyright>

using System.Text;
using System.Web.UI;
using Digita.Tustena.Core;
using Digita.Tustena.Database;
using System;
using System.Data;
using System.Web;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using Digita.Tustena.Common;

namespace Digita.Tustena.Admin{
  public partial class ConfigFreeFields : System.Web.UI.UserControl
  {
    private UserConfig UC = new UserConfig();

    protected void Page_Load(object sender, System.EventArgs e)
    {
      UC = (UserConfig) HttpContext.Current.Session["userconfig"];
      if(!Page.IsPostBack)
      {
        SubmitContact.Text =Root.rm.GetString("Fretxt6");
        BtnNew.Text =Root.rm.GetString("Fretxt21");

        ListItem lt = new ListItem();
        lt.Value = "1";
        lt.Text =Root.rm.GetString("Fretxt4");
        Type.Items.Add(lt);
        lt = new ListItem();
        lt.Value = "2";
        lt.Text =Root.rm.GetString("Fretxt5");
        Type.Items.Add(lt);
        lt = new ListItem();
        lt.Value = "3";
        lt.Text =Root.rm.GetString("Fretxt11");
        Type.Items.Add(lt);
        lt = new ListItem();
                lt.Value = "4";
                lt.Text = Root.rm.GetString("Fretxt12");
                Type.Items.Add(lt);

        Type.Attributes.Add("onchange", "ShowHideItems(this);");
      }
    }

    public void TabSwitch()
    {
      TabSwitch(false);
    }

    public void TabSwitch(bool refresh)
    {
      switch (Session["TableFreeField"].ToString())
      {
        case "Base_Companies":
                    if (refresh) FillRepeaterFields(CRMTables.Base_Companies);
          break;
        case "Base_Contacts":
                    if (refresh) FillRepeaterFields(CRMTables.Base_Contacts);
          break;
        case "CRM_Leads":
                    if (refresh) FillRepeaterFields(CRMTables.CRM_Leads);
          break;
      }

    }



    public void SetFreeField(CRMTables table)
    {
      AddContactFields.Visible = false;
      switch (table)
      {
        case CRMTables.Base_Companies:
          Session["TableFreeField"] = "Base_Companies";
                    FillRepeaterFields(CRMTables.Base_Companies);
          break;
                case CRMTables.Base_Contacts:
          Session["TableFreeField"] = "Base_Contacts";
                    FillRepeaterFields(CRMTables.Base_Contacts);
          break;
                case CRMTables.CRM_Leads:
          Session["TableFreeField"] = "CRM_Leads";
                    FillRepeaterFields(CRMTables.CRM_Leads);
          break;
      }
      TabSwitch();

    }

    private void FillRepeaterFields(CRMTables table)
    {
      RepContacts.DataSource = DatabaseConnection.CreateDataset(String.Format("SELECT * FROM ADDEDFIELDS WHERE TABLENAME={0} ORDER BY VIEWORDER", (byte)table));
      RepContacts.DataBind();
      RepContacts.Visible = true;

      DataSet ds = DatabaseConnection.CreateDataset("SELECT * FROM ADDEDFIELD_DROPDOWN WHERE REFERENCETABLE=" + (byte) table);
      FieldRef.Items.Clear();
      foreach (DataRow dr in ds.Tables[0].Rows)
      {
        ListItem li = new ListItem();
        li.Text =Root.rm.GetString("SQLFree" + dr["rmValue"].ToString());
        li.Value = dr["ID"].ToString();
        FieldRef.Items.Add(li);
      }
      FieldRef.Items.Insert(0,Root.rm.GetString("SQLFree0"));
      FieldRef.Items[0].Value = "0";

    }

    public void FieldRef_Change(object sender, EventArgs e)
    {
      StringBuilder query = new StringBuilder();
      DataSet ds = DatabaseConnection.CreateDataset("SELECT * FROM ADDEDFIELD_DROPDOWN WHERE ID=" + DatabaseConnection.FilterInjection(FieldRef.SelectedValue));
      if (ds.Tables[0].Rows.Count > 0)
      {
        DataRow dr = ds.Tables[0].Rows[0];
        switch (dr["QueryType"].ToString())
        {
          case "0":
            query.AppendFormat("SELECT {0} AS V1,{1} AS V2 FROM {2} ", dr["SonFieldValue"].ToString(), dr["SonFieldTxt"].ToString(), dr["SonTable"].ToString());
            query.AppendFormat("WHERE LANG='{0}'", UC.Culture.Substring(0, 2));
            break;
          case "1":
            query.AppendFormat("SELECT {0} AS V1,{1} AS V2 FROM {2} ", dr["SonFieldValue"].ToString(), dr["SonFieldTxt"].ToString(), dr["SonTable"].ToString());
            break;
        }
        FieldRefValue.DataTextField = "v2";
        FieldRefValue.DataValueField = "v1";
        FieldRefValue.DataSource = DatabaseConnection.CreateDataset(query.ToString());
        FieldRefValue.DataBind();
        FieldRefValue.Items.Insert(0,Root.rm.GetString("SQLFree0"));
        FieldRefValue.Items[0].Value = "0";
      }
    }

    public void NewEntry_Click(object sender, EventArgs e)
    {
      AddContactFields.Visible = true;
      Field.Text = String.Empty;
      ViewOrderField.Text = String.Empty;
      Type.SelectedIndex = 0;
      FieldRef.SelectedIndex = 0;
      Groups.SetGroups("|" + UC.UserGroupId + "|");
      TabSwitch();

    }

    public void SubmitContact_Click(object sender, EventArgs e)
    {
      switch (Session["TableFreeField"].ToString())
      {
        case "Base_Companies":
          if (AddFields((byte) CRMTables.Base_Companies))
          {
            ContactInfo.Text = String.Empty;
                        FillRepeaterFields(CRMTables.Base_Companies);
          }
          else
          {
            ContactInfo.Text =Root.rm.GetString("Fretxt9");
          }
          break;
        case "Base_Contacts":
          if (AddFields((byte) CRMTables.Base_Contacts))
          {
            ContactInfo.Text = String.Empty;
                        FillRepeaterFields(CRMTables.Base_Contacts);
          }
          else
          {
            ContactInfo.Text =Root.rm.GetString("Fretxt9");
          }
          break;
        case "CRM_Leads":
          if (AddFields((byte) CRMTables.CRM_Leads))
          {
            ContactInfo.Text = String.Empty;
                        FillRepeaterFields(CRMTables.CRM_Leads);
          }
          else
          {
            ContactInfo.Text =Root.rm.GetString("Fretxt9");
          }
          break;
      }
      TabSwitch();
    }

    private bool AddFields(byte tablename)
    {
      if (Field.Text.Length == 0) return false;

      int fieldID=int.Parse(FieldID.Text);

      using (DigiDapter dg = new DigiDapter())
      {
        dg.Add("TABLENAME", tablename);
        dg.Add("NAME", Field.Text);
        try
        {
          dg.Add("VIEWORDER", Convert.ToInt32(ViewOrderField.Text));
        }
        catch
        {
          dg.Add("VIEWORDER", 1);
        }


        dg.Add("TYPE", Type.SelectedItem.Value);

        if (FieldRef.SelectedIndex > 0 && FieldRefValue.SelectedIndex > 0)
        {
          dg.Add("PARENTFIELD", DatabaseConnection.SqlScalar("SELECT REFERENCEFIELD FROM ADDEDFIELD_DROPDOWN WHERE ID=" + int.Parse(FieldRef.SelectedValue)));
          dg.Add("PARENTQUERY", FieldRef.SelectedValue.ToString());
          dg.Add("PARENTFIELDVALUE", FieldRefValue.SelectedValue);
        }
        else
        {
          dg.Add("PARENTFIELD", DBNull.Value);
          dg.Add("PARENTFIELDVALUE", DBNull.Value);
          dg.Add("PARENTQUERY", DBNull.Value);
        }

        if (Type.SelectedItem.Value == "4") dg.Add("ITEMS", "|" + SelectItem.Text.Replace(',', '|') + "|");
        if (Groups.GetValue.Length > 0)
        {
          dg.Add("GROUPS", Groups.GetValue);
        }
        else
        {
          dg.Add("GROUPS", "|" + UC.UserGroupId.ToString() + "|");
        }
        dg.Execute("ADDEDFIELDS", "ID=" + fieldID);
      }
      FieldID.Text = "-1";
      Field.Text = String.Empty;
      ViewOrderField.Text = String.Empty;
      Groups.SetGroups("|" + UC.UserGroupId + "|");
      return true;
    }

    private void ItemDataBound_RepContacts(object sender, RepeaterItemEventArgs e)
    {
      switch (e.Item.ItemType)
      {
        case ListItemType.Item:
        case ListItemType.AlternatingItem:
          Label FieldGroups = (Label) e.Item.FindControl("FieldGroups");
          string[] Groups = ((string) DataBinder.Eval((DataRowView) e.Item.DataItem, "Groups")).Split('|');
          string query = String.Empty;
          foreach (string gr in Groups)
          {
            if (gr.Length > 0) query += " OR ID=" + gr;
          }
          Trace.Warn("querydesc", query);
          if (query.Length > 4) query = query.Substring(4);
          string sqlQuery;
          sqlQuery = "SELECT DESCRIPTION FROM GROUPS ";
          if (query.Length > 0)
            sqlQuery += "WHERE " + query;

          DataSet ds = DatabaseConnection.CreateDataset(sqlQuery);
          foreach (DataRow dr in ds.Tables[0].Rows)
          {
            FieldGroups.Text += dr[0].ToString() + ", ";
          }
          FieldGroups.Text = FieldGroups.Text.Trim(',', ' ');
          Label TypeDescription = (Label) e.Item.FindControl("TypeDescription");
        switch (Convert.ToInt16(DataBinder.Eval((DataRowView) e.Item.DataItem, "Type")))
        {
          case 1:
            TypeDescription.Text =Root.rm.GetString("Fretxt4");
            break;
          case 2:
            TypeDescription.Text =Root.rm.GetString("Fretxt5");
            break;
          case 3:
            TypeDescription.Text =Root.rm.GetString("Fretxt11");
            break;
          case 4:
            TypeDescription.Text =Root.rm.GetString("Fretxt12");
            break;
        }


          LinkButton DelField = (LinkButton) e.Item.FindControl("DelField");
          DelField.Text =Root.rm.GetString("Fretxt7");
          DelField.Attributes.Add("onclick", "return confirm('" +Root.rm.GetString("Fretxt8") + "');");
          LinkButton ModField = (LinkButton) e.Item.FindControl("ModField");
          ModField.Text =Root.rm.GetString("Fretxt10");

          if (DataBinder.Eval((DataRowView) e.Item.DataItem, "ParentQuery").ToString().Length > 0)
          {
            DataRow drw = DatabaseConnection.CreateDataset("SELECT * FROM ADDEDFIELD_DROPDOWN WHERE ID=" + int.Parse(DataBinder.Eval((DataRowView) e.Item.DataItem, "ParentQuery").ToString())).Tables[0].Rows[0];
            Label secampo = (Label) e.Item.FindControl("FieldParam");

            string sqlResult = DatabaseConnection.SqlScalar(String.Format("SELECT TOP 1 {0} FROM {1} WHERE {2}='{3}'", drw["sonfieldtxt"].ToString(), drw["sontable"].ToString(), drw["sonfieldvalue"].ToString(), DatabaseConnection.FilterInjection(DataBinder.Eval((DataRowView) e.Item.DataItem, "ParentFieldValue").ToString())));


            secampo.Text =Root.rm.GetString("SQLFree" + drw["rmvalue"].ToString()) + " = " + sqlResult;
          }

          break;
      }
    }


    private void RepContacts_Command(object sender, RepeaterCommandEventArgs e)
    {
      switch (e.CommandName)
      {
        case "DelField":
          string delSql = "DELETE FROM ADDEDFIELDS WHERE ID =" + int.Parse(((Literal) e.Item.FindControl("FieldID")).Text);
          DatabaseConnection.DoCommand(delSql);
          break;
        case "ModField":
          AddContactFields.Visible = true;
          string sqlStringMod = "SELECT * FROM ADDEDFIELDS WHERE ID =" + int.Parse(((Literal) e.Item.FindControl("FieldID")).Text);
          DataSet ds = DatabaseConnection.CreateDataset(sqlStringMod);
          Field.Text = ds.Tables[0].Rows[0]["Name"].ToString();
          ViewOrderField.Text = ds.Tables[0].Rows[0]["ViewOrder"].ToString();
          Groups.SetGroups(ds.Tables[0].Rows[0]["Groups"].ToString());
          FieldID.Text = ((Literal) e.Item.FindControl("FieldID")).Text;
          Type.SelectedIndex=-1;
          foreach (ListItem li in Type.Items)
          {
            if (li.Value == ds.Tables[0].Rows[0]["Type"].ToString())
            {
              li.Selected = true;
              break;
            }
          }

          DataSet dsDrop = DatabaseConnection.CreateDataset("SELECT * FROM ADDEDFIELD_DROPDOWN WHERE REFERENCETABLE=" + ds.Tables[0].Rows[0]["tablename"].ToString());
          DataSet dsdropvalue = new DataSet();
          FieldRef.Items.Clear();
          foreach (DataRow dr in dsDrop.Tables[0].Rows)
          {
            ListItem li = new ListItem();
            li.Text =Root.rm.GetString("SQLFree" + dr["rmValue"].ToString());
            li.Value = dr["ID"].ToString();
            if (ds.Tables[0].Rows[0]["ParentField"].ToString() == dr["ReferenceField"].ToString())
            {
              li.Selected = true;
              dsdropvalue = DatabaseConnection.CreateDataset("SELECT * FROM ADDEDFIELD_DROPDOWN WHERE ID=" + int.Parse(dr["id"].ToString()));
            }
            FieldRef.Items.Add(li);
          }
          FieldRef.Items.Insert(0,Root.rm.GetString("SQLFree0"));
          FieldRef.Items[0].Value = "0";

          if (dsdropvalue.Tables.Count > 0)
          {
            DataRow drdropvalue = dsdropvalue.Tables[0].Rows[0];
            StringBuilder query = new StringBuilder();
            switch (drdropvalue["querytype"].ToString())
            {
              case "0":
                query.AppendFormat("SELECT {0} AS V1,{1} AS V2 FROM {2} ", drdropvalue["SonFieldValue"].ToString(), drdropvalue["SonFieldTxt"].ToString(), drdropvalue["SonTable"].ToString());
                query.AppendFormat("WHERE LANG='{0}'", UC.Culture);
                break;
              case "1":
                query.AppendFormat("SELECT {0} AS V1,{1} AS V2 FROM {2} ", drdropvalue["SonFieldValue"].ToString(), drdropvalue["SonFieldTxt"].ToString(), drdropvalue["SonTable"].ToString());
                break;
            }

            FieldRefValue.DataTextField = "v2";
            FieldRefValue.DataValueField = "v1";
            FieldRefValue.DataSource = DatabaseConnection.CreateDataset(query.ToString());
            FieldRefValue.DataBind();
            FieldRefValue.Items.Insert(0,Root.rm.GetString("SQLFree0"));
            FieldRefValue.Items[0].Value = "0";
          }
          foreach (ListItem li in FieldRefValue.Items)
          {
            if (li.Value == ds.Tables[0].Rows[0]["ParentFieldValue"].ToString())
            {
              li.Selected = true;
              break;
            }
          }

          if ((byte)ds.Tables[0].Rows[0]["Type"] == (byte)FreeFields.FreeFieldsType.select)
          {
                        Page.ClientScript.RegisterStartupScript(this.GetType(), "", "<script>ShowHideItems(document.getElementById('Type'));</script>");
          }
          ds.Clear();
          break;
      }
      this.TabSwitch(true);
    }

    #region Codice generato da Progettazione Web Form
    override protected void OnInit(EventArgs e)
    {
      InitializeComponent();
      base.OnInit(e);
    }

    private void InitializeComponent()
    {
      this.RepContacts.ItemDataBound += new RepeaterItemEventHandler(ItemDataBound_RepContacts);
      this.RepContacts.ItemCommand += new RepeaterCommandEventHandler(RepContacts_Command);

      this.BtnNew.Click += new EventHandler(this.NewEntry_Click);
      this.SubmitContact.Click += new EventHandler(this.SubmitContact_Click);
    }
    #endregion
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.