mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
* src/business/business-gnome/dialog-customer.c:
* src/business/business-gnome/dialog-employee.c: * src/business/business-gnome/dialog-job.c: * src/business/business-gnome/dialog-vendor.c: Enable changing the "ID" for different business objects. Fixes #108563. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@8236 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
0f490506b4
commit
3e8b3867f8
@ -6,6 +6,13 @@
|
||||
* src/gnome-utils/gw-gnome-utils-spec.scm: fix the description
|
||||
of gnc:mdi-show-progress.
|
||||
|
||||
* src/business/business-gnome/dialog-customer.c:
|
||||
* src/business/business-gnome/dialog-employee.c:
|
||||
* src/business/business-gnome/dialog-job.c:
|
||||
* src/business/business-gnome/dialog-vendor.c:
|
||||
Enable changing the "ID" for different business objects.
|
||||
Fixes #108563.
|
||||
|
||||
2003-04-18 Herbert Thoma <herbie@hthoma.de>
|
||||
|
||||
* src/engine/Account.c: move currency conversion to gnc-pricedb.c
|
||||
|
@ -557,8 +557,6 @@ gnc_customer_new_window (GNCBook *bookp, GncCustomer *cust)
|
||||
shipaddr = gncCustomerGetShipAddr (cust);
|
||||
|
||||
gtk_entry_set_text (GTK_ENTRY (cw->id_entry), gncCustomerGetID (cust));
|
||||
gtk_entry_set_editable (GTK_ENTRY (cw->id_entry), FALSE);
|
||||
|
||||
gtk_entry_set_text (GTK_ENTRY (cw->company_entry), gncCustomerGetName (cust));
|
||||
|
||||
/* Setup Address */
|
||||
|
@ -512,8 +512,6 @@ gnc_employee_new_window (GNCBook *bookp,
|
||||
addr = gncEmployeeGetAddr (employee);
|
||||
|
||||
gtk_entry_set_text (GTK_ENTRY (ew->id_entry), gncEmployeeGetID (employee));
|
||||
gtk_entry_set_editable (GTK_ENTRY (ew->id_entry), FALSE);
|
||||
|
||||
gtk_entry_set_text (GTK_ENTRY (ew->username_entry), gncEmployeeGetUsername (employee));
|
||||
|
||||
/* Setup Address */
|
||||
|
@ -347,7 +347,6 @@ gnc_job_new_window (GNCBook *bookp, GncOwner *owner, GncJob *job)
|
||||
bookp, owner);
|
||||
|
||||
gtk_entry_set_text (GTK_ENTRY (jw->id_entry), gncJobGetID (job));
|
||||
gtk_entry_set_editable (GTK_ENTRY (jw->id_entry), FALSE);
|
||||
gtk_entry_set_text (GTK_ENTRY (jw->name_entry), gncJobGetName (job));
|
||||
gtk_entry_set_text (GTK_ENTRY (jw->desc_entry), gncJobGetReference (job));
|
||||
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (jw->active_check),
|
||||
|
@ -433,8 +433,6 @@ gnc_vendor_new_window (GNCBook *bookp, GncVendor *vendor)
|
||||
addr = gncVendorGetAddr (vendor);
|
||||
|
||||
gtk_entry_set_text (GTK_ENTRY (vw->id_entry), gncVendorGetID (vendor));
|
||||
gtk_entry_set_editable (GTK_ENTRY (vw->id_entry), FALSE);
|
||||
|
||||
gtk_entry_set_text (GTK_ENTRY (vw->company_entry), gncVendorGetName (vendor));
|
||||
|
||||
/* Setup Address */
|
||||
|
Loading…
Reference in New Issue
Block a user