// shows the form in edit modus // links: // docLink: http://sql2x.org/documentationLink/49afd26c-4f21-4992-967b-be190eacef77 public void ShowAsEdit(System.Guid financialCostcentreId) { var service = new CrudeFinancialCostcentreServiceClient(); _isNew = false; try { _contract = service.FetchByFinancialCostcentreId(financialCostcentreId); textBoxFinancialCostcentreCode.Text = _contract.FinancialCostcentreCode; textBoxFinancialCostcentreName.Text = _contract.FinancialCostcentreName; userPicker.SelectedValue = _contract.UserId; _contract.DateTime = DateTime.UtcNow; dateTimePickerDateTime.Text = _contract.DateTime.ToString(); Show(); } catch (Exception ex) { if (ex == null) { } else { System.Diagnostics.Debugger.Break(); } } finally { service.Close(); } }
// shows the form with default values for comboboxes and pickers // links: // docLink: http://sql2x.org/documentationLink/f5685d96-a0bb-4f7b-beaa-b3d578c7cf28 public void ShowAsAdd(string financialCostcentreCode, string financialCostcentreName, System.Guid financialCompanyId, System.Guid userId) { try { _contract = new CrudeFinancialCostcentreContract(); _isNew = true; _contract.FinancialCostcentreCode = financialCostcentreCode; textBoxFinancialCostcentreCode.Text = _contract.FinancialCostcentreCode; _contract.FinancialCostcentreName = financialCostcentreName; textBoxFinancialCostcentreName.Text = _contract.FinancialCostcentreName; _contract.FinancialCompanyId = financialCompanyId; _contract.UserId = userId; userPicker.SelectedValue = userId; _contract.DateTime = DateTime.UtcNow; dateTimePickerDateTime.Text = _contract.DateTime.ToString(); Show(); } catch (Exception ex) { if (ex == null) { } else { System.Diagnostics.Debugger.Break(); } } }
public ActionResult CrudeFinancialCostcentreCreate([Bind()] CrudeFinancialCostcentreContract contract) { if (ModelState.IsValid) { new CrudeFinancialCostcentreServiceClient().Insert(contract); return(RedirectToAction("CrudeFinancialCostcentreIndex")); } return(View( "~/Views/Crude/Financial/CrudeFinancialCostcentre/CrudeFinancialCostcentreCreate.cshtml", contract )); }
public ActionResult CrudeFinancialCostcentreEdit([Bind()] CrudeFinancialCostcentreContract contract) { if (ModelState.IsValid) { contract.DateTime = DateTime.UtcNow; new CrudeFinancialCostcentreServiceClient().Update(contract); return(RedirectToAction("CrudeFinancialCostcentreIndex")); } return(View( "~/Views/Crude/Financial/CrudeFinancialCostcentre/CrudeFinancialCostcentreEdit.cshtml", contract )); }
// shows the form with default values for comboboxes and pickers // links: // docLink: http://sql2x.org/documentationLink/e04d0806-55ef-41cc-8669-acf0ddd850c7 public void ShowAsAdd() { try { _contract = new CrudeFinancialCostcentreContract(); _isNew = true; this.Text += " - Not Savable (FinancialCompany Missing)"; Show(); } catch (Exception ex) { if (ex == null) { } else { System.Diagnostics.Debugger.Break(); } } }
// shows by foreign keys // links: // docLink: http://sql2x.org/documentationLink/f21e72c1-2d57-44c1-a9c1-1b80bad6a391 public void ShowAsAddByFinancialCompany(System.Guid financialCompanyId) { try { _contract = new CrudeFinancialCostcentreContract(); _isNew = true; _contract.DateTime = DateTime.UtcNow; dateTimePickerDateTime.Text = _contract.DateTime.ToString(); _contract.FinancialCompanyId = financialCompanyId; Show(); } catch (Exception ex) { if (ex == null) { } else { System.Diagnostics.Debugger.Break(); } } }
// populates the Picker with the first match from the SOAP service // links: // docLink: http://sql2x.org/documentationLink/3e8b9e1a-39eb-444f-9632-ce3406db3534 private void txtFinancialCostcentreCode_Validating(object sender, CancelEventArgs e) { if (!DesignMode) { // empty picker on no code if (string.IsNullOrEmpty(txtFinancialCostcentreCode.Text)) { _financialCostcentreId = Guid.Empty; txtFinancialCostcentreName.Text = string.Empty; txtFinancialCostcentreCode.Text = string.Empty; return; } CrudeFinancialCostcentreServiceClient financialCostcentre = null; try { financialCostcentre = new CrudeFinancialCostcentreServiceClient(); CrudeFinancialCostcentreContract contract = financialCostcentre.FetchByFinancialCostcentreCode(txtFinancialCostcentreCode.Text); if (contract != null) { txtFinancialCostcentreCode.Text = contract.FinancialCostcentreCode; txtFinancialCostcentreName.Text = contract.FinancialCostcentreName; _financialCostcentreId = contract.FinancialCostcentreId; } } catch (Exception ex) { MessageBox.Show(ex.Message); } finally { if (financialCostcentre != null) { financialCostcentre.Close(); } } if (this.Picked != null) { this.Picked(new object(), new EventArgs()); } } }
public ActionResult CrudeFinancialCostcentreCreate(System.Guid?financialCompanyId, System.Guid?userId) { var contract = new CrudeFinancialCostcentreContract(); if (financialCompanyId != null) { contract.FinancialCompanyId = (System.Guid)financialCompanyId; } if (userId != null) { contract.UserId = (System.Guid)userId; } ViewBag.FinancialCompanyId = new SelectList(new CrudeFinancialCompanyServiceClient().FetchAll(), "FinancialCompanyId", "FinancialCompanyName", contract.FinancialCompanyId ); if (userId == null) { contract.UserId = new System.Guid("{FFFFFFFF-5555-5555-5555-FFFFFFFFFFFF}"); } ViewBag.DefaultUserName = new CrudeDefaultUserServiceClient().FetchByDefaultUserId(contract.UserId).DefaultUserName; contract.DateTime = DateTime.UtcNow; return(View( "~/Views/Crude/Financial/CrudeFinancialCostcentre/CrudeFinancialCostcentreCreate.cshtml", contract )); }