Example #1
0
        private void btnSaveSettings_Click(object sender, RoutedEventArgs e)
        {
            if (ValidateSettingsInput() == false)
            {
                return;
            }

            _scaleSetting.DisplayUnits          = DisplayUnitsComboBox.SelectedValue.ToString();
            _scaleSetting.DecimalPointPrecision = 0; //int.Parse(DecimalPointPrecisionComboBox.SelectedValue.ToString());
            _scaleSetting.ZeroRange             = 0; // decimal.Parse(ZeroRangeComboBox.SelectedValue.ToString());


            _scaleSetting.MinimumDivision = decimal.Parse(PrecisionTextBox.Text);
            _scaleSetting.MaximumCapacity = Convert.ToDecimal(MaximumCapacityTextBox.Text);
            _scaleSetting.Density         = 1;
            _scaleSetting.Inflight        = decimal.Parse(InflightTextBox.Text);
            _scaleSetting.InflightTiming  = int.Parse(InflightTimingTextBox.Text);

            ScaleSettingComponent scaleSettingComp = new ScaleSettingComponent();

            MainPage._inflight_setpoint = _scaleSetting.Inflight;

            scaleSettingComp.UpdateScaleSetting(_scaleSetting);

            string msg = "Scale Settings successfully saved";

            saveSuccessfullmessage(msg);
        }
Example #2
0
        private void Page_Loaded(object sender, RoutedEventArgs e)
        {
            DeviceInfoComponent deviceInfoComp = new DeviceInfoComponent();

            _deviceInfo = deviceInfoComp.GetDeviceInfo();

            if (_deviceInfo != null)
            {
                PlantNameTextBox.Text   = _deviceInfo.PlantId;
                MachineNameTextBox.Text = _deviceInfo.MachineName;
            }

            ScaleSettingComponent scaleSettingComp = new ScaleSettingComponent();

            _scaleSetting = scaleSettingComp.GetScaleSettingDefault();

            if (_scaleSetting != null)
            {
                DisplayUnitsComboBox.SelectedIndex = GetUnitIndex(_scaleSetting.DisplayUnits);

                PrecisionTextBox.Text       = _scaleSetting.MinimumDivision.ToString();
                InflightTextBox.Text        = _scaleSetting.Inflight.ToString();
                InflightTimingTextBox.Text  = _scaleSetting.InflightTiming.ToString();
                MaximumCapacityTextBox.Text = _scaleSetting.MaximumCapacity.ToString();
            }
            else
            {
                _scaleSetting = new ScaleSetting();
            }
        }
Example #3
0
        public Boolean GetScaleSettings()
        {
            ScaleSettingComponent ScaleSettingComp = new ScaleSettingComponent();

            _scaleSetting = ScaleSettingComp.GetScaleSetting();

            if (_scaleSetting != null)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Example #4
0
        public void InitialiseTables()
        {
            /*** Initialise Calibration Settings***/
            ScaleConfigComponent ScaleConfigComp = new ScaleConfigComponent();

            var config = ScaleConfigComp.GetScaleConfig();

            ScaleConfig scaleCon = new ScaleConfig()
            {
                Gradient = -0.00000497M, Resolution = 200, YIntercept = -1.15M, offset = 0
            };

            if (config == null)
            {
                ScaleConfigComp.AddScaleConfig(scaleCon);
            }
            else
            {
                scaleCon.ScaleConfigId = 1;
                ScaleConfigComp.UpdateScaleConfig(scaleCon);
            }

            /*** Initialise Scale Settings***/
            ScaleSettingComponent ScaleSettigComp = new ScaleSettingComponent();
            var setting = ScaleSettigComp.GetScaleSetting();

            ScaleSetting scale_setting = new ScaleSetting()
            {
                DisplayUnits          = "Kgs",
                DecimalPointPrecision = 2,
                Density            = 1,
                DisplayUnitsWeight = 1,
                MaximumCapacity    = 100,
                MinimumDivision    = 0.5M,
                PrintMode          = false,
                ZeroRange          = 2,
                UpperLimit         = 2,
                LowerLimit         = 2,
                Inflight           = 0.3M
            };

            if (setting == null)
            {
                ScaleSettigComp.AddScaleSetting(scale_setting);
            }
            else
            {
                scale_setting.ScaleSettingId = 1;
                ScaleSettigComp.UpdateScaleSetting(scale_setting);
            }

            /*** Initialise Product***/
            ProductComponent productComp = new ProductComponent();
            var p = productComp.GetProducts();

            if (p.Count() == 0)
            {
                WeighrDAL.Models.Product productA = new WeighrDAL.Models.Product()
                {
                    ProductCode  = "PROA",
                    Name         = "Product A - 5Kg",
                    Density      = 1,
                    Inflight     = 0.3M,
                    isCurrent    = true,
                    LowerLimit   = 1,
                    UpperLimit   = 1,
                    TargetWeight = 5
                };

                WeighrDAL.Models.Product productB = new WeighrDAL.Models.Product()
                {
                    ProductCode  = "PROB",
                    Name         = "Product B - 20Kg",
                    Density      = 1,
                    Inflight     = 0.3M,
                    isCurrent    = false,
                    LowerLimit   = 2,
                    UpperLimit   = 2,
                    TargetWeight = 20
                };


                WeighrDAL.Models.Product productC = new WeighrDAL.Models.Product()
                {
                    ProductCode  = "PROC",
                    Name         = "Product C - 10Kg",
                    Density      = 0,
                    Inflight     = 0.3M,
                    isCurrent    = false,
                    LowerLimit   = 2,
                    UpperLimit   = 2,
                    TargetWeight = 10
                };

                productComp.AddProduct(productA);
                productComp.AddProduct(productB);
                productComp.AddProduct(productC);
            }
        }