30 #include "gncBillTermP.h" 31 #include "gncCustomerP.h" 32 #include "gncTaxTableP.h" 34 #include "gnc-xml-helper.h" 35 #include "gnc-customer-xml-v2.h" 36 #include "gnc-address-xml-v2.h" 37 #include "gnc-bill-term-xml-v2.h" 39 #include "sixtp-utils.h" 40 #include "sixtp-parsers.h" 41 #include "sixtp-utils.h" 42 #include "sixtp-dom-parsers.h" 43 #include "sixtp-dom-generators.h" 46 #include "io-gncxml-gen.h" 49 #include "xml-helpers.h" 51 #define _GNC_MOD_NAME GNC_ID_CUSTOMER 53 static QofLogModule log_module = GNC_MOD_IO;
55 const gchar* customer_version_string =
"2.0.0";
58 #define gnc_customer_string "gnc:GncCustomer" 59 #define cust_name_string "cust:name" 60 #define cust_guid_string "cust:guid" 61 #define cust_id_string "cust:id" 62 #define cust_addr_string "cust:addr" 63 #define cust_shipaddr_string "cust:shipaddr" 64 #define cust_notes_string "cust:notes" 65 #define cust_terms_string "cust:terms" 66 #define cust_taxincluded_string "cust:taxincluded" 67 #define cust_active_string "cust:active" 68 #define cust_discount_string "cust:discount" 69 #define cust_credit_string "cust:credit" 70 #define cust_currency_string "cust:currency" 71 #define cust_taxtable_string "cust:taxtable" 72 #define cust_taxtableoverride_string "cust:use-tt" 73 #define cust_slots_string "cust:slots" 83 ret = xmlNewNode (NULL, BAD_CAST gnc_customer_string);
84 xmlSetProp (ret, BAD_CAST
"version", BAD_CAST customer_version_string);
86 xmlAddChild (ret, guid_to_dom_tree (cust_guid_string,
89 xmlAddChild (ret, text_to_dom_tree (cust_name_string,
90 gncCustomerGetName (cust)));
92 xmlAddChild (ret, text_to_dom_tree (cust_id_string,
93 gncCustomerGetID (cust)));
95 xmlAddChild (ret, gnc_address_to_dom_tree (cust_addr_string,
96 gncCustomerGetAddr (cust)));
98 xmlAddChild (ret, gnc_address_to_dom_tree (cust_shipaddr_string,
99 gncCustomerGetShipAddr (cust)));
101 maybe_add_string (ret, cust_notes_string, gncCustomerGetNotes (cust));
103 term = gncCustomerGetTerms (cust);
105 xmlAddChild (ret, guid_to_dom_tree (cust_terms_string,
108 xmlAddChild (ret, text_to_dom_tree (cust_taxincluded_string,
109 gncTaxIncludedTypeToString (
110 gncCustomerGetTaxIncluded (cust))));
112 xmlAddChild (ret, int_to_dom_tree (cust_active_string,
113 gncCustomerGetActive (cust)));
115 num = gncCustomerGetDiscount (cust);
116 xmlAddChild (ret, gnc_numeric_to_dom_tree (cust_discount_string, &num));
118 num = gncCustomerGetCredit (cust);
119 xmlAddChild (ret, gnc_numeric_to_dom_tree (cust_credit_string, &num));
123 commodity_ref_to_dom_tree (cust_currency_string,
124 gncCustomerGetCurrency (cust)));
126 xmlAddChild (ret, int_to_dom_tree (cust_taxtableoverride_string,
127 gncCustomerGetTaxTableOverride (cust)));
128 taxtable = gncCustomerGetTaxTable (cust);
130 xmlAddChild (ret, guid_to_dom_tree (cust_taxtable_string,
134 xmlAddChild (ret, qof_instance_slots_to_dom_tree (cust_slots_string,
135 QOF_INSTANCE (cust)));
152 char* txt = dom_tree_to_text (node);
153 g_return_val_if_fail (txt, FALSE);
169 ret = dom_tree_to_integer (node, &val);
171 func (cust, (gboolean)val);
177 customer_name_handler (xmlNodePtr node, gpointer cust_pdata)
179 struct customer_pdata* pdata =
static_cast<decltype (pdata)
> (cust_pdata);
181 return set_string (node, pdata->customer, gncCustomerSetName);
185 customer_guid_handler (xmlNodePtr node, gpointer cust_pdata)
187 struct customer_pdata* pdata =
static_cast<decltype (pdata)
> (cust_pdata);
191 guid = dom_tree_to_guid (node);
192 g_return_val_if_fail (guid, FALSE);
193 cust = gncCustomerLookup (pdata->book, guid);
196 gncCustomerDestroy (pdata->customer);
197 pdata->customer = cust;
198 gncCustomerBeginEdit (cust);
202 gncCustomerSetGUID (pdata->customer, guid);
211 customer_id_handler (xmlNodePtr node, gpointer cust_pdata)
213 struct customer_pdata* pdata =
static_cast<decltype (pdata)
> (cust_pdata);
215 return set_string (node, pdata->customer, gncCustomerSetID);
219 customer_notes_handler (xmlNodePtr node, gpointer cust_pdata)
221 struct customer_pdata* pdata =
static_cast<decltype (pdata)
> (cust_pdata);
223 return set_string (node, pdata->customer, gncCustomerSetNotes);
227 customer_terms_handler (xmlNodePtr node, gpointer cust_pdata)
229 struct customer_pdata* pdata =
static_cast<decltype (pdata)
> (cust_pdata);
233 guid = dom_tree_to_guid (node);
234 g_return_val_if_fail (guid, FALSE);
235 term = gnc_billterm_xml_find_or_create (pdata->book, guid);
238 gncCustomerSetTerms (pdata->customer, term);
244 customer_addr_handler (xmlNodePtr node, gpointer cust_pdata)
246 struct customer_pdata* pdata =
static_cast<decltype (pdata)
> (cust_pdata);
248 return gnc_dom_tree_to_address (node, gncCustomerGetAddr (pdata->customer));
252 customer_shipaddr_handler (xmlNodePtr node, gpointer cust_pdata)
254 struct customer_pdata* pdata =
static_cast<decltype (pdata)
> (cust_pdata);
256 return gnc_dom_tree_to_address (node,
257 gncCustomerGetShipAddr (pdata->customer));
262 customer_taxincluded_handler (xmlNodePtr node, gpointer cust_pdata)
264 struct customer_pdata* pdata =
static_cast<decltype (pdata)
> (cust_pdata);
269 str = dom_tree_to_text (node);
270 g_return_val_if_fail (str, FALSE);
272 ret = gncTaxIncludedStringToType (str, &type);
276 gncCustomerSetTaxIncluded (pdata->customer, type);
282 customer_active_handler (xmlNodePtr node, gpointer cust_pdata)
284 struct customer_pdata* pdata =
static_cast<decltype (pdata)
> (cust_pdata);
285 return set_boolean (node, pdata->customer, gncCustomerSetActive);
289 customer_discount_handler (xmlNodePtr node, gpointer cust_pdata)
291 struct customer_pdata* pdata =
static_cast<decltype (pdata)
> (cust_pdata);
293 gncCustomerSetDiscount (pdata->customer, dom_tree_to_gnc_numeric (node));
298 customer_credit_handler (xmlNodePtr node, gpointer cust_pdata)
300 struct customer_pdata* pdata =
static_cast<decltype (pdata)
> (cust_pdata);
302 gncCustomerSetCredit (pdata->customer, dom_tree_to_gnc_numeric (node));
307 customer_currency_handler (xmlNodePtr node, gpointer
customer_pdata)
312 com = dom_tree_to_commodity_ref (node, pdata->book);
313 g_return_val_if_fail (com, FALSE);
315 gncCustomerSetCurrency (pdata->customer, com);
321 customer_taxtable_handler (xmlNodePtr node, gpointer cust_pdata)
323 struct customer_pdata* pdata =
static_cast<decltype (pdata)
> (cust_pdata);
327 guid = dom_tree_to_guid (node);
328 g_return_val_if_fail (guid, FALSE);
329 taxtable = gncTaxTableLookup (pdata->book, guid);
332 taxtable = gncTaxTableCreate (pdata->book);
333 gncTaxTableBeginEdit (taxtable);
334 gncTaxTableSetGUID (taxtable, guid);
335 gncTaxTableCommitEdit (taxtable);
338 gncTaxTableDecRef (taxtable);
340 gncCustomerSetTaxTable (pdata->customer, taxtable);
346 customer_taxtableoverride_handler (xmlNodePtr node, gpointer cust_pdata)
348 struct customer_pdata* pdata =
static_cast<decltype (pdata)
> (cust_pdata);
349 return set_boolean (node, pdata->customer, gncCustomerSetTaxTableOverride);
353 customer_slots_handler (xmlNodePtr node, gpointer cust_pdata)
355 struct customer_pdata* pdata =
static_cast<decltype (pdata)
> (cust_pdata);
356 return dom_tree_create_instance_slots (node, QOF_INSTANCE (pdata->customer));
361 { cust_name_string, customer_name_handler, 1, 0 },
362 { cust_guid_string, customer_guid_handler, 1, 0 },
363 { cust_id_string, customer_id_handler, 1, 0 },
364 { cust_addr_string, customer_addr_handler, 1, 0 },
365 { cust_shipaddr_string, customer_shipaddr_handler, 1, 0 },
366 { cust_notes_string, customer_notes_handler, 0, 0 },
367 { cust_terms_string, customer_terms_handler, 0, 0 },
368 { cust_taxincluded_string, customer_taxincluded_handler, 1, 0 },
369 { cust_active_string, customer_active_handler, 1, 0 },
370 { cust_discount_string, customer_discount_handler, 1, 0 },
371 { cust_credit_string, customer_credit_handler, 1, 0 },
372 { cust_currency_string, customer_currency_handler, 0, 0 },
373 {
"cust:commodity", customer_currency_handler, 0, 0 },
374 { cust_taxtable_string, customer_taxtable_handler, 0, 0 },
375 { cust_taxtableoverride_string, customer_taxtableoverride_handler, 0, 0 },
376 { cust_slots_string, customer_slots_handler, 0, 0 },
381 dom_tree_to_customer (xmlNodePtr node, QofBook* book)
386 cust_pdata.customer = gncCustomerCreate (book);
387 cust_pdata.book = book;
388 gncCustomerBeginEdit (cust_pdata.customer);
390 successful = dom_tree_generic_parse (node, customer_handlers_v2,
394 gncCustomerCommitEdit (cust_pdata.customer);
397 PERR (
"failed to parse customer tree");
398 gncCustomerDestroy (cust_pdata.customer);
399 cust_pdata.customer = NULL;
402 return cust_pdata.customer;
406 gnc_customer_end_handler (gpointer data_for_children,
407 GSList* data_from_children, GSList* sibling_data,
408 gpointer parent_data, gpointer global_data,
409 gpointer* result,
const gchar* tag)
412 xmlNodePtr tree = (xmlNodePtr)data_for_children;
413 gxpf_data* gdata = (gxpf_data*)global_data;
414 QofBook* book =
static_cast<decltype (book)
> (gdata->bookdata);
429 g_return_val_if_fail (tree, FALSE);
431 cust = dom_tree_to_customer (tree, book);
434 gdata->cb (tag, gdata->parsedata, cust);
443 customer_sixtp_parser_create (
void)
445 return sixtp_dom_parser_new (gnc_customer_end_handler, NULL, NULL);
454 id = gncCustomerGetID (customer);
455 if (
id == NULL || *
id ==
'\0')
464 int* count =
static_cast<decltype (count)
> (count_p);
465 if (customer_should_be_saved ((
GncCustomer*)cust_p))
470 customer_get_count (QofBook* book)
478 xml_add_customer (
QofInstance* cust_p, gpointer out_p)
482 FILE* out =
static_cast<decltype (out)
> (out_p);
486 if (!customer_should_be_saved (cust))
489 node = customer_dom_tree_create (cust);
490 xmlElemDump (out, NULL, node);
492 if (ferror (out) || fprintf (out,
"\n") < 0)
497 customer_write (FILE* out, QofBook* book)
501 return ferror (out) == 0;
505 customer_ns (FILE* out)
507 g_return_val_if_fail (out, FALSE);
508 return gnc_xml2_write_namespace_decl (out,
"cust");
512 gnc_customer_xml_initialize (
void)
514 static GncXmlDataType_t be_data =
516 GNC_FILE_BACKEND_VERS,
518 customer_sixtp_parser_create,
526 gnc_xml_register_backend (be_data);
const GncGUID * qof_instance_get_guid(gconstpointer inst)
Return the GncGUID of this instance.
GncTaxIncluded
How to interpret the TaxIncluded.
#define PERR(format, args...)
Log a serious error.
void qof_object_foreach_sorted(QofIdTypeConst type_name, QofBook *book, QofInstanceForeachCB cb, gpointer user_data)
Invoke callback 'cb' on each instance in guid orted order.
api for GnuCash version 2 XML-based file format
void qof_object_foreach(QofIdTypeConst type_name, QofBook *book, QofInstanceForeachCB cb, gpointer user_data)
Invoke the callback 'cb' on every instance ov a particular object type.
credit, discount and shipaddr are unique to GncCustomer id, name, notes, terms, addr, currency, taxtable, taxtable_override taxincluded, active and jobs are identical to ::GncVendor.
The type used to store guids in C.
modtime is the internal date of the last modtime See libgnucash/engine/TaxTableBillTermImmutability.txt for an explanation of the following Code that handles refcount, parent, child, invisible and children is identical to that in ::GncBillTerm