2003-10-16 23:40:59 -05:00
|
|
|
/********************************************************************\
|
|
|
|
* gncEmployee.h -- the Core Employee Interface *
|
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU General Public License as *
|
|
|
|
* published by the Free Software Foundation; either version 2 of *
|
|
|
|
* the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License*
|
|
|
|
* along with this program; if not, contact: *
|
|
|
|
* *
|
|
|
|
* Free Software Foundation Voice: +1-617-542-5942 *
|
2005-11-16 23:35:02 -06:00
|
|
|
* 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 *
|
|
|
|
* Boston, MA 02110-1301, USA gnu@gnu.org *
|
2003-10-16 23:40:59 -05:00
|
|
|
* *
|
|
|
|
\********************************************************************/
|
2004-05-06 23:47:03 -05:00
|
|
|
/** @addtogroup Business
|
|
|
|
@{ */
|
|
|
|
/** @addtogroup Employee
|
|
|
|
@{ */
|
|
|
|
/** @file gncEmployee.h
|
|
|
|
@brief Employee Interface
|
|
|
|
@author Copyright (C) 2001 Derek Atkins <warlord@MIT.EDU>
|
|
|
|
*/
|
2001-11-16 19:17:06 -06:00
|
|
|
|
|
|
|
#ifndef GNC_EMPLOYEE_H_
|
|
|
|
#define GNC_EMPLOYEE_H_
|
|
|
|
|
|
|
|
typedef struct _gncEmployee GncEmployee;
|
|
|
|
|
|
|
|
#include "gncAddress.h"
|
2003-03-09 16:51:04 -06:00
|
|
|
#include "Account.h"
|
2001-11-16 19:17:06 -06:00
|
|
|
|
2003-10-19 00:13:59 -05:00
|
|
|
#define GNC_ID_EMPLOYEE "gncEmployee"
|
|
|
|
#define GNC_IS_EMPLOYEE(obj) (QOF_CHECK_TYPE((obj), GNC_ID_EMPLOYEE))
|
|
|
|
#define GNC_EMPLOYEE(obj) (QOF_CHECK_CAST((obj), GNC_ID_EMPLOYEE, GncEmployee))
|
2001-11-16 19:17:06 -06:00
|
|
|
|
2005-11-01 21:32:36 -06:00
|
|
|
/** @name Create/Destroy Functions
|
|
|
|
@{ */
|
2003-06-26 22:05:25 -05:00
|
|
|
GncEmployee *gncEmployeeCreate (QofBook *book);
|
2001-11-16 19:17:06 -06:00
|
|
|
void gncEmployeeDestroy (GncEmployee *employee);
|
2004-05-06 23:47:03 -05:00
|
|
|
void gncEmployeeBeginEdit (GncEmployee *employee);
|
|
|
|
void gncEmployeeCommitEdit (GncEmployee *employee);
|
|
|
|
int gncEmployeeCompare (GncEmployee *a, GncEmployee *b);
|
|
|
|
/** @} */
|
2001-11-16 19:17:06 -06:00
|
|
|
|
2005-11-01 21:32:36 -06:00
|
|
|
/** @name Set Functions
|
|
|
|
@{ */
|
2001-11-16 19:17:06 -06:00
|
|
|
void gncEmployeeSetID (GncEmployee *employee, const char *id);
|
|
|
|
void gncEmployeeSetUsername (GncEmployee *employee, const char *username);
|
|
|
|
void gncEmployeeSetLanguage (GncEmployee *employee, const char *language);
|
|
|
|
void gncEmployeeSetAcl (GncEmployee *employee, const char *acl);
|
|
|
|
void gncEmployeeSetWorkday (GncEmployee *employee, gnc_numeric workday);
|
|
|
|
void gncEmployeeSetRate (GncEmployee *employee, gnc_numeric rate);
|
2003-01-12 16:53:02 -06:00
|
|
|
void gncEmployeeSetCurrency (GncEmployee *employee, gnc_commodity * currency);
|
2001-11-16 19:17:06 -06:00
|
|
|
void gncEmployeeSetActive (GncEmployee *employee, gboolean active);
|
2003-03-09 16:51:04 -06:00
|
|
|
void gncEmployeeSetCCard (GncEmployee *employee, Account* ccard_acc);
|
2005-11-01 21:32:36 -06:00
|
|
|
void qofEmployeeSetAddr (GncEmployee *employee, QofEntity *addr_ent);
|
|
|
|
|
2004-05-06 23:47:03 -05:00
|
|
|
/** @} */
|
2001-11-16 19:17:06 -06:00
|
|
|
|
2005-11-01 21:32:36 -06:00
|
|
|
/** @name Get Functions
|
|
|
|
@{ */
|
2003-06-26 22:05:25 -05:00
|
|
|
QofBook * gncEmployeeGetBook (GncEmployee *employee);
|
2001-11-16 19:17:06 -06:00
|
|
|
const char * gncEmployeeGetID (GncEmployee *employee);
|
|
|
|
const char * gncEmployeeGetUsername (GncEmployee *employee);
|
|
|
|
GncAddress * gncEmployeeGetAddr (GncEmployee *employee);
|
|
|
|
const char * gncEmployeeGetLanguage (GncEmployee *employee);
|
|
|
|
const char * gncEmployeeGetAcl (GncEmployee *employee);
|
|
|
|
gnc_numeric gncEmployeeGetWorkday (GncEmployee *employee);
|
|
|
|
gnc_numeric gncEmployeeGetRate (GncEmployee *employee);
|
2003-01-12 16:53:02 -06:00
|
|
|
gnc_commodity * gncEmployeeGetCurrency (GncEmployee *employee);
|
2001-11-16 19:17:06 -06:00
|
|
|
gboolean gncEmployeeGetActive (GncEmployee *employee);
|
2003-03-09 16:51:04 -06:00
|
|
|
Account * gncEmployeeGetCCard (GncEmployee *employee);
|
2004-05-06 23:47:03 -05:00
|
|
|
/** @} */
|
2001-11-16 19:17:06 -06:00
|
|
|
|
2003-10-19 00:13:59 -05:00
|
|
|
|
|
|
|
/** Return a pointer to the instance gncEmployee that is identified
|
|
|
|
* by the guid, and is residing in the book. Returns NULL if the
|
|
|
|
* instance can't be found.
|
|
|
|
* Equivalent function prototype is
|
|
|
|
* GncEmployee * gncEmployeeLookup (QofBook *book, const GUID *guid);
|
|
|
|
*/
|
|
|
|
#define gncEmployeeLookup(book,guid) \
|
|
|
|
QOF_BOOK_LOOKUP_ENTITY((book),(guid),GNC_ID_EMPLOYEE, GncEmployee)
|
|
|
|
|
2001-11-16 19:17:06 -06:00
|
|
|
gboolean gncEmployeeIsDirty (GncEmployee *employee);
|
|
|
|
|
2004-08-19 14:47:34 -05:00
|
|
|
#define EMPLOYEE_ID "id"
|
2002-02-03 14:01:08 -06:00
|
|
|
#define EMPLOYEE_USERNAME "username"
|
2004-08-19 14:47:34 -05:00
|
|
|
#define EMPLOYEE_ADDR "addr"
|
|
|
|
#define EMPLOYEE_LANGUAGE "native language"
|
|
|
|
#define EMPLOYEE_ACL "acl"
|
|
|
|
#define EMPLOYEE_WORKDAY "workday"
|
|
|
|
#define EMPLOYEE_RATE "rate"
|
2005-11-01 21:32:36 -06:00
|
|
|
#define EMPLOYEE_CC "credit_card_account"
|
2001-11-16 19:17:06 -06:00
|
|
|
|
2003-10-16 23:32:04 -05:00
|
|
|
/** deprecated routines */
|
2003-10-16 23:40:59 -05:00
|
|
|
#define gncEmployeeGetGUID(E) qof_entity_get_guid(QOF_ENTITY(E))
|
2005-11-01 21:32:36 -06:00
|
|
|
#define gncEmployeeGetBook(E) qof_instance_get_book(QOF_INSTANCE(E))
|
2004-01-06 19:54:37 -06:00
|
|
|
#define gncEmployeeRetGUID(E) (E ? *(qof_entity_get_guid(QOF_ENTITY(E))) : *(guid_null()))
|
2003-10-16 23:32:04 -05:00
|
|
|
#define gncEmployeeLookupDirect(G,B) gncEmployeeLookup((B),&(G))
|
|
|
|
|
2001-11-16 19:17:06 -06:00
|
|
|
#endif /* GNC_EMPLOYEE_H_ */
|
2004-05-06 23:47:03 -05:00
|
|
|
/** @} */
|
|
|
|
/** @} */
|