summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-03-31 18:30:48 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2023-03-31 18:30:48 +0800
commit3a1c71e902ce6c005b569f768a6e1e04714dbd99 (patch)
tree053afc140823617a45497a7a59359203c2afb70c
parent62a5096724e505d893ac9b785cc13dd226aeb8d9 (diff)
Interface for setting orderpage, it has a default
-rw-r--r--interchange/ord.h5
-rw-r--r--ord.c7
2 files changed, 7 insertions, 5 deletions
diff --git a/interchange/ord.h b/interchange/ord.h
index dffd902..16c4e64 100644
--- a/interchange/ord.h
+++ b/interchange/ord.h
@@ -40,11 +40,12 @@ void interchange_ord_order(const char *sku,
/*!
* \brief For removing an item from a cart.
* \param name The name given, in the cart, to the item.
+ * \param orderpage The order page, by default it's ord/basket.
* \param nextpage The page to expect response from, whatever the result is.
* \param parser Function for parsing the formatted response.
*/
-void interchange_ord_remove(const char *name, const char *nextpage,
- void (*parser)(interchange_response *));
+void interchange_ord_remove(const char *name, const char *orderpage,
+ const char *nextpage, void (*parser)(interchange_response *));
/*!
* \brief For checking out items in the cart.
diff --git a/ord.c b/ord.c
index 5bf341d..a386681 100644
--- a/ord.c
+++ b/ord.c
@@ -11,12 +11,13 @@ void interchange_ord_order(const char *sku,
request(handler, NULL, NULL, "%s%s", "order?mv_arg=", sku);
}
-void interchange_ord_remove(const char *name, const char *nextpage,
- void (*parser)(interchange_response *))
+void interchange_ord_remove(const char *name, const char *orderpage,
+ const char *nextpage, void (*parser)(interchange_response *))
{
- request(parser, NULL, &(struct body){ 2 + (nextpage ? 1 : 0), {
+ request(parser, NULL, &(struct body){ 3 + (nextpage ? 1 : 0), {
{ name, "0" },
{ "mv_doit", "refresh" },
+ { "mv_orderpage", orderpage ? orderpage : "ord/basket" },
{ "mv_nextpage", nextpage }
}}, "%s", "process");
}