2023-05-08 136 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775
  1. --
  2. -- PostgreSQL database dump
  3. --
  4. -- Dumped from database version 13.8 (Debian 13.8-0+deb11u1)
  5. -- Dumped by pg_dump version 13.8 (Debian 13.8-0+deb11u1)
  6. SET statement_timeout = 0;
  7. SET lock_timeout = 0;
  8. SET idle_in_transaction_session_timeout = 0;
  9. SET client_encoding = 'UTF8';
  10. SET standard_conforming_strings = on;
  11. SELECT pg_catalog.set_config('search_path', '', false);
  12. SET check_function_bodies = false;
  13. SET xmloption = content;
  14. SET client_min_messages = warning;
  15. SET row_security = off;
  16. --
  17. -- Name: _normalize_product_name(text, text); Type: FUNCTION; Schema: public; Owner: das
  18. --
  19. CREATE FUNCTION public._normalize_product_name(product_name text, category_name text, OUT name text) RETURNS text
  20. LANGUAGE sql
  21. AS $$
  22. SELECT CASE
  23. WHEN product_name ~* 'eggs' THEN 'Eggs'
  24. WHEN product_name = 'Beef Jerky' THEN product_name
  25. WHEN product_name ~* 'beef' THEN 'Beef'
  26. WHEN product_name ~* 'chicken' THEN 'Chicken'
  27. WHEN product_name ~* 'chocolate' THEN 'Chocolate'
  28. WHEN product_name = 'Tomato Fresh' THEN product_name
  29. WHEN product_name = 'Tomato Juice' THEN product_name
  30. WHEN product_name ~* 'tomato' THEN 'Tomato'
  31. WHEN product_name ~* 'rye' THEN 'Rye'
  32. WHEN category_name IN ('Sweetener', 'Sugar') THEN 'Sweetener'
  33. ELSE product_name
  34. END
  35. $$;
  36. ALTER FUNCTION public._normalize_product_name(product_name text, category_name text, OUT name text) OWNER TO das;
  37. --
  38. -- Name: convert_unit(text, text, text); Type: FUNCTION; Schema: public; Owner: das
  39. --
  40. CREATE FUNCTION public.convert_unit(p_from text, p_to text, p_product text, OUT p_factor numeric) RETURNS numeric
  41. LANGUAGE sql
  42. AS $$
  43. WITH RECURSIVE chain(_from, _to, product_id, factor) AS (
  44. WITH conversions_unified AS (
  45. SELECT *
  46. FROM conversions_complex AS cc
  47. UNION
  48. SELECT c.id, c._from, c._to, NULL AS product_id, c.factor
  49. FROM conversions AS c
  50. )
  51. SELECT
  52. ARRAY[]::int[],
  53. (SELECT id FROM units WHERE name = p_from),
  54. (SELECT id FROM products WHERE name = p_product),
  55. 1::numeric
  56. UNION
  57. SELECT
  58. c._from || CASE
  59. WHEN t._from = c._to
  60. THEN t._from
  61. ELSE t._to
  62. END,
  63. CASE
  64. WHEN t._from = c._to
  65. THEN t._to
  66. ELSE t._from
  67. END,
  68. CASE
  69. WHEN t.product_id IS NULL
  70. THEN c.product_id
  71. ELSE t.product_id
  72. END,
  73. CASE
  74. WHEN t._from = c._to
  75. THEN c.factor*t.factor
  76. ELSE c.factor/t.factor
  77. END
  78. FROM chain c
  79. JOIN conversions_unified t
  80. ON ((
  81. t._from = c._to OR t._to = c._to
  82. ) AND (
  83. t.product_id = c.product_id OR
  84. t.product_id IS NULL
  85. )
  86. )
  87. WHERE
  88. NOT ARRAY[CASE
  89. WHEN t._from = c._to
  90. THEN t._to
  91. ELSE t._from
  92. END] <@ c._from
  93. )
  94. SELECT factor AS p_factor
  95. FROM chain
  96. WHERE _to = (
  97. SELECT id FROM units WHERE name = p_to
  98. )
  99. ORDER BY COALESCE(array_length(_from, 1),0) ASC
  100. LIMIT 1
  101. $$;
  102. ALTER FUNCTION public.convert_unit(p_from text, p_to text, p_product text, OUT p_factor numeric) OWNER TO das;
  103. --
  104. -- Name: insert_category(text, text); Type: PROCEDURE; Schema: public; Owner: das
  105. --
  106. CREATE PROCEDURE public.insert_category(p_name text, "group" text)
  107. LANGUAGE sql
  108. AS $$
  109. INSERT INTO groups(id, name) VALUES ((SELECT max(id)+1 FROM groups), CASE WHEN "group" IS NULL THEN (SELECT g.name FROM categories AS c JOIN groups AS g ON (group_id = g.id) WHERE c.name = p_name) ELSE "group" END) ON CONFLICT DO NOTHING;
  110. INSERT INTO categories(id, name, group_id) VALUES((SELECT max(id)+1 FROM categories), p_name, CASE WHEN "group" IS NULL THEN (SELECT group_id FROM categories WHERE name = p_name) ELSE (SELECT id FROM groups WHERE name = "group") END) ON CONFLICT DO NOTHING;
  111. $$;
  112. ALTER PROCEDURE public.insert_category(p_name text, "group" text) OWNER TO das;
  113. --
  114. -- Name: insert_product(text, text, text); Type: PROCEDURE; Schema: public; Owner: das
  115. --
  116. CREATE PROCEDURE public.insert_product(name text, category text, "group" text DEFAULT NULL::text)
  117. LANGUAGE sql
  118. AS $$
  119. CALL insert_category(category, "group");
  120. INSERT INTO products(id, name, category_id) VALUES((SELECT max(id)+1 FROM products), name, (SELECT id FROM categories WHERE name = category)) ON CONFLICT DO NOTHING;
  121. $$;
  122. ALTER PROCEDURE public.insert_product(name text, category text, "group" text) OWNER TO das;
  123. --
  124. -- Name: insert_store(text, text); Type: PROCEDURE; Schema: public; Owner: das
  125. --
  126. CREATE PROCEDURE public.insert_store(p_name text, p_code text)
  127. LANGUAGE sql
  128. AS $$
  129. INSERT INTO stores(id, name, code) VALUES ((SELECT max(id)+1 FROM stores), p_name, p_code);
  130. $$;
  131. ALTER PROCEDURE public.insert_store(p_name text, p_code text) OWNER TO das;
  132. --
  133. -- Name: insert_transaction(timestamp with time zone, text, text, numeric, text, numeric, text, boolean, text[], text[]); Type: PROCEDURE; Schema: public; Owner: das
  134. --
  135. CREATE PROCEDURE public.insert_transaction(ts timestamp with time zone, store text, description text, quantity numeric, unit text, price numeric, product text, organic boolean DEFAULT false, tags text[] DEFAULT ARRAY[]::text[], tag_descriptions text[] DEFAULT ARRAY[]::text[])
  136. LANGUAGE sql
  137. AS $$
  138. INSERT INTO transactions (id, ts, store_id, description, quantity, unit_id, price, product_id, organic) VALUES ((SELECT max(id)+1 FROM transactions), ts at time zone 'utc', (SELECT id FROM stores WHERE name = store), description, quantity, (SELECT id FROM units WHERE name = unit), price, (SELECT id FROM products WHERE name = product), organic);
  139. INSERT INTO tags(id, name, description)
  140. SELECT
  141. COALESCE((SELECT max(id) FROM tags), 0) + row_number() OVER (ORDER BY name),
  142. name,
  143. description
  144. FROM UNNEST(tags, tag_descriptions) AS t(name,description)
  145. ON CONFLICT DO NOTHING;
  146. INSERT INTO tags_map(tag_id, transaction_id)
  147. SELECT id AS tag_id, (SELECT max(id) FROM transactions) AS transaction_id
  148. FROM UNNEST(tags, tag_descriptions) AS t(name,description)
  149. JOIN tags ON (t.name = tags.name);
  150. $$;
  151. ALTER PROCEDURE public.insert_transaction(ts timestamp with time zone, store text, description text, quantity numeric, unit text, price numeric, product text, organic boolean, tags text[], tag_descriptions text[]) OWNER TO das;
  152. --
  153. -- Name: insert_unit(text); Type: PROCEDURE; Schema: public; Owner: das
  154. --
  155. CREATE PROCEDURE public.insert_unit(p_name text)
  156. LANGUAGE sql
  157. AS $$
  158. INSERT INTO units(id, name) VALUES ((SELECT max(id)+1 FROM units), p_name);
  159. $$;
  160. ALTER PROCEDURE public.insert_unit(p_name text) OWNER TO das;
  161. --
  162. -- Name: insert_unit_conversion(text, text, numeric); Type: PROCEDURE; Schema: public; Owner: das
  163. --
  164. CREATE PROCEDURE public.insert_unit_conversion(p_from text, p_to text, p_factor numeric)
  165. LANGUAGE sql
  166. AS $$
  167. INSERT INTO conversions(id, _from, _to, factor) VALUES (
  168. (SELECT szudzik_encode(f.id, t.id) FROM units f, units t WHERE f.name = p_from AND t.name = p_to),
  169. (SELECT id FROM units WHERE name = p_from),
  170. (SELECT id FROM units WHERE name = p_to),
  171. p_factor
  172. );
  173. $$;
  174. ALTER PROCEDURE public.insert_unit_conversion(p_from text, p_to text, p_factor numeric) OWNER TO das;
  175. --
  176. -- Name: insert_unit_conversion(text, text, text, numeric); Type: PROCEDURE; Schema: public; Owner: das
  177. --
  178. CREATE PROCEDURE public.insert_unit_conversion(p_from text, p_to text, p_product text, p_factor numeric)
  179. LANGUAGE sql
  180. AS $$
  181. INSERT INTO conversions_complex(id, _from, _to, product_id, factor) VALUES (
  182. (SELECT szudzik_encode(f.id, t.id) FROM units f, units t WHERE f.name = p_from AND t.name = p_to),
  183. (SELECT id FROM units WHERE name = p_from),
  184. (SELECT id FROM units WHERE name = p_to),
  185. (SELECT id FROM products WHERE name = p_product),
  186. p_factor
  187. );
  188. $$;
  189. ALTER PROCEDURE public.insert_unit_conversion(p_from text, p_to text, p_product text, p_factor numeric) OWNER TO das;
  190. --
  191. -- Name: szudzik_encode(integer, integer, boolean); Type: FUNCTION; Schema: public; Owner: das
  192. --
  193. CREATE FUNCTION public.szudzik_encode(x integer, y integer, p_symmetric boolean DEFAULT true) RETURNS integer
  194. LANGUAGE sql IMMUTABLE PARALLEL SAFE
  195. AS $$
  196. SELECT CASE WHEN x >= y
  197. THEN CASE WHEN p_symmetric THEN y + x * x ELSE x * x + x + y END
  198. ELSE x + y * y
  199. END
  200. $$;
  201. ALTER FUNCTION public.szudzik_encode(x integer, y integer, p_symmetric boolean) OWNER TO das;
  202. --
  203. -- Name: transaction_price_per_unit(text); Type: FUNCTION; Schema: public; Owner: das
  204. --
  205. CREATE FUNCTION public.transaction_price_per_unit(p_unit text) RETURNS TABLE(ts timestamp without time zone, store text, description text, price_per_unit numeric, unit text, product text, category text, "group" text, organic boolean)
  206. LANGUAGE sql
  207. AS $$
  208. SELECT ts, store, description, min(CASE WHEN p_unit = "to" AND "from" = unit THEN price /(quantity*factor) WHEN p_unit = "from" AND "to" = unit THEN price*factor/quantity WHEN p_unit = unit THEN price/quantity ELSE NULL END) AS price_per_unit, p_unit AS unit, product, category, "group", organic FROM transaction_view JOIN conversion_view ON ("from" = unit OR "to" = unit) WHERE "to" = p_unit OR "from" = p_unit GROUP BY ts, description, product, category, "group", store, organic;
  209. $$;
  210. ALTER FUNCTION public.transaction_price_per_unit(p_unit text) OWNER TO das;
  211. SET default_tablespace = '';
  212. SET default_table_access_method = heap;
  213. --
  214. -- Name: categories; Type: TABLE; Schema: public; Owner: das
  215. --
  216. CREATE TABLE public.categories (
  217. id integer NOT NULL,
  218. name text NOT NULL,
  219. group_id integer NOT NULL
  220. );
  221. ALTER TABLE public.categories OWNER TO das;
  222. --
  223. -- Name: products; Type: TABLE; Schema: public; Owner: das
  224. --
  225. CREATE TABLE public.products (
  226. id integer NOT NULL,
  227. name text NOT NULL,
  228. category_id integer NOT NULL
  229. );
  230. ALTER TABLE public.products OWNER TO das;
  231. --
  232. -- Name: transactions; Type: TABLE; Schema: public; Owner: das
  233. --
  234. CREATE TABLE public.transactions (
  235. id integer NOT NULL,
  236. ts timestamp without time zone DEFAULT now() NOT NULL,
  237. description text NOT NULL,
  238. organic boolean DEFAULT false NOT NULL,
  239. quantity numeric NOT NULL,
  240. price numeric NOT NULL,
  241. unit_id integer NOT NULL,
  242. product_id integer NOT NULL,
  243. store_id integer NOT NULL
  244. );
  245. ALTER TABLE public.transactions OWNER TO das;
  246. --
  247. -- Name: category_over_year_month_breakdown_view; Type: VIEW; Schema: public; Owner: das
  248. --
  249. CREATE VIEW public.category_over_year_month_breakdown_view AS
  250. SELECT categories.name AS category,
  251. date_part('year'::text, (timezone('utc'::text, t.ts))::timestamp without time zone) AS year,
  252. date_part('month'::text, (timezone('utc'::text, t.ts))::timestamp without time zone) AS month,
  253. trunc(sum(t.price), 2) AS total_price
  254. FROM ((public.transactions t
  255. JOIN public.products ON ((t.product_id = products.id)))
  256. JOIN public.categories ON ((products.category_id = categories.id)))
  257. GROUP BY (date_part('year'::text, (timezone('utc'::text, t.ts))::timestamp without time zone)), (date_part('month'::text, (timezone('utc'::text, t.ts))::timestamp without time zone)), categories.name
  258. ORDER BY (date_part('year'::text, (timezone('utc'::text, t.ts))::timestamp without time zone)), (date_part('month'::text, (timezone('utc'::text, t.ts))::timestamp without time zone)), categories.name;
  259. ALTER TABLE public.category_over_year_month_breakdown_view OWNER TO das;
  260. --
  261. -- Name: conversions_complex; Type: TABLE; Schema: public; Owner: das
  262. --
  263. CREATE TABLE public.conversions_complex (
  264. id integer NOT NULL,
  265. _from integer NOT NULL,
  266. _to integer NOT NULL,
  267. product_id integer NOT NULL,
  268. factor numeric NOT NULL
  269. );
  270. ALTER TABLE public.conversions_complex OWNER TO das;
  271. --
  272. -- Name: units; Type: TABLE; Schema: public; Owner: das
  273. --
  274. CREATE TABLE public.units (
  275. id integer NOT NULL,
  276. name text NOT NULL
  277. );
  278. ALTER TABLE public.units OWNER TO das;
  279. --
  280. -- Name: conversion_complex_view; Type: VIEW; Schema: public; Owner: das
  281. --
  282. CREATE VIEW public.conversion_complex_view AS
  283. SELECT conversions_complex.factor,
  284. l.name AS "from",
  285. r.name AS "to"
  286. FROM ((public.conversions_complex
  287. JOIN public.units l ON ((conversions_complex._from = l.id)))
  288. JOIN public.units r ON ((conversions_complex._to = r.id)));
  289. ALTER TABLE public.conversion_complex_view OWNER TO das;
  290. --
  291. -- Name: conversions; Type: TABLE; Schema: public; Owner: das
  292. --
  293. CREATE TABLE public.conversions (
  294. id integer NOT NULL,
  295. _from integer NOT NULL,
  296. _to integer NOT NULL,
  297. factor numeric NOT NULL
  298. );
  299. ALTER TABLE public.conversions OWNER TO das;
  300. --
  301. -- Name: conversion_view; Type: VIEW; Schema: public; Owner: das
  302. --
  303. CREATE VIEW public.conversion_view AS
  304. SELECT conversions.factor,
  305. l.name AS "from",
  306. r.name AS "to"
  307. FROM ((public.conversions
  308. JOIN public.units l ON ((conversions._from = l.id)))
  309. JOIN public.units r ON ((conversions._to = r.id)));
  310. ALTER TABLE public.conversion_view OWNER TO das;
  311. --
  312. -- Name: groups; Type: TABLE; Schema: public; Owner: das
  313. --
  314. CREATE TABLE public.groups (
  315. id integer NOT NULL,
  316. name text NOT NULL
  317. );
  318. ALTER TABLE public.groups OWNER TO das;
  319. --
  320. -- Name: group_over_year_month_breakdown_view; Type: VIEW; Schema: public; Owner: das
  321. --
  322. CREATE VIEW public.group_over_year_month_breakdown_view AS
  323. SELECT groups.name AS "group",
  324. date_part('year'::text, (timezone('utc'::text, t.ts))::timestamp without time zone) AS year,
  325. date_part('month'::text, (timezone('utc'::text, t.ts))::timestamp without time zone) AS month,
  326. trunc(sum(t.price), 2) AS total_price
  327. FROM (((public.transactions t
  328. JOIN public.products ON ((t.product_id = products.id)))
  329. JOIN public.categories ON ((products.category_id = categories.id)))
  330. JOIN public.groups ON ((categories.group_id = groups.id)))
  331. GROUP BY (date_part('year'::text, (timezone('utc'::text, t.ts))::timestamp without time zone)), (date_part('month'::text, (timezone('utc'::text, t.ts))::timestamp without time zone)), groups.name
  332. ORDER BY (date_part('year'::text, (timezone('utc'::text, t.ts))::timestamp without time zone)), (date_part('month'::text, (timezone('utc'::text, t.ts))::timestamp without time zone)), groups.name;
  333. ALTER TABLE public.group_over_year_month_breakdown_view OWNER TO das;
  334. --
  335. -- Name: stores; Type: TABLE; Schema: public; Owner: das
  336. --
  337. CREATE TABLE public.stores (
  338. id integer NOT NULL,
  339. name text NOT NULL,
  340. code character varying(5) NOT NULL
  341. );
  342. ALTER TABLE public.stores OWNER TO das;
  343. --
  344. -- Name: transaction_view; Type: VIEW; Schema: public; Owner: das
  345. --
  346. CREATE VIEW public.transaction_view AS
  347. SELECT (( SELECT timezone('utc'::text, t.ts) AS timezone))::timestamp without time zone AS ts,
  348. s.name AS store,
  349. t.description,
  350. t.quantity,
  351. u.name AS unit,
  352. t.price,
  353. p.name AS product,
  354. c.name AS category,
  355. g.name AS "group",
  356. t.organic,
  357. s.code
  358. FROM (((((public.transactions t
  359. JOIN public.stores s ON ((t.store_id = s.id)))
  360. JOIN public.units u ON ((t.unit_id = u.id)))
  361. JOIN public.products p ON ((t.product_id = p.id)))
  362. JOIN public.categories c ON ((p.category_id = c.id)))
  363. JOIN public.groups g ON ((c.group_id = g.id)));
  364. ALTER TABLE public.transaction_view OWNER TO das;
  365. --
  366. -- Name: legacy_transaction_view; Type: VIEW; Schema: public; Owner: das
  367. --
  368. CREATE VIEW public.legacy_transaction_view AS
  369. SELECT (transaction_view.ts)::date AS ts,
  370. transaction_view.store,
  371. transaction_view.description,
  372. transaction_view."group",
  373. transaction_view.category,
  374. CASE
  375. WHEN transaction_view.organic THEN 'Org'::text
  376. ELSE ''::text
  377. END AS note,
  378. trunc(min(
  379. CASE
  380. WHEN ((conversion_view."to" = ANY (ARRAY['kg'::text, 'L'::text])) AND (conversion_view."from" = transaction_view.unit)) THEN (transaction_view.quantity * conversion_view.factor)
  381. WHEN ((conversion_view."from" = ANY (ARRAY['kg'::text, 'L'::text])) AND (conversion_view."to" = transaction_view.unit)) THEN (transaction_view.quantity / conversion_view.factor)
  382. WHEN (transaction_view.unit = ANY (ARRAY['kg'::text, 'L'::text])) THEN transaction_view.quantity
  383. WHEN (transaction_view.unit <> ALL (ARRAY['mL'::text, 'L'::text, 'g'::text, 'kg'::text])) THEN transaction_view.quantity
  384. ELSE NULL::numeric
  385. END), 3) AS quantity,
  386. CASE
  387. WHEN (transaction_view.unit = ANY (ARRAY['mL'::text, 'L'::text])) THEN 'L'::text
  388. WHEN (transaction_view.unit = ANY (ARRAY['g'::text, 'kg'::text])) THEN 'kg'::text
  389. ELSE transaction_view.unit
  390. END AS unit,
  391. trunc(transaction_view.price, 2) AS price,
  392. transaction_view.product
  393. FROM (public.transaction_view
  394. LEFT JOIN public.conversion_view ON (((transaction_view.unit = conversion_view."from") OR (transaction_view.unit = conversion_view."to"))))
  395. GROUP BY transaction_view.ts, transaction_view.store, transaction_view.description, transaction_view."group", transaction_view.category, transaction_view.price, transaction_view.product, transaction_view.organic, transaction_view.unit
  396. ORDER BY transaction_view.ts, transaction_view.store, transaction_view.description, transaction_view."group", transaction_view.category, transaction_view.price, transaction_view.product, transaction_view.organic, transaction_view.unit;
  397. ALTER TABLE public.legacy_transaction_view OWNER TO das;
  398. --
  399. -- Name: legacy_transaction_with_period_view; Type: VIEW; Schema: public; Owner: das
  400. --
  401. CREATE VIEW public.legacy_transaction_with_period_view AS
  402. SELECT (((((transaction_view.ts)::date - ((date_part('year'::text, transaction_view.ts) || '-04-01'::text))::date) / 7) / 4) + 1) AS period,
  403. (((((transaction_view.ts)::date - ((date_part('year'::text, transaction_view.ts) || '-04-01'::text))::date) / 7) % 4) + 1) AS period_week,
  404. (transaction_view.ts)::date AS ts,
  405. transaction_view.store,
  406. transaction_view.description,
  407. transaction_view.product,
  408. transaction_view.category,
  409. transaction_view."group",
  410. CASE
  411. WHEN transaction_view.organic THEN 'Org'::text
  412. ELSE ''::text
  413. END AS note,
  414. trunc(min(
  415. CASE
  416. WHEN ((conversion_view."to" = ANY (ARRAY['kg'::text, 'L'::text])) AND (conversion_view."from" = transaction_view.unit)) THEN (transaction_view.quantity * conversion_view.factor)
  417. WHEN ((conversion_view."from" = ANY (ARRAY['kg'::text, 'L'::text])) AND (conversion_view."to" = transaction_view.unit)) THEN (transaction_view.quantity / conversion_view.factor)
  418. WHEN (transaction_view.unit = ANY (ARRAY['kg'::text, 'L'::text])) THEN transaction_view.quantity
  419. WHEN (transaction_view.unit <> ALL (ARRAY['mL'::text, 'L'::text, 'g'::text, 'kg'::text])) THEN transaction_view.quantity
  420. ELSE NULL::numeric
  421. END), 3) AS quantity,
  422. CASE
  423. WHEN (transaction_view.unit = ANY (ARRAY['mL'::text, 'L'::text])) THEN 'L'::text
  424. WHEN (transaction_view.unit = ANY (ARRAY['g'::text, 'kg'::text])) THEN 'kg'::text
  425. ELSE transaction_view.unit
  426. END AS unit,
  427. trunc(transaction_view.price, 2) AS price,
  428. sum(transaction_view.price) OVER (PARTITION BY (((((transaction_view.ts)::date - ((date_part('year'::text, transaction_view.ts) || '-04-01'::text))::date) / 7) / 4) + 1) ORDER BY transaction_view.ts, transaction_view.description ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS running_total
  429. FROM (public.transaction_view
  430. LEFT JOIN public.conversion_view ON (((transaction_view.unit = conversion_view."from") OR (transaction_view.unit = conversion_view."to"))))
  431. GROUP BY (((((transaction_view.ts)::date - ((date_part('year'::text, transaction_view.ts) || '-04-01'::text))::date) / 7) / 4) + 1), transaction_view.ts, transaction_view.store, transaction_view.description, transaction_view."group", transaction_view.category, transaction_view.price, transaction_view.product, transaction_view.organic, transaction_view.unit
  432. ORDER BY (((((transaction_view.ts)::date - ((date_part('year'::text, transaction_view.ts) || '-04-01'::text))::date) / 7) / 4) + 1), transaction_view.ts, transaction_view.store, transaction_view.description, transaction_view."group", transaction_view.category, transaction_view.price, transaction_view.product, transaction_view.organic, transaction_view.unit;
  433. ALTER TABLE public.legacy_transaction_with_period_view OWNER TO das;
  434. --
  435. -- Name: legacy_transaction_with_period_and_mode_view; Type: VIEW; Schema: public; Owner: das
  436. --
  437. CREATE VIEW public.legacy_transaction_with_period_and_mode_view AS
  438. SELECT subq.mode,
  439. legacy_transaction_with_period_view.period,
  440. legacy_transaction_with_period_view.period_week,
  441. legacy_transaction_with_period_view.ts,
  442. legacy_transaction_with_period_view.store,
  443. legacy_transaction_with_period_view.description,
  444. legacy_transaction_with_period_view.product,
  445. legacy_transaction_with_period_view.category,
  446. legacy_transaction_with_period_view."group",
  447. legacy_transaction_with_period_view.note,
  448. legacy_transaction_with_period_view.quantity,
  449. legacy_transaction_with_period_view.unit,
  450. legacy_transaction_with_period_view.price,
  451. legacy_transaction_with_period_view.running_total
  452. FROM (public.legacy_transaction_with_period_view
  453. JOIN ( SELECT legacy_transaction_with_period_view_1.period,
  454. mode() WITHIN GROUP (ORDER BY (to_char((legacy_transaction_with_period_view_1.ts)::timestamp with time zone, 'month'::text))) AS mode
  455. FROM public.legacy_transaction_with_period_view legacy_transaction_with_period_view_1
  456. GROUP BY legacy_transaction_with_period_view_1.period) subq USING (period));
  457. ALTER TABLE public.legacy_transaction_with_period_and_mode_view OWNER TO das;
  458. --
  459. -- Name: product_group_view; Type: VIEW; Schema: public; Owner: das
  460. --
  461. CREATE VIEW public.product_group_view AS
  462. SELECT g.name AS "group",
  463. c.name AS category,
  464. p.name AS product
  465. FROM ((public.products p
  466. JOIN public.categories c ON ((p.category_id = c.id)))
  467. JOIN public.groups g ON ((c.group_id = g.id)))
  468. ORDER BY g.name, c.name, p.name;
  469. ALTER TABLE public.product_group_view OWNER TO das;
  470. --
  471. -- Name: tags; Type: TABLE; Schema: public; Owner: das
  472. --
  473. CREATE TABLE public.tags (
  474. id bigint NOT NULL,
  475. name text NOT NULL,
  476. description text
  477. );
  478. ALTER TABLE public.tags OWNER TO das;
  479. --
  480. -- Name: tags_map; Type: TABLE; Schema: public; Owner: das
  481. --
  482. CREATE TABLE public.tags_map (
  483. tag_id bigint NOT NULL,
  484. transaction_id bigint NOT NULL
  485. );
  486. ALTER TABLE public.tags_map OWNER TO das;
  487. --
  488. -- Name: transaction_rollup_view; Type: VIEW; Schema: public; Owner: das
  489. --
  490. CREATE VIEW public.transaction_rollup_view AS
  491. SELECT ((((legacy_transaction_view.ts - ((date_part('year'::text, legacy_transaction_view.ts) || '-04-01'::text))::date) / 7) / 4) + 1) AS period,
  492. ((((legacy_transaction_view.ts - ((date_part('year'::text, legacy_transaction_view.ts) || '-04-01'::text))::date) / 7) % 4) + 1) AS week,
  493. (((date_part('year'::text, legacy_transaction_view.ts) || '-04-01'::text))::date + ((((legacy_transaction_view.ts - ((date_part('year'::text, legacy_transaction_view.ts) || '-04-01'::text))::date) / 7) / 4) * 28)) AS period_start,
  494. ((((date_part('year'::text, legacy_transaction_view.ts) || '-04-01'::text))::date + ((((legacy_transaction_view.ts - ((date_part('year'::text, legacy_transaction_view.ts) || '-04-01'::text))::date) / 7) / 4) * 28)) + 27) AS period_end,
  495. legacy_transaction_view."group",
  496. sum(legacy_transaction_view.price) AS sum
  497. FROM public.legacy_transaction_view
  498. GROUP BY (((legacy_transaction_view.ts - ((date_part('year'::text, legacy_transaction_view.ts) || '-04-01'::text))::date) / 7) / 4), (((legacy_transaction_view.ts - ((date_part('year'::text, legacy_transaction_view.ts) || '-04-01'::text))::date) / 7) % 4), (((date_part('year'::text, legacy_transaction_view.ts) || '-04-01'::text))::date + ((((legacy_transaction_view.ts - ((date_part('year'::text, legacy_transaction_view.ts) || '-04-01'::text))::date) / 7) / 4) * 28)), legacy_transaction_view."group"
  499. ORDER BY (((date_part('year'::text, legacy_transaction_view.ts) || '-04-01'::text))::date + ((((legacy_transaction_view.ts - ((date_part('year'::text, legacy_transaction_view.ts) || '-04-01'::text))::date) / 7) / 4) * 28)), legacy_transaction_view."group";
  500. ALTER TABLE public.transaction_rollup_view OWNER TO das;
  501. --
  502. -- Data for Name: categories; Type: TABLE DATA; Schema: public; Owner: das
  503. --
  504. COPY public.categories (id, name, group_id) FROM stdin;
  505. 1 Aromatics 1
  506. 2 Tubers 1
  507. 4 Prepared 2
  508. 5 Fruit 1
  509. 6 Canned Goods 3
  510. 7 Eggs 4
  511. 8 Fish 4
  512. 21 Misc 3
  513. 25 Butter 26
  514. 32 Veggies 1
  515. 34 Coconut Milk 3
  516. 35 Coffee 36
  517. 36 Chocolate 37
  518. 37 Beef 4
  519. 315 Organic 144
  520. 321 Ice Cream 37
  521. 324 Chicken 4
  522. 491 Milk 26
  523. 498 Condiments 499
  524. 1930 Soda 36
  525. 144 Tea 36
  526. 145 Cheese 26
  527. 146 Flour 2
  528. 147 Sugar 148
  529. 1931 Juice 36
  530. 546 Electrolytes 36
  531. 548 Water 36
  532. 549 Chips 2
  533. 555 Supplemental 558
  534. 556 Nuts 559
  535. 557 Bulk 2
  536. 559 Dried Fruit 559
  537. 561 Seeds 559
  538. 143 Baking 144
  539. 565 Bars 499
  540. 567 Cold 499
  541. 569 Whole 2
  542. 570 Legumes 559
  543. 1932 Frozen Fruit 1
  544. 697 Sweetener 3
  545. 1993 Oil 3
  546. 2007 Lamb 4
  547. 2218 Concentrate 36
  548. 2264 Conventional 558
  549. 2406 Fermented 26
  550. 2428 Biscuits 37
  551. 2762 Supplement 36
  552. 2768 Balls 499
  553. 2783 Dried Meat 4
  554. 2794 Snacks 499
  555. 2796 Powdered 26
  556. 3294 Frozen Veg 1
  557. 3310 Lettuce 1
  558. 3311 Lollies 37
  559. \.
  560. --
  561. -- Data for Name: conversions; Type: TABLE DATA; Schema: public; Owner: das
  562. --
  563. COPY public.conversions (id, _from, _to, factor) FROM stdin;
  564. 5 1 2 1000
  565. 19 3 4 1000
  566. \.
  567. --
  568. -- Data for Name: conversions_complex; Type: TABLE DATA; Schema: public; Owner: das
  569. --
  570. COPY public.conversions_complex (id, _from, _to, product_id, factor) FROM stdin;
  571. 51 7 2 1 166
  572. \.
  573. --
  574. -- Data for Name: groups; Type: TABLE DATA; Schema: public; Owner: das
  575. --
  576. COPY public.groups (id, name) FROM stdin;
  577. 1 Produce
  578. 2 Grains
  579. 3 Staples
  580. 4 Fish, Meat, Eggs
  581. 13 bogus
  582. 26 Dairy
  583. 36 Drinks
  584. 37 Treats
  585. 144 Baking
  586. 148 Fermenting
  587. 499 Prepared
  588. 558 Spices
  589. 559 Dry Goods
  590. 1367
  591. \.
  592. --
  593. -- Data for Name: products; Type: TABLE DATA; Schema: public; Owner: das
  594. --
  595. COPY public.products (id, name, category_id) FROM stdin;
  596. 223 Neck Chops 2007
  597. 1 Onions 1
  598. 2 Potatoes 2
  599. 3 Crackers 4
  600. 4 Bananas 5
  601. 5 Tomato Paste 6
  602. 6 Free Range Eggs 7
  603. 7 Fish Fillets 8
  604. 8 Vinegar 21
  605. 9 Apples 5
  606. 10 Kumara 2
  607. 11 Mushrooms 1
  608. 12 Butter 25
  609. 13 Squash 32
  610. 14 Carrots 32
  611. 15 Coconut Cream 34
  612. 16 Coffee Beans 35
  613. 17 Whittakers Chocolate 36
  614. 18 Beef Mince 37
  615. 19 Chocolate Chips 143
  616. 20 Tulsi Tea 144
  617. 21 Vintage Cheese 145
  618. 22 Wholemeal Flour 146
  619. 23 White Sugar 147
  620. 24 Avocado 5
  621. 25 Capsicum 32
  622. 26 Butternut Squash 32
  623. 27 Apple Cider Vinegar 21
  624. 28 Vanilla 143
  625. 29 Whole Fish 8
  626. 30 Fish Heads 8
  627. 31 Mango 5
  628. 32 Beetroot 32
  629. 33 Ice Cream 321
  630. 34 Frozen Peas 32
  631. 35 Tasty Cheese 145
  632. 36 Whole Chicken 324
  633. 37 Raw Milk 491
  634. 224 Edam Cheese 145
  635. 38 Cream 491
  636. 39 Saurkraut 498
  637. 40 Parsnips 32
  638. 41 Canned Tomatoes 6
  639. 42 Organic Cheese 145
  640. 43 Fish Frames 8
  641. 44 Organic Chicken 324
  642. 45 Curry Paste 498
  643. 46 Cucumber 32
  644. 47 Ginger 1
  645. 48 Chicken Drumsticks 324
  646. 49 Garlic 1
  647. 50 Jalapenos Canned 6
  648. 51 Beef Chuck 37
  649. 52 Blade Steak 37
  650. 53 Coconut Water 546
  651. 54 Chicken Thighs 324
  652. 55 Water 548
  653. 56 Corn Chips 549
  654. 57 Canned Tuna 8
  655. 58 FR Chicken Thighs 324
  656. 59 Strawberries 5
  657. 60 Cabbage 32
  658. 61 Brewers Yeast 555
  659. 62 Almonds 556
  660. 63 Quinoa 557
  661. 64 Nutritional Yeast 555
  662. 65 Sultanas 559
  663. 66 Hemp Seeds 561
  664. 67 OSM bars 565
  665. 68 Starter 143
  666. 69 Coconut Yoghurt 567
  667. 70 White Flour 146
  668. 71 Brown Rice 569
  669. 72 Red Lentils 570
  670. 73 Mung Beans 570
  671. 74 Pumpkin Seeds 561
  672. 75 Salt 21
  673. 76 Pukka Tea 144
  674. 77 Honey 697
  675. 78 Dried Dates 559
  676. 79 FR Chicken Drumsticks 324
  677. 80 FR Chicken Mince 324
  678. 81 Chicken Mince 324
  679. 82 Peaches 5
  680. 83 Canned Salmon 8
  681. 84 Apricots 5
  682. 85 Plums 5
  683. 86 Watermelon 5
  684. 87 Colby Cheese 145
  685. 88 Brazil Nuts 556
  686. 89 Tomato Fresh 32
  687. 90 Marmite 498
  688. 91 Bars 565
  689. 92 Nut Bars 565
  690. 93 Mandarins 5
  691. 94 Broccoli 32
  692. 95 Cauliflower 32
  693. 96 Kiwifruit 5
  694. 97 Pears 5
  695. 98 Burger Patties 37
  696. 99 Tonic Water 1930
  697. 100 Tomato Juice 1931
  698. 101 Blueberries Frozen 1932
  699. 102 Strawberries Frozen 1932
  700. 103 Chicken Frames 324
  701. 104 Canned Peaches 6
  702. 105 Mayo 498
  703. 106 Eggplant 32
  704. 107 M&Ms Mini 36
  705. 108 Rye Flour 146
  706. 109 Mild Cheese 145
  707. 110 Beans Canned 6
  708. 111 Coconut Oil 1993
  709. 112 Candied Ginger 21
  710. 113 Olives Jar 6
  711. 114 Pasta 4
  712. 115 Lamb Shank 2007
  713. 219 Lamb Pieces 2007
  714. 116 Beef Sausages 37
  715. 117 Oranges 5
  716. 118 Lamb Mince 2007
  717. 119 Pinenuts 556
  718. 120 Chicken Thighs BL 324
  719. 121 Beef Stir Fry 37
  720. 122 Kelp 555
  721. 123 Buckwheat Groats 561
  722. 124 Wheat Berries 569
  723. 125 Coconut Desiccated 559
  724. 220 Cayenne Powder 2264
  725. 221 Herbal Tea 144
  726. 126 Sunflower Seeds 561
  727. 127 Fish Sauce 498
  728. 222 Cookie Pack 2428
  729. 128 Doritos 549
  730. 129 Smoked Salmon 8
  731. 130 Tomato Sauce 6
  732. 131 Seaweed 555
  733. 132 Hot Chilli 32
  734. 133 FR Chicken Whole 324
  735. 134 Chicken Nibbles 324
  736. 135 Soda Syrup 2218
  737. 136 Rooibos Tea 144
  738. 137 Beef Shin 37
  739. 138 Lamb Cubes 2007
  740. 139 Tumeric 1
  741. 140 Garam Masala 2264
  742. 141 Ginger Ground 2264
  743. 142 Paprika 2264
  744. 143 Baking Soda 143
  745. 144 Cacao Powder 143
  746. 145 Beef Scotch Fillet 37
  747. 146 Brown Lentils 570
  748. 147 Dry Peas 570
  749. 148 Meatballs 37
  750. 149 Potato Crisps 549
  751. 150 Mixed Fruit Frozen 1932
  752. 151 Beef Patties 37
  753. 152 Maple Syrup 697
  754. 153 Yoghurt Dairy 2406
  755. 154 Soup Refrigerated 567
  756. 155 Beef Roast 37
  757. 156 Soy Sauce 498
  758. 157 Oreo Cookies 2428
  759. 158 Hummus 567
  760. 159 Cornflour 143
  761. 160 Buns 4
  762. 161 Pizza Bases 4
  763. 162 Salami 37
  764. 163 Mozzarella Cheese 145
  765. 164 Whole Oats 569
  766. 165 Cinnamon, Ground 315
  767. 166 Demerara Sugar 143
  768. 167 Sugar, Coconut 147
  769. 168 French Lentils 570
  770. 169 Adzuki Beans 570
  771. 170 Chicken Stir Fry 324
  772. 171 Beetroot Canned 6
  773. 172 Celery 32
  774. 173 Alberts Eggs 7
  775. 174 Flax Seeds 561
  776. 175 Molasses 697
  777. 176 Chickpeas 570
  778. 177 Olive Oil 1993
  779. 178 Cookie Time 2428
  780. 179 Frozen Cherries 1932
  781. 180 Magnesium Fizz 2762
  782. 181 Frozen Pop 567
  783. 182 Snack Balls 2768
  784. 183 Olives Bag 2794
  785. 184 Jar of Chillis 6
  786. 185 Dried Figs 559
  787. 186 Beef Jerky 2783
  788. 187 Sunflower Oil 1993
  789. 188 Fruit Bars 2794
  790. 189 Dark Chocolate 36
  791. 190 Powdered Milk 2796
  792. 191 Canned Apricots 6
  793. 192 Courgettes 32
  794. 193 Kassori Methi 2264
  795. 194 Walnut 556
  796. 195 Oat Bars 2794
  797. 196 Rice Crackers 4
  798. 197 Ryecorn 569
  799. 198 Beef Topside 37
  800. 199 Salsa 498
  801. 200 Lamb Shoulder 2007
  802. 201 Feta 145
  803. 202 Peanuts 556
  804. 203 Puffed Rice 569
  805. 204 Chicken Tender 324
  806. 205 Corned Beef 37
  807. 206 Prunes 559
  808. 207 Orange Juice 1931
  809. 208 Arrowroot Powder 143
  810. 209 Mixed Nuts 556
  811. 210 Cashews 556
  812. 211 Monkfruit 697
  813. 212 Milk Standard 491
  814. 213 Brown Sugar 697
  815. 214 White Rice 569
  816. 215 Mutton Chops 2007
  817. 216 Frozen Green Beans 3294
  818. 217 Ginger Beer 1930
  819. 218 Salad Bag 3310
  820. 225 TNCC Lollies 3311
  821. 226 Cruskits 4
  822. \.
  823. --
  824. -- Data for Name: stores; Type: TABLE DATA; Schema: public; Owner: das
  825. --
  826. COPY public.stores (id, name, code) FROM stdin;
  827. 29 iHerb iHerb
  828. 26 Magic Fresh MF
  829. 27 Backyard Jem BJ
  830. 28 Miscellaneous MISC
  831. 1 Countdown CD
  832. 2 PaknSave PnS
  833. 3 Healthpost HP
  834. 4 Bin Inn BI
  835. 5 Dreamview DV
  836. 6 Co-op CO
  837. 7 Gordonton Farm Shop GFS
  838. 8 TOFS TOFS
  839. 9 Seafood Bazaar SB
  840. 10 Whatawhata Berry Farm Farm
  841. 11 Taupiri Dairy TD
  842. 12 Sarah Geerlings PERSN
  843. 13 New World NW
  844. 14 Farmers Market FM
  845. 15 Four Square FS
  846. 16 SummerGlow Apiaries SG
  847. 17 Tonic Health TH
  848. 18 New Save NS
  849. 19 Gilmours GIL
  850. 20 Warehouse WH
  851. 21 Organic Nation ON
  852. 22 Christchurch Food Show CFS
  853. 23 Reduce to Clear RTC
  854. 24 Scotsburn Farm SF
  855. 25 Fruit King FK
  856. \.
  857. --
  858. -- Data for Name: tags; Type: TABLE DATA; Schema: public; Owner: das
  859. --
  860. COPY public.tags (id, name, description) FROM stdin;
  861. \.
  862. --
  863. -- Data for Name: tags_map; Type: TABLE DATA; Schema: public; Owner: das
  864. --
  865. COPY public.tags_map (tag_id, transaction_id) FROM stdin;
  866. \.
  867. --
  868. -- Data for Name: transactions; Type: TABLE DATA; Schema: public; Owner: das
  869. --
  870. COPY public.transactions (id, ts, description, organic, quantity, price, unit_id, product_id, store_id) FROM stdin;
  871. 100 2021-08-19 01:08:00 Whittakers Block Cocoa Dark 72% 250g f 750 12.90 2 17 1
  872. 109 2021-07-19 21:35:00 Macro Organic Tomatoes Diced NAS 400g t 1200 4.50 2 41 1
  873. 111 2021-08-27 05:14:00 WW French Whole Beans 200g f 200.00 5 2 16 1
  874. 125 2021-07-20 00:18:00 Mainland Cheese Organic 500g t 500 10.39 2 42 2
  875. 132 2021-11-15 19:44:00 Whittakers Block Cocoa Dark 72% 250g f 250 4.5 2 17 1
  876. 136 2021-11-15 19:44:00 Mainland Cheese Organic 500g t 1000 21.20 2 42 1
  877. 140 2021-11-15 20:10:00 Mainland Cheese Organic 500g t 500 10.39 2 42 2
  878. 142 2021-11-03 23:00:00 Snapper Frames f 0.995 4.48 1 43 9
  879. 157 2021-11-23 00:42:00 Robert Harris Italian Roast Beans 200g f 200.00 5 2 16 1
  880. 160 2021-11-23 00:42:00 Macro Organic Tomatoes Diced NAS 400g t 800.00 3 2 41 1
  881. 163 2021-11-29 20:45:00 Garlic NZ f 0.047 1.17 1 49 1
  882. 170 2021-11-29 20:45:00 Mainland Cheese Organic 500g t 500 10.60 2 42 1
  883. 176 2021-11-22 23:00:00 Organic Beef Mince 90/10 t 0.4 11 1 18 8
  884. 182 2021-11-10 23:00:00 Organic Beef Mince 90/10 t 0.4 11.40 1 18 8
  885. 184 2021-11-10 23:00:00 Snapper Frames f 0.684 3.08 1 43 9
  886. 186 2021-11-04 23:00:00 Snapper Frames f 0.99 4.48 1 43 9
  887. 189 2021-10-30 23:00:00 Local Cabbage f 1 5 7 60 7
  888. 190 2021-10-30 23:00:00 Good Bugs Ginger Ninja Kimchi f 500.00 16.00 2 39 7
  889. 192 2021-08-05 00:00:00 Organic Beef Mince 90/10 t 0.4 11 1 18 8
  890. 195 2021-11-10 23:00:00 PYO Strawberries at Whatawhata Berry Farm f 1.037 15.94 1 59 10
  891. 196 2021-08-05 00:00:00 Dreamview Cream 500mL f 0.50 6.00 3 38 5
  892. 197 2021-08-08 00:00:00 Dreamview Raw Milk 1L f 3 9 3 37 5
  893. 198 2021-08-08 00:00:00 Dreamview Cream 500mL f 0.50 6.00 3 38 5
  894. 199 2021-08-16 00:00:00 Dreamview Cream 500mL f 0.50 6.00 3 38 5
  895. 200 2021-08-16 00:00:00 Dreamview Raw Milk 1L f 3 9 3 37 5
  896. 201 2021-08-23 00:00:00 Dreamview Raw Milk 1L f 1 3 3 37 5
  897. 205 2021-12-04 23:11:00 Whittakers Block Cocoa Dark 72% 250g f 500 9 2 17 2
  898. 212 2021-12-08 23:00:00 Tip Top Sundae Ice Cream 2 L f 2 6.90 3 33 11
  899. 216 2021-12-12 22:19:00 Macro Free Range Chicken Thigh Fillet, Reduced f 0.495 9.78 1 58 1
  900. 217 2021-12-12 22:19:00 Macro Free Range Chicken Thigh Fillet, Reduced f 0.513 10.14 1 58 1
  901. 221 2021-12-12 22:19:00 Garlic NZ f 0.017 0.49 1 49 1
  902. 222 2021-12-12 22:19:00 Fresh Ginger f 0.232 3.94 1 47 1
  903. 224 2021-12-12 22:19:00 CD Cream 500mL f 0.50 3.91 3 38 1
  904. 234 2021-12-12 22:19:00 Cucumber Telegraph f 1.00 1.8 7 46 1
  905. 237 2021-10-09 23:00:00 Nutritional Yeast, 1 kg bag t 1 47.83 1 64 6
  906. 238 2021-10-09 23:00:00 Sultanas, Bulk 2.5 kg bag t 2.5 21.47 1 65 6
  907. 239 2021-10-09 23:00:00 Chocolate Chips, bulk 10 kg bag t 3 78.75 1 19 6
  908. 241 2021-07-26 00:00:00 Jumbo Dozen Eggs from Dairy f 860 5 2 6 11
  909. 242 2021-11-30 23:00:00 Bulk Red Lentils Ceres 3.5 kg bag t 3.5 20.26 1 72 6
  910. 243 2021-11-30 23:00:00 Bulk Mung Beans Ceres 3.5 kg bag t 1 7.72 1 73 6
  911. 244 2021-11-30 23:00:00 Bulk Pumpkin Seeds Ceres 3 kg bag t 3 39.44 1 74 6
  912. 245 2021-11-30 23:00:00 Bulk Ceres Salt t 1 2.93 1 75 6
  913. 246 2021-11-30 23:00:00 Licorice and Cinnamon Tea, Pukka 20 count box 40g NET t 40 15.50 5 76 6
  914. 247 2021-07-17 00:00:00 Whittakers Block Dark Ghana 250g f 500 9 2 17 2
  915. 249 2021-12-20 23:18:00 Value Honey Creamed Clover Blend 500g f 0.5 5.49 1 77 2
  916. 251 2021-12-20 23:18:00 Pams Flour Wholemeal 1.5 kg f 1.50 1.98 1 22 2
  917. 252 2021-12-20 23:18:00 Queens Diamond Pitted Dates 400g f 400 2.19 2 78 2
  918. 254 2021-12-20 23:18:00 Value Rice Brown Long Grain 1 kg f 1 2.09 1 71 2
  919. 255 2021-12-20 23:18:00 Whittakers Block Dark Ghana 250g f 500 9 2 17 2
  920. 257 2021-12-20 23:18:00 Apples Braeburn f 1.931 7.32 1 9 2
  921. 262 2021-12-20 23:18:00 Cucumber Telegraph f 1.00 0.99 7 46 2
  922. 267 2021-12-20 23:18:00 Capsicum mixed bag 700g f 0.7 2.99 1 25 2
  923. 269 2021-12-20 23:18:00 Lewis Road Creamery Organic Single Cream 300mL f 0.3 3.99 3 38 2
  924. 271 2021-11-10 23:48:00 CD Prime Beef Mince Reduced f 1 12.85 1 18 1
  925. 272 2021-11-10 23:48:00 WW Flour Wholemeal 1.5 kg f 1.50 2 1 22 1
  926. 274 2021-11-10 23:48:00 Macro Organic Tomatoes Diced NAS 400g t 1.2 4.5 1 41 1
  927. 276 2021-11-10 23:48:00 Capsicum Odd Bunch 750g f 750 5 2 25 1
  928. 277 2021-11-03 23:13:00 Loose Avocado f 2 2 7 24 1
  929. 278 2021-11-03 23:13:00 Capsicum Red NZ f 2 3 7 25 1
  930. 280 2021-11-03 23:13:00 Macro Organic Apple 1 kg bag t 1 4.5 1 9 1
  931. 281 2021-11-03 23:13:00 Mainland Cheese Vintage 500g f 500 10.50 2 21 1
  932. 282 2021-11-03 23:13:00 Mainland Cheese Organic 500g t 1000 21.20 2 42 1
  933. 286 2021-11-03 23:00:00 OSM bars chocolate 6 pieces 507g NET f 6 13.48 7 67 2
  934. 287 2021-11-03 23:00:00 Fresh Ginger f 0.096 1.15 1 47 2
  935. 289 2021-11-03 23:00:00 Eclipse Cheese Tasty 1 kg f 1 11.99 1 35 2
  936. 294 2021-11-11 01:02:00 Robert Harris Italian Roast Beans 240g f 480.00 9.00 2 16 2
  937. 295 2021-11-11 01:02:00 Whittakers Block Cocoa Dark 72% 250g f 500 9 2 17 2
  938. 296 2021-11-11 01:02:00 Avocado Small f 4 4 7 24 2
  939. 298 2021-11-11 01:02:00 Cucumber Telegraph f 1.00 1.99 7 46 2
  940. 301 2021-11-11 01:02:00 Apples Fuji Organic 1 kg bag t 1 3.99 1 9 2
  941. 302 2021-11-11 01:02:00 Eclipse Cheese Tasty 1 kg f 1.00 11.99 1 35 2
  942. 306 2021-12-27 03:50:00 Whittakers Block Cocoa Dark 72% 250g f 500 9 2 17 2
  943. 308 2021-12-27 03:50:00 Cucumber Telegraph f 1.00 1.49 7 46 2
  944. 312 2021-12-27 03:50:00 Kapiti Ice Cream Triple Chocolate 1L f 1 9.89 3 33 2
  945. 313 2021-12-27 03:50:00 Eclipse Cheese Tasty 1 kg f 1.00 13.99 1 35 2
  946. 314 2021-12-27 03:50:00 Pam's Cream 1L f 1 7.57 3 38 2
  947. 319 2022-01-07 01:28:00 Macro Organic Tomatoes Diced NAS 400g t 2000.00 7.5 2 41 1
  948. 320 2022-01-07 01:28:00 Exotic Food Red Curry Paste 220g f 440.00 7.6 2 45 1
  949. 322 2022-01-07 01:28:00 Essentials French Whole Bean 200g f 200 5 2 16 1
  950. 323 2022-01-07 01:28:00 Cucumber Telegraph f 1.00 2 7 46 1
  951. 324 2022-01-07 01:28:00 Capsicum Odd Bunch 750g f 750 4.5 2 25 1
  952. 326 2022-01-11 02:54:00 Pams Free Range Eggs Mixed Grade 12s f 1746.00 15.87 2 6 2
  953. 1 2021-06-17 04:41:00 Onions brown loose f 702 1.76 2 1 1
  954. 11 2021-06-22 22:59:00 Onions Brown loose f 196 0.29 2 1 2
  955. 39 2021-06-30 23:20:00 Onions Brown Loose f 0.786 1.01 1 1 2
  956. 40 2021-07-27 04:29:00 Onions Brown Loose f 0.762 1.52 1 1 1
  957. 63 2021-08-05 05:33:00 Onions Brown f 0.901 1.16 1 1 2
  958. 78 2021-08-11 23:07:00 Local Spray Free Onions f 4 2 7 1 7
  959. 96 2021-08-19 01:56:00 Onions Brown f 0.556 0.55 1 1 2
  960. 104 2021-07-19 21:35:00 Onions Brown Loose f 0.577 1.44 1 1 1
  961. 147 2021-11-23 00:42:00 Onions Brown Loose f 0.722 2.16 1 1 1
  962. 172 2021-11-29 20:45:00 Onion Odd Bunch bag 1.5 kg f 1.5 3.50 1 1 1
  963. 215 2021-12-11 23:00:00 Sourdough starter with instructions t 50 5 2 68 12
  964. 327 2022-01-11 02:54:00 Value Rice Brown Long Grain 1 kg f 1 2.09 1 71 2
  965. 328 2022-01-11 02:54:00 Whittakers Block Cocoa Dark 72% 250g f 500 9 2 17 2
  966. 2 2021-06-17 04:41:00 Potatoes washed loose f 2.117 6.33 1 2 1
  967. 13 2021-06-22 23:31:00 Potato bag 2.5 kg Odd Bunch f 2.5 4 1 2 1
  968. 77 2021-08-11 23:07:00 Local Spray Free Potatoes f 3 8 1 2 7
  969. 115 2021-07-14 22:30:00 Onions Brown Loose f 0.317 0.48 1 1 1
  970. 126 2021-11-15 19:44:00 Onions Brown Loose f 0.922 2.31 1 1 1
  971. 171 2021-11-29 20:45:00 Organic Potato t 2 6.99 1 2 1
  972. 188 2021-10-30 23:00:00 Local Spray Free Onions f 4 2 7 1 7
  973. 265 2021-12-20 23:18:00 Onions Brown f 1.731 3.44 1 1 2
  974. 331 2022-01-11 02:54:00 Apricots Fresh Loose f 0.155 0.93 1 84 2
  975. 333 2022-01-11 02:54:00 Cucumber Telegraph f 1.00 1.49 7 46 2
  976. 338 2022-01-11 02:54:00 Plums Black Loose f 0.075 0.37 1 85 2
  977. 339 2022-01-11 02:54:00 Watermelon Red Whole 1ea f 2.68 6.99 1 86 2
  978. 341 2022-01-11 02:54:00 Valumetric Colby Cheese 1kg f 1 7.99 1 87 2
  979. 342 2021-10-22 00:02:00 Macro Free Range Chicken Drumsticks f 1.104 12.14 1 79 1
  980. 343 2021-10-22 00:02:00 Macro Free Range Chiken Whole f 1.608 14.47 1 36 1
  981. 346 2021-10-22 00:02:00 Garlic NZ f 0.052 1.51 1 49 1
  982. 351 2021-10-22 00:02:00 Jeds Beans 200g f 200 6 2 16 1
  983. 353 2021-10-22 00:02:00 WW Flour Wholemeal 1.5 kg f 1.50 2 1 22 1
  984. 354 2021-10-22 00:02:00 Otaika Valley Size 7 12 pack f 1488.00 15.60 2 6 1
  985. 355 2021-10-22 00:02:00 Avocado Loose f 3 3 7 24 1
  986. 356 2021-10-22 00:02:00 Macro Brazil Nuts 250g f 250 8.50 2 88 1
  987. 357 2021-10-22 00:02:00 Cucumber Telegraph f 1.00 2.3 7 46 1
  988. 358 2021-10-22 00:02:00 Capsicum Loose f 6 9.00 7 25 1
  989. 359 2021-10-22 00:02:00 Tomato Beekist Jelly Beans f 250 4 2 89 1
  990. 361 2021-10-22 00:02:00 Mexicano Corn Chips Natural 300g f 300 3.59 2 56 1
  991. 362 2021-10-22 00:02:00 Sanitarium Marmite 250g f 250 3.50 2 90 1
  992. 366 2021-10-28 02:33:00 Whittakers Blk Dark Almond 62% 250g f 250 5 2 17 1
  993. 367 2021-10-28 02:33:00 Capsicum Red NZ f 1 1.5 7 25 1
  994. 369 2021-10-28 02:33:00 Countdown Free Range Sz 7 12pk f 744 6.9 2 6 1
  995. 371 2021-10-31 01:06:00 Avalanche Franz Josef Beans 200g f 200 4.5 2 16 2
  996. 372 2021-10-31 01:06:00 Nice Natural Roasted Nut Bar Chocolate 6s f 6 0.99 7 92 2
  997. 374 2021-10-31 01:06:00 Whittakers Block Cocoa Dark 72% 250g f 250 4.79 2 17 2
  998. 378 2021-12-31 03:00:00 Fres produce the Odd Bunch Mandarins 1kg f 1 5.2 1 93 1
  999. 379 2021-12-31 03:00:00 Watties tomatoes roasted garlic and onion 400g f 400 2.20 2 41 1
  1000. 380 2021-12-31 03:00:00 CD Cream 1L f 1 7.62 3 38 1
  1001. 383 2021-12-31 03:00:00 Broccoli Fresh f 1 3 7 94 1
  1002. 384 2021-12-31 03:00:00 Cauliflower Fresh f 1 3.99 7 95 1
  1003. 385 2021-12-31 03:00:00 Cucumber Lebanese f 1.00 1.5 7 46 1
  1004. 386 2021-12-31 03:00:00 Cucumber Telegraph f 1.00 1.8 7 46 1
  1005. 387 2021-12-31 03:00:00 Garlic NZ f 0.07 2.1 1 49 1
  1006. 388 2021-12-31 03:00:00 Kiwifruit Green NZ f 1.2 4.2 1 96 1
  1007. 390 2021-12-31 03:00:00 Chinese Pears f 0.3 1.5 1 97 1
  1008. 392 2021-12-31 03:00:00 Capsicum Odd Bunch 750g f 750.00 5 2 25 1
  1009. 393 2021-12-31 03:00:00 Countdown Burger Patties Ultimate bbq beef steak 4pk f 500 11 2 98 1
  1010. 396 2021-12-31 03:00:00 Countdown Free Range Sz 7 12pk f 1488.00 13.80 2 6 1
  1011. 399 2021-12-31 03:00:00 Countdown Tonic Water 1.5L f 3 2.6 3 99 1
  1012. 400 2021-12-31 03:00:00 Keri premium Tomato Juice 1L f 1 2.5 3 100 1
  1013. 401 2021-12-31 03:00:00 Tongariro Natural Spring Water 5L f 5.00 3.90 3 55 1
  1014. 402 2021-12-31 03:00:00 Countdown frozen blueberries 1kg f 1 9.5 1 101 1
  1015. 403 2021-12-31 03:00:00 Countdown Frozen Strawberries 500g f 0.5 5.5 1 102 1
  1016. 404 2022-01-17 20:17:00 Chicken Frames by Weight f 1.51 6.04 1 103 1
  1017. 408 2022-01-17 20:17:00 Kiwifruit Green NZ f 0.432 3.67 1 96 1
  1018. 409 2022-01-17 20:17:00 Apricots Fresh Loose f 0.382 2.29 1 84 1
  1019. 410 2022-01-17 20:17:00 Watermelon Red Whole 1ea f 2.04 5.10 1 86 1
  1020. 411 2022-01-17 20:17:00 Killinchy Gold Choc Hazelnut 1L f 1 9 3 33 1
  1021. 412 2022-01-17 20:17:00 Beef Value Mince 82% 500g Reduced f 1.5 19.86 1 18 1
  1022. 413 2022-01-17 20:17:00 Countdown frozen blueberries 1kg f 1.00 9.50 1 101 1
  1023. 414 2022-01-17 20:17:00 Woodlands Free Range Size 6 10 pk f 530 4.90 2 6 1
  1024. 415 2022-01-17 20:17:00 WW Peach SLices in Fruit Juice 410g f 820.00 3 2 104 1
  1025. 416 2022-01-17 20:17:00 Macro Organic Tomatoes Diced NAS 400g t 1600.00 6 2 41 1
  1026. 417 2022-01-17 20:17:00 Macro Organic Whole Egg Mayo 440g t 440 6.5 2 105 1
  1027. 418 2022-01-17 20:17:00 WW Flour Wholemeal 1.5 kg f 1.50 2 1 22 1
  1028. 422 2022-01-17 20:17:00 Mexicano Corn Chips Natural 300g f 300 3 2 56 1
  1029. 424 2021-12-14 23:00:00 Rye flour at 20kg Co-op price t 2.5 9 1 108 6
  1030. 425 2021-12-14 23:00:00 Local Market Cabbage f 1.00 3 7 60 14
  1031. 426 2021-12-29 23:00:00 Rye flour at 20kg Co-op price t 2 7.16 1 108 6
  1032. 427 2022-01-09 23:00:00 Local Market Cabbage f 3 9 7 60 14
  1033. 428 2022-01-09 23:00:00 Rye flour at 20kg Co-op price t 2 7.16 1 108 6
  1034. 429 2022-01-12 23:00:00 Tongariro Natural Spring Water 15L f 15.00 10.5 3 55 1
  1035. 432 2021-10-23 23:00:00 Dreamview Raw Milk 1L f 3 9 3 37 5
  1036. 433 2021-10-16 23:00:00 Dreamview Raw Milk 1L f 2 6 3 37 5
  1037. 437 2022-01-24 21:21:00 Watermelon Red Whole f 2.34 4.68 1 86 1
  1038. 440 2022-01-24 21:21:00 Countdown Free Range Sz 7 12pk f 1488.00 13.8 2 6 1
  1039. 441 2022-01-24 21:21:00 Alpine Cheese Mild 1 kg f 1 10.95 1 109 1
  1040. 442 2022-01-24 21:21:00 Macro Organic Tomatoes Diced NAS 400g t 2400.00 9 2 41 1
  1041. 119 2021-07-14 22:30:00 Organic Potato t 2 6.99 1 2 1
  1042. 266 2021-12-20 23:18:00 Potatoes washed loose f 1.246 2.85 1 2 2
  1043. 337 2022-01-11 02:54:00 Onions Brown, 1 large f 0.311 0.87 1 1 2
  1044. 344 2021-10-22 00:02:00 Onions Brown Loose f 1.047 2.62 1 1 1
  1045. 420 2022-01-17 20:17:00 Onions brown 1.5 kg f 1.5 4.99 1 1 1
  1046. 443 2022-01-24 21:21:00 Macro Org Baked Beans in Tomato Sauce 420g t 420 1.5 2 110 1
  1047. 444 2022-01-24 21:21:00 Cucumber Green f 1.00 2.5 7 46 1
  1048. 445 2022-01-24 21:21:00 WW Flour Wholemeal 1.5 kg f 1.50 2 1 22 1
  1049. 446 2022-01-24 21:21:00 Mexicano Corn Chips Natural 300g f 600.00 7.18 2 56 1
  1050. 448 2022-01-31 23:40:00 Olivado Natural Coconut Cooking Oil 1L t 1 10.50 3 111 1
  1051. 450 2022-01-31 23:40:00 Macro Organic Tomatoes Diced NAS 400g t 1200.00 4.5 2 41 1
  1052. 452 2022-01-31 23:40:00 Tasti Crystal GInger 150g f 150 4.5 2 112 1
  1053. 453 2022-01-31 23:40:00 WW Black Sliced Olives 430g f 430 3.2 2 113 1
  1054. 454 2022-01-31 23:40:00 Doritos corn chips original 170g f 170 2 2 128 1
  1055. 455 2022-01-31 23:40:00 Macro Org Pasta Penne 500g f 500 2.50 2 114 1
  1056. 456 2022-01-31 23:40:00 Mexicano Corn Chips Natural 300g f 600 4.90 2 56 1
  1057. 457 2022-01-31 23:40:00 Loose Avocado f 1 1.5 7 24 1
  1058. 459 2022-02-01 00:24:00 Organic Beef Mince Lean 400g t 0.4 12 1 18 8
  1059. 460 2022-02-01 00:24:00 Organic Lamb Shanks t 0.85 28.50 1 115 8
  1060. 461 2022-02-01 00:24:00 Organic Beef Sausage Garlic & Parsley t 6 12 7 116 8
  1061. 463 2022-01-31 23:07:00 OSM bars chocolate 6 pieces 507g NET f 12 25.78 7 67 2
  1062. 464 2022-01-31 23:07:00 Otaika Valley Size 7 12 pack f 744 6.99 2 6 2
  1063. 465 2022-01-31 23:07:00 Pams Flour Wholemeal 1.5 kg f 1.50 1.98 1 22 2
  1064. 466 2022-01-31 23:07:00 Pams Flour Wholemeal 1.5 kg f 1.50 1.98 1 22 2
  1065. 467 2022-01-31 23:07:00 Queens Diamond Pitted Dates 400g f 400.00 2.1900 2 78 2
  1066. 468 2022-01-31 23:07:00 Sealord Tuna inWater 185g f 740.00 10.00 2 57 2
  1067. 469 2022-01-31 23:07:00 Whittakers Block Cocoa Dark 72% 250g f 500 9 2 17 2
  1068. 473 2022-01-31 23:07:00 Capsicum Bag Misfitz 750g f 750 3.99 2 25 2
  1069. 474 2022-01-31 23:07:00 Short Cucumber f 1.00 1.79 7 46 2
  1070. 475 2022-01-31 23:07:00 Fresh Ginger f 0.181 1.99 1 47 2
  1071. 479 2022-01-31 23:07:00 Killinchy Gold Vanilla 1L f 1 8.99 3 33 2
  1072. 480 2022-01-31 23:07:00 Mainland Cheese Organic 500g t 1000 20.78 2 42 2
  1073. 481 2022-01-31 23:07:00 Mainland Cheese Vintage 500g f 500 10.39 2 21 2
  1074. 482 2022-01-31 23:07:00 Valumetric Colby Cheese 1kg f 1.00 10.99 1 87 2
  1075. 483 2022-02-22 00:35:00 Watermelon Whole f 3.265 3.27 1 86 1
  1076. 484 2022-02-22 00:35:00 Chicken Thigh Bonein, Conventional, Reduced f 0.819 7.01 1 54 1
  1077. 485 2022-02-22 00:35:00 Essentials Coconut Cream 400 mL f 1600.00 4.8 4 15 1
  1078. 487 2022-02-22 00:35:00 Capsicum Odd Bunch 750g f 750 5 2 25 1
  1079. 488 2022-02-22 00:35:00 Mainland Cheese Vintage 500g f 500 11 2 21 1
  1080. 489 2022-02-22 00:35:00 Mainland Cheese Organic 500g t 500 11 2 42 1
  1081. 490 2022-02-22 00:00:00 Avalanche Franz Josef Beans 200g f 400 8 2 16 2
  1082. 492 2022-02-22 00:00:00 Otaika Valley Size 7 12 pack f 2976.00 26.36 2 6 2
  1083. 493 2022-02-22 00:00:00 Whittakers Block Cocoa Dark 72% 250g f 500 9 2 17 2
  1084. 495 2022-02-22 00:00:00 NZ Trevally Fillets f 0.346 7.61 1 7 2
  1085. 496 2022-02-22 00:00:00 Avocado. Large Loose f 4 4.40 7 24 2
  1086. 500 2022-02-22 00:00:00 Mandarins Loose NZ f 0.211 1.01 1 93 2
  1087. 503 2022-02-22 00:00:00 Valumetric Colby Cheese 1kg f 1.00 10.89 1 87 2
  1088. 504 2022-02-08 01:03:00 Onions Brown Loose f 0.952 2.85 1 1 1
  1089. 506 2022-02-08 01:03:00 Macro Free Range Chicken Drumsticks f 1.276 13.4 1 79 1
  1090. 508 2022-02-08 01:03:00 Orange Navel Large Imported f 0.332 1.99 1 117 1
  1091. 509 2022-02-08 01:03:00 Fresh Ginger f 0.112 1.79 1 47 1
  1092. 512 2022-02-08 01:03:00 Macro Organic Tomatoes Diced NAS 400g t 400 1.5 2 41 1
  1093. 514 2022-02-08 01:03:00 Countdown Free Range Sz 7 12pk f 744 6.9 2 6 1
  1094. 515 2022-02-08 01:03:00 Woodland Free Range Eggs Sz6 18pk f 954 8.8 2 6 1
  1095. 516 2022-02-08 01:03:00 Lamb Mince Reduced f 500 11.44 2 118 1
  1096. 517 2022-02-08 01:03:00 Countdown Burger Patties Ultimate bbq beef steak 4pk f 500.00 12 2 98 1
  1097. 518 2022-02-08 01:03:00 Tasti Pinenuts 70g f 70 5 2 119 1
  1098. 519 2022-02-08 01:03:00 Avocado. Large Loose f 2 2.8 7 24 1
  1099. 520 2022-02-08 01:03:00 Cucumber Telegraph f 1.00 2.99 7 46 1
  1100. 524 2022-02-15 01:54:00 Watermelon Red Whole f 2.815 7.04 1 86 1
  1101. 525 2022-02-15 01:54:00 Chicken Thigh Boneless Skinless Large f 1 18.68 1 120 1
  1102. 526 2022-02-15 01:54:00 Woodlands Free Range Size 6 10 pk f 530 4.90 2 6 1
  1103. 527 2022-02-15 01:54:00 Countdown Free Range Sz 7 12pk f 744 6.9 2 6 1
  1104. 529 2022-02-15 01:54:00 Essentials Coconut Cream 400 mL f 800 2.4 4 15 1
  1105. 1429 2023-02-19 23:00:00 Oats, Jumbo Rolled split from Melody t 5 20.5 1 164 6
  1106. 531 2022-02-15 01:54:00 Macro Organic Tomatoes Diced NAS 400g t 800.00 3 2 41 1
  1107. 533 2022-02-15 01:54:00 Capsicum Odd Bunch 750g f 750 5 2 25 1
  1108. 534 2022-02-15 01:54:00 Avocado. Large Loose f 2 2.8 7 24 1
  1109. 535 2022-02-15 01:54:00 CD cheese mild 1 kg f 1.00 11.8 1 109 1
  1110. 536 2022-02-15 01:54:00 CD Premium Beef Stir Fry reduced f 1 17.82 1 121 1
  1111. 537 2022-01-25 23:00:00 Organic Medium Grain Brown Rice, Bulk t 10 32.89 1 71 6
  1112. 538 2022-02-04 23:00:00 Fill Your Own Honey f 3.8 38 1 77 16
  1113. 539 2022-02-08 23:00:00 Kelp Granules 250g f 250 11.90 2 122 17
  1114. 540 2022-02-08 23:01:00 Rye flour, share 25 kg bag t 10 28.71 1 108 6
  1115. 541 2022-02-08 23:01:00 Buckwheat Hulled, 25 kg share bag t 13 60.72 1 123 6
  1116. 542 2022-02-08 23:01:00 Wheat, whole, dressed 25 kg bag t 25 80.42 1 124 6
  1117. 543 2022-02-08 23:01:00 Coconut Flakes, 1.5 kg bag t 1.5 13.19 1 125 6
  1118. 227 2021-12-12 22:19:00 Onion Red 1.5 kg bag f 1.5 4 1 1 1
  1119. 317 2022-01-07 01:28:00 Onions Brown Loose f 1.142 3.99 1 1 1
  1120. 478 2022-01-31 23:07:00 Onions Brown Loose f 0.851 2.12 1 1 2
  1121. 544 2022-02-08 23:01:00 Sunflower Seeds, 3 kg bag t 3 20.34 1 126 6
  1122. 545 2022-02-08 23:01:00 Nutritional Yeast, 1 kg bag t 1.00 48 1 64 6
  1123. 546 2022-02-08 23:01:00 Sultanas, Bulk 2.5 kg bag t 2.50 21.55 1 65 6
  1124. 547 2022-02-08 23:01:00 Quinoa, White, 3.5 kg bag t 3.5 34.75 1 63 6
  1125. 548 2022-02-28 22:11:00 Fresh Ginger f 0.192 3.07 1 47 1
  1126. 551 2022-02-28 22:11:00 Macro Free Range Chicken Drumsticks f 1.186 12.45 1 79 1
  1127. 552 2022-02-28 22:11:00 WW Peach SLices in Fruit Juice 410g f 1230.00 4.5 2 104 1
  1128. 553 2022-02-28 22:11:00 Macro Organic Tomatoes Diced NAS 400g t 400 1.5 2 41 1
  1129. 554 2022-02-28 22:11:00 Countdown Free Range Sz 7 12pk f 1488.00 13.80 2 6 1
  1130. 555 2022-02-28 22:11:00 WW White Sugar 3 kg f 3 5.60 1 23 1
  1131. 556 2022-02-28 22:11:00 Ahg Fish Sauce 200mL f 200 2.65 4 127 1
  1132. 559 2022-02-28 22:11:00 CD Beef Mince 82% 1kg f 1 14.5 1 18 1
  1133. 560 2022-03-07 21:29:00 Essentials Coconut Cream 400 mL f 1600.00 4.80 4 15 1
  1134. 561 2022-03-07 21:29:00 Macro Organic Tomatoes Diced NAS 400g t 1200.00 4.5 2 41 1
  1135. 563 2022-03-07 21:29:00 Capsicum Odd Bunch 750g f 750 5.5 2 25 1
  1136. 564 2022-03-07 21:11:00 Otaika Valley Size 7 12 pack f 2232.00 19.77 2 6 2
  1137. 565 2022-03-07 21:11:00 Queens Diamond Pitted Dates 400g f 400.00 2.1900 2 78 2
  1138. 566 2022-03-07 21:11:00 Whittakers Block Cocoa Dark 72% 250g f 500 9 2 17 2
  1139. 567 2022-03-07 21:11:00 Avocado. Large Loose f 4 4 7 24 2
  1140. 575 2022-03-07 21:11:00 Raglan Coconut Yoghurt Vanilla 700mL t 700.00 11 4 69 2
  1141. 576 2022-03-07 21:11:00 Valumetric Edam Cheese 1 kg f 1.00 10.89 1 109 2
  1142. 577 2022-03-07 21:11:00 NZ Chicken Thigh Cutlets f 0.464 5.1 1 120 2
  1143. 580 2022-03-15 00:29:00 Watermelon Red Whole 1ea f 2.56 6.4 1 86 1
  1144. 581 2022-03-15 00:29:00 Fresh Ginger f 0.242 3.87 1 47 1
  1145. 582 2022-03-15 00:29:00 Countdown Free Range Sz 6 6pk Short Date Sale f 2.60 16.17 1 6 1
  1146. 583 2022-03-15 00:29:00 Doritos Corn Chips Original 170g f 340.00 4 2 128 1
  1147. 584 2022-03-15 00:29:00 Born & Bred NZ Prime Beef Mince 500g REDUCED f 2 20.80 1 18 1
  1148. 585 2022-03-15 00:29:00 Ocean Blue Smoked Salmon 180g f 180 10 2 129 1
  1149. 586 2022-03-15 00:29:00 CD cheese mild 1 kg f 1.00 11.8 1 109 1
  1150. 587 2022-03-15 00:29:00 Essentials Coconut Cream 400 mL f 1200.00 3.6 4 15 1
  1151. 588 2022-03-15 00:29:00 Macro Orgaic Passata 700g t 2100 9 2 130 1
  1152. 589 2022-03-15 00:29:00 Macro Organic Tomatoes Diced NAS 400g t 400 1.50 2 41 1
  1153. 590 2022-03-15 00:29:00 Whittakers Block Cocoa Dark 72% 250g f 500 9 2 17 1
  1154. 591 2022-03-15 00:29:00 Avocado. Large Loose f 2 3.5 7 24 1
  1155. 593 2022-03-15 00:29:00 WW White Sugar 3 kg f 3.00 5.6 1 23 1
  1156. 594 2022-03-15 01:37:00 Fresh Ginger f 0.14 0.7 1 47 18
  1157. 595 2022-03-15 01:37:00 Fresh Green Chillis f 0.03 0.45 1 132 18
  1158. 596 2022-03-22 21:45:00 Garlic NZ f 0.032 1.22 1 49 1
  1159. 597 2022-03-22 21:45:00 Macro Orgaic Passata 700g t 700 3 2 130 1
  1160. 599 2022-03-22 21:45:00 Raglan Coconut Yoghurt Blueberry 700g t 700.00 12 2 69 1
  1161. 600 2022-03-22 21:45:00 Whittakers Block Cocoa Dark 72% 250g f 250 4.5 2 17 1
  1162. 601 2022-03-22 21:45:00 Macro Org Wholewheat Penne 500g t 500.00 2.8 2 114 1
  1163. 602 2022-03-22 21:45:00 Mainland Cheese Vintage 500g f 500 11 2 21 1
  1164. 604 2022-03-22 22:08:00 OSM bars chocolate 6 pieces 507g NET f 12 25.78 7 67 2
  1165. 605 2022-03-22 22:08:00 Otaika Valley Size 7 12 pack f 2.23 19.77 1 6 2
  1166. 606 2022-03-22 22:08:00 Whittakers Block Cocoa Dark 72% 250g f 500 9 2 17 2
  1167. 607 2022-03-22 22:08:00 Avocado. Large Loose f 3 2 7 24 2
  1168. 611 2022-03-28 21:55:00 Aurora Coffee Beans Prima Qualita 1kg f 1 17.2 1 16 1
  1169. 613 2022-03-28 21:49:00 Macro Free Range Chicken Thigh Fillet, Reduced f 0.543 7.74 1 58 1
  1170. 614 2022-03-28 21:49:00 Macro Free Range Chicken Thigh Fillet, Reduced f 0.475 5.33 1 58 1
  1171. 616 2022-03-28 21:49:00 Countdown Free Range Sz 7 12pk f 744 6.9 2 6 1
  1172. 617 2022-03-28 21:49:00 Macro Orgaic Passata 700g t 1400 6 2 130 1
  1173. 618 2022-03-28 21:49:00 Barkers SodaSyrup Brewed Ginger Beer 710mL f 710 6.5 4 135 1
  1174. 619 2022-03-28 21:49:00 Freshpak Rooibos Tea 40ea 100g f 100 4.5 2 136 1
  1175. 620 2022-03-28 21:49:00 Doritos Corn Chips Original 170g f 170 2 2 128 1
  1176. 625 2022-03-28 22:16:00 Capsicum Loose f 1 2.49 7 25 18
  1177. 627 2022-03-28 22:16:00 Conventional Cabbage f 1.505 5.99 1 60 18
  1178. 633 2022-04-05 02:37:00 Cucumber Telegraph f 1.00 1.99 7 46 18
  1179. 635 2022-04-05 02:37:00 Capsicum mixed bag f 0.582 3.99 1 25 18
  1180. 637 2022-04-05 02:37:00 Fiji Tumeric f 0.085 1.02 1 139 18
  1181. 638 2022-04-05 02:55:00 CD Beef Mince 1kg Reduced f 2 17.88 1 18 1
  1182. 640 2022-04-05 02:55:00 Broccoli Fresh f 1.00 2 7 94 1
  1183. 641 2022-04-05 02:55:00 Avocado. Large Loose f 4 7 7 24 1
  1184. 646 2022-04-12 22:37:00 Macro Free Range Chicken Thigh Fillet, Reduced f 0.539 9.84 1 58 1
  1185. 647 2022-04-12 22:37:00 Macro Free Range Chicken Thigh Fillet, Reduced f 0.572 10.44 1 58 1
  1186. 648 2022-04-12 22:37:00 Macro Free Range Chicken Thigh Fillet, Reduced f 0.604 11.02 1 58 1
  1187. 650 2022-04-12 22:37:00 Macro Orgaic Passata 700g t 2100.00 9 2 130 1
  1188. 651 2022-04-12 22:37:00 Whittakers Block Dark Ghana 250g f 500 8 2 17 1
  1189. 652 2022-04-12 22:37:00 Countdown Free Range Sz 7 12pk f 1488.00 13.8 2 6 1
  1190. 654 2022-04-12 22:37:00 Barkers SodaSyrup Brewed Ginger Beer 710mL f 1420.00 10 4 135 1
  1191. 656 2022-04-12 22:37:00 Fresh Red Chillis f 2 3.4 7 132 1
  1192. 657 2022-04-12 22:37:00 Avocado. Large Loose f 2 3.5 7 24 1
  1193. 659 2022-04-17 23:25:00 Garlic NZ f 0.052 2.76 1 49 1
  1194. 660 2022-04-20 00:19:00 Garam Masala Bulk Bin f 0.052 2.18 1 140 4
  1195. 661 2022-04-20 00:19:00 Ground Ginger Bulk Bin f 0.06 2.69 1 141 4
  1196. 153 2021-11-23 00:42:00 Macro Organic White Washed Potatoes 1.5 kg t 1.5 8.5 1 2 1
  1197. 363 2021-10-28 02:33:00 Onions Brown Loose f 0.487 1.22 1 1 1
  1198. 439 2022-01-24 21:21:00 Onions Brown Loose f 0.152 0.53 1 1 1
  1199. 645 2022-04-12 22:37:00 Onions Brown Loose f 0.382 1.14 1 1 1
  1200. 662 2022-04-20 00:19:00 Brewer's Yeast, from Bulk Bin f 126 4.4 2 61 4
  1201. 663 2022-04-20 00:19:00 Paprika Bulk Bin f 0.086 2.8 1 142 4
  1202. 668 2022-04-20 01:03:00 Chicken Thigh Boneless Skinless Large f 1.038 18.04 1 120 1
  1203. 1407 2023-02-04 23:00:00 Tulsi Tumeric Ginger Tea 18 bags t 34.2 10.98 2 20 29
  1204. 1408 2023-02-04 23:00:00 Organic India Tulsi Ashwagandha 18bags t 36 11.27 2 20 29
  1205. 669 2022-04-20 01:03:00 Macro Orgaic Passata 700g t 2800.00 12 2 130 1
  1206. 670 2022-04-20 01:03:00 WW Tomatoes Diced Italian 800g f 1.6 4 1 41 1
  1207. 671 2022-04-20 01:03:00 Macro Organic Tomatoes Diced NAS 400g t 800 3.6 2 41 1
  1208. 673 2022-04-20 01:03:00 Cabbage Red Whole f 1 6.99 7 60 1
  1209. 674 2022-04-23 21:47:00 Pam's Baking Soda 500g f 500 2.47 2 143 2
  1210. 676 2022-04-23 21:47:00 Cucumber Telegraph f 2 5 7 46 2
  1211. 677 2022-04-20 02:34:00 Otaika Valley Size 7 12 pack f 1488.00 13.18 2 6 2
  1212. 678 2022-04-20 02:34:00 Whittakers Block Peanut Butter Jelly 250g f 250 2.99 2 17 2
  1213. 681 2022-04-20 02:34:00 Avocado. Large Loose f 2 3 7 24 2
  1214. 684 2022-04-11 00:00:00 No Label Jumbo dozen eggs f 800.00 5.50 2 6 11
  1215. 685 2022-05-10 22:53:00 Macro Free Range Chicken Whole f 1.65 15.84 1 133 1
  1216. 686 2022-05-10 22:53:00 CD Chicken Nibbles Med Reduced f 1.108 7.52 1 134 1
  1217. 688 2022-05-10 22:53:00 Countdown Free Range Sz 7 12pk f 1488.00 13.8 2 6 1
  1218. 689 2022-05-10 22:53:00 Waitoa FR Chicken Thigh Fillet 400g f 0.8 18.72 1 58 1
  1219. 690 2022-05-10 22:53:00 CD Beef Mince 1kg Reduced f 1 11.47 1 18 1
  1220. 692 2022-05-10 22:53:00 Doritos Corn Chips Original 170g f 340.00 3.8 2 128 1
  1221. 693 2022-05-10 22:53:00 WW Dates Pitted 500g f 500 2.40 2 78 1
  1222. 695 2022-05-10 22:22:00 Karajoz Organic Coffee Beans f 0.75 20.49 1 16 2
  1223. 696 2022-05-10 22:22:00 Pams Flour Plain 1.5 kg f 1.50 1.8 1 70 2
  1224. 698 2022-05-10 22:22:00 Whittakers Block Cocoa Dark 72% 250g f 1000 16 2 17 2
  1225. 699 2022-05-10 22:22:00 NZ Red Cod Fillets f 0.544 10.77 1 7 2
  1226. 701 2022-05-10 22:22:00 Avocado. Large Loose f 2 4 7 24 2
  1227. 704 2022-05-10 22:22:00 Beetroot Conventional f 0.226 1.11 1 32 2
  1228. 705 2022-05-10 22:22:00 Cabbage Green Whole f 1 4.99 7 60 2
  1229. 711 2022-05-18 02:05:00 Fresh Ginger f 0.232 3.83 1 47 1
  1230. 715 2022-05-18 02:05:00 Macro Organic Tomatoes Diced NAS 400g t 800 3.6 2 41 1
  1231. 716 2022-05-18 02:05:00 Macro Orgaic Passata 700g t 1400.00 6 2 130 1
  1232. 717 2022-05-18 02:05:00 CD Free Range Eggs Sz8 6pack reduced f 810.00 6.2 2 6 1
  1233. 718 2022-05-18 02:05:00 Countdown Free Range Sz 6 6pk Short Date Sale f 636.00 5.20 2 6 1
  1234. 720 2022-05-18 02:05:00 Countdown Free Range Sz 7 12pk f 744 6.9 2 6 1
  1235. 721 2022-05-18 02:05:00 Tostitos Splash of Lime 175g f 175 2.5 2 56 1
  1236. 724 2022-05-24 21:00:00 Garlic NZ f 0.05 2.65 1 49 1
  1237. 726 2022-05-24 21:00:00 CD Chicken Frames by Weight f 1.6 6.4 1 103 1
  1238. 727 2022-05-24 21:00:00 Essentials Coconut Cream 400 mL f 1200.00 4.2 4 15 1
  1239. 728 2022-05-24 21:00:00 Macro Organic Tomatoes Diced NAS 400g t 400 1.8 2 41 1
  1240. 729 2022-05-24 21:00:00 Doritos Corn Chips Original 170g f 510.00 6 2 128 1
  1241. 731 2022-05-24 21:00:00 Macro Orgaic Passata 700g t 2800.00 12 2 130 1
  1242. 733 2022-05-27 00:00:00 Alberts Size J 20 pack f 1455 7.5 2 6 11
  1243. 734 2022-05-16 12:00:00 No Label Jumbo dozen eggs f 800.00 5.5 2 6 11
  1244. 735 2022-05-19 00:00:00 Buckwheat Hulled, 25 kg share bag t 25 118.27 1 123 6
  1245. 736 2022-04-11 00:00:00 Almonds, Transitional, 2.5 kg bag f 2.50 56.6600 1 62 6
  1246. 737 2022-04-11 00:00:00 Bulk Mung Beans Ceres 3.5 kg bag t 3.5 27.01 1 73 6
  1247. 738 2022-04-11 00:00:00 Wheat, whole, dressed 25 kg bag t 25.00 80.13 1 124 6
  1248. 739 2022-04-11 00:00:00 Ceres Bulk Cacao Powder 2.2kg t 2.2 41.80 1 144 6
  1249. 740 2022-04-11 00:00:00 Ceres Bulk Coconut Oil Organic 4.5L t 4.5 38.4 3 111 6
  1250. 741 2022-04-11 00:00:00 Licorice and Cinnamon Tea, Pukka 20 count box 40g NET t 40.00 15.5000 5 76 6
  1251. 743 2022-05-31 22:56:00 Fresh Ginger f 0.162 2.67 1 47 1
  1252. 744 2022-05-31 22:56:00 CD Beef Scotch Fillet Steak REDUCED f 0.675 15.49 1 145 1
  1253. 745 2022-05-31 22:56:00 CD Chicken Nibbles Med Reduced f 0.637 4.18 1 134 1
  1254. 748 2022-05-31 22:56:00 CD Still Spring Water 1.5L f 1.5 0.9 3 55 1
  1255. 749 2022-05-31 22:56:00 WW Peach SLices in Fruit Juice 410g f 1640.00 6 2 104 1
  1256. 750 2022-05-31 22:56:00 Essentials Coconut Cream 400 mL f 1200 4.2 4 15 1
  1257. 751 2022-05-31 22:56:00 Macro Orgaic Passata 700g t 700 3.00 2 130 1
  1258. 752 2022-05-31 22:56:00 Odd Bunch Avocados 1kg f 1 7 1 24 1
  1259. 753 2022-05-31 22:56:00 Sun Valley Brown Lentils 500g f 0.5 2.89 1 146 1
  1260. 754 2022-05-31 22:56:00 McKenzies Peas Split Green 500g f 0.5 1.99 1 147 1
  1261. 755 2022-05-31 22:56:00 Cerebos Coarse Salt 500g f 0.5 2.19 1 75 1
  1262. 756 2022-05-31 22:56:00 Rocket Prime NZ Beef Meatballs 490g REDUCED f 0.98 12.88 1 148 1
  1263. 757 2022-05-31 22:56:00 CD Beef Mince 1kg Reduced f 1 11.47 1 18 1
  1264. 758 2022-05-31 22:56:00 Raglan Coconut Yoghurt Vanilla 700g f 700.00 12.99 2 69 1
  1265. 759 2022-05-31 22:56:00 Mainland Cheese Vintage 500g f 500 12.20 2 21 1
  1266. 760 2022-05-31 22:56:00 Mexicano Corn Chips Natural 300g f 300 3 2 56 1
  1267. 761 2022-05-31 22:56:00 WW Crinkle Cut Chips Salted 150g f 150 1.5 2 149 1
  1268. 762 2022-06-22 00:00:00 NZ Snapper Heads f 1.802 8.24 1 30 9
  1269. 763 2022-06-22 01:00:00 1 kg Avocados Spray Free f 1 5 1 24 7
  1270. 768 2022-06-21 23:33:00 San Remo Pasta No5 Spaghetti 500g f 500.00 2 2 114 1
  1271. 769 2022-06-21 23:33:00 WW Tuna in Springwater 185g f 1480.00 16 2 57 1
  1272. 770 2022-06-21 23:33:00 Essentials Coconut Cream 400 mL f 1200 4.2 4 15 1
  1273. 771 2022-06-21 23:33:00 Doritos Corn Chips Original 170g f 340.00 4 2 128 1
  1274. 130 2021-11-15 19:44:00 Macro Organic White Washed Potatoes 1.5kg Reduced Price t 1.5 5.95 1 2 1
  1275. 233 2021-12-12 22:19:00 Organic Potato t 2 6.99 1 2 1
  1276. 284 2021-11-03 23:13:00 Macro Organic White Washed Potatoes 1.5 kg t 1.5 8.5 1 2 1
  1277. 391 2021-12-31 03:00:00 Organic Potato t 4 13.98 1 2 1
  1278. 505 2022-02-08 01:03:00 Potatoes Agria Brushed Loose f 1.492 5.95 1 2 1
  1279. 772 2022-06-21 23:33:00 WW Crinkle Cut Chips Ready 150g f 150 1.5 2 149 1
  1280. 773 2022-06-21 23:33:00 Orchard Gold Peaches & Blueberry 1kg f 1.00 10.5 1 150 1
  1281. 774 2022-06-21 23:33:00 McCain Peas Frozen 1kg f 1.00 3.5 1 34 1
  1282. 775 2022-06-21 23:33:00 Rocket Prime NZ Beef Patties 600g REDUCED f 600 7.15 2 151 1
  1283. 776 2022-06-21 23:33:00 WW Maple Syrup 250mL f 250 7.5 4 152 1
  1284. 778 2022-06-21 23:33:00 Countdown Free Range Sz 7 12pk f 744 6.9 2 6 1
  1285. 779 2022-06-16 00:54:00 ETA Ripples Ready Salted 150g f 300 2 2 149 2
  1286. 780 2022-06-16 00:54:00 Heyden Farms Free Range Sz8 10pk f 675 6.59 2 6 2
  1287. 783 2022-06-16 00:54:00 Pears Taylors Gold Reduced f 4 2.95 7 97 2
  1288. 785 2022-06-16 00:54:00 Gopala Natural Yoghurt Full Cream 750g f 750 3.05 2 153 2
  1289. 790 2022-06-09 23:27:00 WW Tuna in Springwater 185g f 1665.00 18 2 57 1
  1290. 791 2022-06-09 23:27:00 Naked Locals Soup Potato & Leek 500g f 500 5 2 154 1
  1291. 793 2022-06-09 23:27:00 Macro Organic Whole Egg Mayo 440g t 440.00 6.5000 2 105 1
  1292. 794 2022-06-09 23:27:00 Countdown Free Range Sz 7 12pk f 744 6.90 2 6 1
  1293. 795 2022-06-09 01:39:00 Ceres Organic Black Beans 400g t 800 3.33 2 110 2
  1294. 796 2022-06-09 01:39:00 Ceres Organic0 Chickpeas 400g t 800 3.33 2 110 2
  1295. 797 2022-06-09 01:39:00 Ceres Organic Kidney Beans 400g t 800 3.34 2 110 2
  1296. 798 2022-06-09 01:39:00 ETA Ripples Ready Salted 150g f 450 2.97 2 149 2
  1297. 799 2022-06-09 01:39:00 Karajoz Organic Coffee Beans 750g t 750 17 2 16 2
  1298. 800 2022-06-09 01:39:00 Mrs Rogers Premium Sea Salt Fine 1kg f 2 4.18 1 75 2
  1299. 801 2022-06-09 01:39:00 Pams Four Bean Mix in Brine 400g f 800 1.6 2 110 2
  1300. 806 2022-06-22 22:05:00 Beef Topside Roast Reduced f 1.228 15.95 1 155 1
  1301. 807 2022-06-22 22:05:00 WW Crinkle Cut Chips Ready 150g f 150 1.5 2 149 1
  1302. 808 2022-06-22 22:05:00 WW Brazil Nuts 150g f 150 6.5 2 88 1
  1303. 809 2022-06-22 22:05:00 CD Premium Beef Mince 500g Reduced f 0.5 10.79 1 18 1
  1304. 810 2022-07-07 23:06:00 Ceres Organics Soy Sauce Tamari 250mL t 250 6.59 4 156 2
  1305. 811 2022-07-07 23:06:00 ETA Ripples Ready Salted 150g f 750 4.95 2 149 2
  1306. 812 2022-07-07 23:06:00 Oreo Cookie Chocolate 133g f 133 1.59 2 157 2
  1307. 813 2022-07-07 23:06:00 Oreo Mini Multipack 230g f 460.00 5.00 2 157 2
  1308. 814 2022-07-07 23:06:00 T/Colledge Vanilla Exract 100 mL FairTrade f 100 9.59 4 28 2
  1309. 815 2022-07-07 23:06:00 Whittakers Block Cocoa Dark 72% 250g f 500 9 2 17 2
  1310. 817 2022-07-07 23:06:00 Fresh Ginger f 0.261 2.61 1 47 2
  1311. 818 2022-07-07 23:06:00 Kiwifruit Green NZ f 0.091 0.27 1 96 2
  1312. 821 2022-07-07 23:06:00 Killinchy Gold Vanilla 1L f 1 9.49 3 33 2
  1313. 822 2022-07-07 23:06:00 The Berry Fix Frozen Blueberries 1.8kg f 1.8 15.99 1 101 2
  1314. 823 2022-07-07 23:06:00 Lisas Hummus Gloriously Garlic 380g f 380 5.59 2 158 2
  1315. 824 2022-07-07 23:06:00 Valumetric Colby Cheese 1kg f 1.00 9.79 1 87 2
  1316. 826 2022-07-11 23:13:00 Pams Cornflour Maize 400g f 0.4 1.39 1 159 2
  1317. 827 2022-07-11 23:13:00 Whittakers Block Cocoa Dark 72% 250g f 250 4.5 2 17 2
  1318. 828 2022-07-11 23:13:00 Hoki Fillets Fresh f 0.598 10.16 1 7 2
  1319. 830 2022-07-11 23:13:00 Avocado. Large Loose f 4 5 7 24 2
  1320. 832 2022-07-11 23:13:00 BAPS plain 6pk f 6 2.69 7 160 2
  1321. 833 2022-06-03 00:00:00 Alberts Size J 20 pack f 1455.00 7.5000 2 6 11
  1322. 834 2022-07-12 00:00:00 King Bell Peppers, large SF f 3 5 7 25 7
  1323. 835 2022-06-20 00:00:00 Alberts Size J 20 pack f 1455.00 7.5000 2 6 11
  1324. 836 2022-07-01 00:00:00 Alberts Size J 20 pack f 1455.00 7.5000 2 6 11
  1325. 838 2022-07-08 00:00:00 Macro Orgaic Passata 700g t 3500.00 17.5 2 130 1
  1326. 839 2022-07-08 00:00:00 Essentials Coconut Cream 400 mL f 1600.00 5.6 4 15 1
  1327. 840 2022-07-08 00:00:00 Giannis Crispy Pizza Bases f 4 4.3 7 161 1
  1328. 841 2022-07-08 00:00:00 Clearly Premium Duo Nat & Gravlax 150g f 150 8 2 129 1
  1329. 842 2022-07-08 00:00:00 Chicken Mince 450g REDUCED f 1.35 14.52 1 81 1
  1330. 843 2022-07-08 00:00:00 WW Black Sliced Olives 430g f 430.00 3.2000 2 113 1
  1331. 844 2022-07-08 00:00:00 Doritos Corn Chips Original 170g f 510.00 5.49 2 128 1
  1332. 845 2022-07-08 00:00:00 Mexicano Corn Chips Natural 300g f 300 3 2 56 1
  1333. 846 2022-07-08 00:00:00 Macro Organic Tomatoes Diced NAS 400g t 800 3.60 2 41 1
  1334. 848 2022-07-08 00:00:00 Verkerks Wagyu Salami 100g f 100 9.49 2 162 1
  1335. 849 2022-07-08 00:00:00 Alpine Grated Mozzarella Cheese 550g f 0.55 9.9 1 163 1
  1336. 850 2022-07-18 23:20:00 Onions Brown Loose f 0.152 0.38 1 1 1
  1337. 851 2022-07-18 23:20:00 Organic Agria Potatoes 5kg t 5 13 1 2 1
  1338. 852 2022-07-18 23:20:00 Essentials Coconut Cream 400 mL f 1200 4.2 4 15 1
  1339. 853 2022-07-18 23:20:00 WW Dates Pitted 500g f 500 2.4 2 78 1
  1340. 856 2022-04-11 00:01:00 Oats, Jumbo Rolled t 1.3 6.45 1 164 6
  1341. 857 2022-06-08 00:00:00 Ground Cinnamon, Ceres split 1kg bag t 0.5 10.12 1 165 6
  1342. 858 2022-06-08 00:00:00 Demerara Sugar, Ceres 4kg t 4 17.56 1 166 6
  1343. 859 2022-06-08 00:00:00 Coconut Sugar, Ceres 3kg t 3 24.26 1 167 6
  1344. 861 2022-06-08 00:00:00 Bulk Red Lentils Ceres 3.5 kg bag t 3.50 25.49 1 72 6
  1345. 863 2022-06-08 00:00:00 Hemp Hearts split 3 kg bag t 1.5 33.2 1 66 6
  1346. 866 2022-07-18 21:56:00 Pure South Halal Beef Mince Prime 1kg f 3 39.68 1 18 19
  1347. 867 2022-07-19 00:06:00 Oreo Cookie Chocolate 133g f 266.00 1.98 2 157 2
  1348. 3 2021-06-17 04:41:00 Arnotts vita-weat cracked pepper f 250 3.5 2 3 1
  1349. 19 2021-06-22 23:31:00 Arnotts Vita-weat Cracked Pepper 250g f 1 10 1 3 1
  1350. 120 2021-07-14 22:30:00 Arnotts Vita-weat Cracked Pepper 250g f 500.00 5 2 3 1
  1351. 168 2021-11-29 20:45:00 Huntley & Palmers Rosemary Garlic Crackers f 200 3.40 2 3 1
  1352. 228 2021-12-12 22:19:00 Arnotts Vita-weat Cracked Pepper 250g f 250 3 2 3 1
  1353. 350 2021-10-22 00:02:00 Arnotts Vita-weat Cracked Pepper 250g f 250 3 2 3 1
  1354. 368 2021-10-28 02:33:00 Organic Potato t 2 6.99 1 2 1
  1355. 395 2021-12-31 03:00:00 Arnotts Vita-weat Cracked Pepper 250g f 250 3 2 3 1
  1356. 447 2022-01-31 23:40:00 Arnotts Vita-weat Cracked Pepper 250g f 500 6 2 3 1
  1357. 513 2022-02-08 01:03:00 Arnotts Vita-weat Cracked Pepper 250g f 250 3 2 3 1
  1358. 521 2022-02-15 01:54:00 Onions Brown Loose f 0.577 1.73 1 1 1
  1359. 530 2022-02-15 01:54:00 Organic Potato t 2 8 1 2 1
  1360. 615 2022-03-28 21:49:00 Arnotts Vita-weat Cracked Pepper 250g f 750 9 2 3 1
  1361. 653 2022-04-12 22:37:00 Arnotts Vita-weat Cracked Pepper 250g f 250 3.5 2 3 1
  1362. 868 2022-07-19 00:06:00 Whittakers Block Cocoa Dark 72% 250g f 250 4.5 2 17 2
  1363. 869 2022-07-19 00:06:00 Avocado Loose f 1 1.69 7 24 2
  1364. 873 2022-07-01 00:00:00 CD cheese mild 1 kg f 1.00 13.5 1 109 1
  1365. 874 2022-07-01 00:00:00 Mainland Cheese Organic 500g t 0.5 12.2 1 42 1
  1366. 876 2022-07-01 00:00:00 Garlic NZ f 0.1 5.3 1 49 1
  1367. 879 2022-07-01 00:00:00 CD Beef Mince 82% 1kg f 1 14.90 1 18 1
  1368. 882 2022-07-01 00:00:00 WW Tuna in Springwater 185g f 370.00 4 2 57 1
  1369. 883 2022-07-01 00:00:00 WW Crinkle Cut Chips Sour cream 150g f 150 1.5 2 149 1
  1370. 884 2022-07-01 00:00:00 Whittakers Block Cocoa Dark 72% 250g f 250 5.50 2 17 1
  1371. 885 2022-07-01 00:00:00 Mexicano Corn Chips Natural 300g f 300 3.8 2 56 1
  1372. 886 2022-07-15 04:36:00 Fill Your Own Honey f 4.3 40 1 77 16
  1373. 890 2022-08-04 22:14:00 Small Bell Peppers f 5 5 7 25 7
  1374. 891 2022-08-04 22:14:00 Avocado Small f 0.547 5 1 24 7
  1375. 892 2022-08-04 22:14:00 Local Spray Free Parsnips f 0.48 3 1 40 7
  1376. 894 2022-08-04 22:14:00 Fowler's Free Range Eggs Sz 7 12pk f 0.744 9 1 6 7
  1377. 896 2022-08-09 22:45:00 Fresh Ginger f 0.157 2.59 1 47 1
  1378. 900 2022-08-09 22:45:00 Essentials Coconut Cream 400 mL f 800 2.8 4 15 1
  1379. 901 2022-08-09 22:45:00 WW Black Sliced Olives 430g f 430.00 3.2000 2 113 1
  1380. 902 2022-08-09 22:45:00 Mainland Cheese Vintage 500g f 0.5 13 1 21 1
  1381. 904 2022-08-09 22:45:00 Freshpak Rooibos Tea 40ea 100g f 100 5 2 136 1
  1382. 905 2022-08-09 22:45:00 CD Premium Beef Mince 88% 1kg Reduced f 1 14.43 1 18 1
  1383. 907 2022-07-25 03:40:00 CD Chicken Cutlets Small f 0.55 6.24 1 54 1
  1384. 909 2022-07-25 03:40:00 Cabbage Red Whole Big f 1 7 7 60 1
  1385. 910 2022-07-25 03:40:00 WW Tuna in Springwater 185g f 740.00 8 2 57 1
  1386. 912 2022-07-25 03:40:00 Essentials Coconut Cream 400 mL f 400 1.4 4 15 1
  1387. 913 2022-07-25 03:40:00 WW Tomatoes Diced Italian 800g f 1.60 4 1 41 1
  1388. 914 2022-08-11 22:17:00 Karajoz Organic Coffee Beans 750g t 0.75 18 1 16 2
  1389. 915 2022-08-11 22:17:00 Mrs Rogers Premium Sea Salt Fine 1kg f 2 4.98 1 75 2
  1390. 916 2022-08-11 22:17:00 Oreo Cookie Chocolate 133g f 133 0.99 2 157 2
  1391. 917 2022-08-11 22:17:00 Pam's Dark Chocolate Chips 400g f 0.4 2.99 1 19 2
  1392. 918 2022-08-11 22:17:00 Pam's Dark Chocolate Drops 400g f 0.4 2.99 1 19 2
  1393. 919 2022-08-11 22:17:00 T/Colledge Vanilla Exract 100 mL FairTrade f 100 9.59 4 28 2
  1394. 920 2022-08-11 22:17:00 Value Tomatoes Chopped in Juice 400g f 1.60 2.76 1 41 2
  1395. 921 2022-08-11 22:17:00 Whittakers Block Cocoa Dark 72% 250g f 250 4.5 2 17 2
  1396. 922 2022-08-11 22:17:00 NZ Snapper Heads f 0.924 6.46 1 30 2
  1397. 923 2022-08-11 22:17:00 Beetroot Conventional f 0.311 1.52 1 32 2
  1398. 928 2022-08-11 22:17:00 The Berry Fix Frozen Blueberries 1.8kg f 1.8 15.99 1 101 2
  1399. 929 2022-08-11 22:17:00 Raglan Coconut Yoghurt Vanilla 700mL f 700.00 8.99 4 69 2
  1400. 930 2022-08-04 23:12:00 Fresh Ginger f 0.232 3.83 1 47 1
  1401. 933 2022-08-04 23:12:00 Cabbage Green Whole f 1 4.5 7 60 1
  1402. 934 2022-08-04 23:12:00 WW Dates Pitted 500g f 500 2.4 2 78 1
  1403. 935 2022-08-04 23:12:00 WW Tomatoes Diced Italian 800g f 0.8 2 1 41 1
  1404. 936 2022-08-04 23:12:00 Essentials Coconut Cream 400 mL f 400 1.4 4 15 1
  1405. 937 2022-08-04 23:12:00 Mainland Cheese Vintage 250g f 0.25 7.5 1 21 1
  1406. 938 2022-08-04 23:12:00 Doritos Corn Chips Original 170g f 340.00 3.8 2 128 1
  1407. 939 2022-08-04 23:12:00 Pukka Tea Three Ginger 20ea t 20 8 5 76 1
  1408. 941 2022-07-08 00:00:00 Albert's Eggs Size J 20pk f 1.455 7.5 1 173 11
  1409. 942 2022-07-17 00:00:00 Albert's Eggs Size J 20pk f 1455 7.5000 2 173 11
  1410. 943 2022-07-18 00:00:00 Albert's Eggs Size J 20pk f 1455 7.5000 2 173 11
  1411. 944 2022-08-02 00:00:00 Albert's Eggs Size J 20pk f 1455 7.5000 2 173 11
  1412. 946 2022-08-12 00:00:00 Albert's Eggs Size J 20pk f 1455 7.9 2 173 11
  1413. 1430 2023-03-25 23:00:00 Albert's Eggs 12 Pack weighed f 0.87 8.5000 1 173 11
  1414. 528 2022-02-15 01:54:00 Arnotts Vita-weat Cracked Pepper 250g f 500 6 2 3 1
  1415. 562 2022-03-07 21:29:00 Macro Org Brushed Potato 1 kg t 1 4.5 1 2 1
  1416. 573 2022-03-07 21:11:00 Onions Brown Loose f 0.971 1.93 1 1 2
  1417. 579 2022-03-15 00:29:00 Onions Brown Loose f 0.177 0.53 1 1 1
  1418. 603 2022-03-22 21:45:00 Arnotts Vita-weat Crackers Regular 250g f 250 3 2 3 1
  1419. 667 2022-04-20 01:03:00 Onions Brown Loose f 0.297 0.89 1 1 1
  1420. 708 2022-05-10 22:22:00 Onions Brown Loose f 0.301 0.6 1 1 2
  1421. 713 2022-05-18 02:05:00 Arnotts Vita-weat Cracked Pepper 250g f 1000 10 2 3 1
  1422. 947 2022-08-07 00:00:00 Sultanas, Bulk 2.5 kg bag t 2.5 23.25 1 65 6
  1423. 948 2022-08-07 00:00:00 Chocolate Chips, SHARE 10 kg bag t 1 27.91 1 19 6
  1424. 949 2022-08-07 00:00:00 Coconut Sugar, Ceres 3kg t 3.00 24.2600 1 167 6
  1425. 950 2022-08-07 00:00:00 Rye flour, share 25 kg bag t 15 61.11 1 108 6
  1426. 951 2022-08-07 00:00:00 Nutritional Yeast, 1 kg bag t 1.00 48.64 1 64 6
  1427. 953 2022-09-15 22:30:00 Avocado. Large Loose f 1 1.9 7 24 1
  1428. 955 2022-09-15 22:30:00 Garlic NZ f 0.05 2 1 49 1
  1429. 960 2022-09-15 22:30:00 Essentials Baking Soda 500g f 500.00 2.3 2 143 1
  1430. 961 2022-09-15 22:30:00 Essentials Coconut Cream 400 mL f 400 1.5 4 15 1
  1431. 962 2022-09-15 22:30:00 Doritos Corn Chips Original 170g f 170 2 2 128 1
  1432. 963 2022-09-15 22:30:00 Whittakers Block Cocoa Dark 72% 250g f 750.00 12.6 2 17 1
  1433. 964 2022-09-15 22:30:00 WW Olives Green Whole 450g f 450 3 2 113 1
  1434. 965 2022-09-15 22:30:00 Exotic Food Red Curry Paste 220g f 220 4.5 2 45 1
  1435. 967 2022-09-01 22:36:00 Kumara Romanua t 0.26 2.6 1 10 21
  1436. 968 2022-09-01 22:36:00 Kumara Beauregard t 0.38 3.8 1 10 21
  1437. 969 2022-09-01 22:36:00 Chickpeas Bulk Bin Organic t 0.755 7.54 1 176 21
  1438. 970 2022-09-01 23:18:00 Mrs Rogers Himalayan Fine Salt 1kg f 1 4.39 1 75 2
  1439. 971 2022-09-01 23:18:00 T/Colledge Vanilla Exract 100 mL FairTrade f 100 9.59 4 28 2
  1440. 972 2022-09-01 23:18:00 Apples Royal Gala f 1.236 4.93 1 9 2
  1441. 973 2022-09-01 23:18:00 Avocado. Large Loose f 1 1.49 7 24 2
  1442. 974 2022-09-01 23:18:00 Bananas Conventional f 0.676 1.95 1 4 2
  1443. 975 2022-09-01 23:18:00 Beetroot Conventional f 0.326 1.59 1 32 2
  1444. 976 2022-09-01 23:18:00 Cabbage Red Whole f 1 7.99 7 60 2
  1445. 978 2022-09-01 23:18:00 Kiwifruit Green NZ f 0.801 1.59 1 96 2
  1446. 980 2022-09-01 23:18:00 Onions Brown Loose f 0.766 1.37 1 1 2
  1447. 982 2022-09-01 23:18:00 Whittakers Block Cocoa Dark 72% 250g f 750 13.5 2 17 2
  1448. 985 2022-08-31 23:36:00 Apples Braeburn f 0.212 0.74 1 9 1
  1449. 986 2022-08-31 23:36:00 Macro Free Range Chicken Thigh Cutlet f 0.523 10.46 1 58 1
  1450. 987 2022-08-31 23:36:00 Macro Orgaic Passata 700g t 700 3.5 2 130 1
  1451. 989 2022-08-31 23:36:00 Essentials Coconut Cream 400 mL f 1600 5.6 4 15 1
  1452. 991 2022-08-31 23:36:00 Arnotts Vita-weat Cracked Pepper 250g f 250 3.3 2 3 1
  1453. 992 2022-08-31 23:36:00 CD Beef Mince 500g Reduced f 1.5 15.6 1 18 1
  1454. 993 2022-08-31 23:36:00 Lisas Hummus Plain 380g f 380.00 5.9 2 158 1
  1455. 994 2022-08-31 23:36:00 CD Premium Beef Stir Fry reduced f 0.5 9.23 1 121 1
  1456. 995 2022-08-31 23:36:00 Macro Free Range Chicken Mince Reduced f 450.00 6.4 2 80 1
  1457. 996 2022-08-31 23:36:00 Doritos Corn Chips Original 170g f 340.00 4 2 128 1
  1458. 997 2022-09-22 23:35:00 OSM bars chocolate 6 pieces 507g NET f 6 14.6 7 67 1
  1459. 998 2022-09-24 23:03:00 Mandarins Afourer f 0.447 2.15 1 93 1
  1460. 1451 2023-04-19 00:00:00 CD Edam Cheese block 500g f 0.5 5 1 224 1
  1461. 1452 2023-04-19 00:00:00 Cabbage Red Small Medium Whole f 0.968 6.99 1 60 1
  1462. 999 2022-09-24 23:03:00 Essentials Coconut Cream 400 mL f 2000.00 7.5 4 15 1
  1463. 1000 2022-09-24 23:03:00 WW Black Sliced Olives 430g f 430 3.2 2 113 1
  1464. 1001 2022-09-24 23:03:00 WW White Sugar 1.5kg f 1.5 1.5 1 23 1
  1465. 1002 2022-09-24 23:03:00 WW Thin Rice Cracker Salt&Ving 100g f 100 1.2 2 3 1
  1466. 1005 2022-09-22 21:12:00 Ceres Org Passata Basil 680g t 1360.00 5 2 130 2
  1467. 1006 2022-09-22 21:12:00 Value Tomatoes Whole 400g f 4.80 8.28 1 41 2
  1468. 1008 2022-09-22 21:12:00 Avocado. Large Loose f 3 2 7 24 2
  1469. 1010 2022-09-22 21:12:00 Cabbage Green Medium f 1 4.99 7 60 2
  1470. 1012 2022-09-22 21:12:00 Mandarins Loose NZ f 0.166 0.83 1 93 2
  1471. 1013 2022-09-22 21:12:00 Mandarins Loose NZ f 0.076 0.38 1 93 2
  1472. 1017 2022-08-26 00:00:00 CD Chicken Frames by Weight f 1.495 6.72 1 103 1
  1473. 1018 2022-08-26 00:00:00 Essentials Coconut Cream 400 mL f 400 1.4 4 15 1
  1474. 1019 2022-08-26 00:00:00 WW Dates Pitted 500g f 500 2.4 2 78 1
  1475. 1021 2022-08-26 00:00:00 WW Tomatoes Diced Italian 400g f 400 1.200 2 41 1
  1476. 1022 2022-08-26 00:00:00 Macro Organic Tomatoes Diced NAS 400g t 400 1.8 2 41 1
  1477. 1023 2022-08-26 00:00:00 Whittakers Block Cocoa Dark 72% 250g f 250 5 2 17 1
  1478. 1024 2022-08-26 00:00:00 OSM bars chocolate 6 pieces 480g NET f 6 14.6 7 67 1
  1479. 1025 2022-08-26 00:00:00 Freshpak Rooibos Tea 40ea 100g f 100.00 5 2 136 1
  1480. 1028 2022-09-03 00:00:00 Organic Beef Mince Lean 400g t 0.4 12 1 18 8
  1481. 1029 2022-10-23 04:34:00 Mandarins Afourer f 0.712 3.56 1 93 1
  1482. 1030 2022-10-23 04:34:00 Orange Navel Loose f 0.937 4.5 1 117 1
  1483. 1034 2022-10-21 06:04:00 Fresh Ginger f 0.292 3.79 1 47 1
  1484. 1035 2022-10-21 06:04:00 Mandarins Afourer f 1.2232 6.16 1 93 1
  1485. 1040 2022-10-27 00:20:00 Mandarins Afourer f 1.097 5.49 1 93 1
  1486. 1041 2022-10-27 00:20:00 Kumara Orange f 0.902 1.8 1 10 1
  1487. 1042 2022-10-27 00:20:00 Countdown Free Range Sz 6 6pk Short Date Sale f 954.00 7.86 2 6 1
  1488. 1043 2022-10-27 00:20:00 Tararua Salted Butter 500g f 0.5 5 1 12 1
  1489. 1453 2023-04-19 00:00:00 Onions Brown Loose f 0.58 2.03 1 1 1
  1490. 1454 2023-04-19 00:00:00 Essentials Baking Soda 500g f 500.00 2.99 2 143 1
  1491. 1455 2023-04-19 00:00:00 Huntley & Palmers Rosemary Garlic Crackers f 200 3 2 3 1
  1492. 4 2021-06-17 04:41:00 Short date bananas on special f 2 3 6 4 1
  1493. 58 2021-08-05 05:33:00 Bananas Conventional f 1.131 3.04 1 4 2
  1494. 88 2021-08-12 01:33:00 Quick Sale Bananas Freetrade f 2 3 1 4 1
  1495. 99 2021-08-19 01:08:00 Bananas Cavendish f 0.922 2.58 1 4 1
  1496. 135 2021-11-15 19:44:00 Banana Fairtrade Organic 850g t 850 4.5 2 4 1
  1497. 146 2021-11-23 00:42:00 Bananas Cavendish f 1.207 3.62 1 4 1
  1498. 161 2021-11-29 20:45:00 Bananas Cavendish f 0.742 2.23 1 4 1
  1499. 206 2021-12-04 23:11:00 Bananas Conventional f 0.671 1.54 1 4 2
  1500. 219 2021-12-12 22:19:00 Bananas Cavendish f 1.182 3.55 1 4 1
  1501. 259 2021-12-20 23:18:00 Bananas Conventional f 1.826 4.91 1 4 2
  1502. 290 2021-11-09 01:09:00 Bananas Cavendish f 0.902 2.71 1 4 1
  1503. 297 2021-11-11 01:02:00 Bananas Conventional f 1.92 3.83 1 4 2
  1504. 307 2021-12-27 03:50:00 Bananas Cavendish f 1.121 2.57 1 4 2
  1505. 332 2022-01-11 02:54:00 Bananas Conventional f 0.831 2.24 1 4 2
  1506. 349 2021-10-22 00:02:00 Bananas Cavendish f 1.232 3.45 1 4 1
  1507. 376 2021-10-31 01:06:00 Bananas Conventional f 1.226 2.44 1 4 2
  1508. 381 2021-12-31 03:00:00 Bananas Conventional f 2 5.60 1 4 1
  1509. 407 2022-01-17 20:17:00 Bananas Cavendish f 1.137 3.41 1 4 1
  1510. 435 2022-01-24 21:21:00 Bananas Cavendish f 0.717 2.15 1 4 1
  1511. 472 2022-01-31 23:07:00 Bananas Conventional f 1.391 2.77 1 4 2
  1512. 507 2022-02-08 01:03:00 Bananas Cavendish f 1.212 4 1 4 1
  1513. 522 2022-02-15 01:54:00 Bananas Cavendish f 0.912 3.01 1 4 1
  1514. 550 2022-02-28 22:11:00 Bananas Cavendish f 1.777 5.86 1 4 1
  1515. 568 2022-03-07 21:11:00 Bananas Conventional f 0.876 2.53 1 4 2
  1516. 569 2022-03-07 21:11:00 Bananas Conventional f 0.206 0.6 1 4 2
  1517. 643 2022-04-12 22:37:00 Bananas Cavendish f 0.312 1.03 1 4 1
  1518. 675 2022-04-23 21:47:00 Bananas Conventional f 0.826 2.39 1 4 2
  1519. 687 2022-05-10 22:53:00 Arnotts Vita-weat Cracked Pepper 250g f 250 3.5 2 3 1
  1520. 712 2022-05-18 02:05:00 Bananas Cavendish f 0.932 3.08 1 4 1
  1521. 765 2022-06-21 23:33:00 Onions Brown Loose f 0.392 1.17 1 1 1
  1522. 767 2022-06-21 23:33:00 Organic Agria Potatoes 5kg t 5 13 1 2 1
  1523. 789 2022-06-09 23:27:00 Organic Potato 2kg Reduced t 2 5.2 1 2 1
  1524. 804 2022-06-09 01:39:00 Onions Brown Loose f 0.131 0.26 1 1 2
  1525. 805 2022-06-09 01:39:00 Potatoes Agria Brushed Loose f 0.431 1.07 1 2 2
  1526. 1045 2022-10-27 00:20:00 Duck Island Coconut Carmel Vegan 472mL f 472 5 4 33 1
  1527. 1047 2022-10-27 00:20:00 Ceres Org Seaweed Multipack 8x2g t 16 6.5 2 131 1
  1528. 1050 2022-09-27 21:17:00 Macro FR Chciken Thigh Cutlet f 0.604 7.13 1 58 1
  1529. 1051 2022-09-27 21:17:00 Fresh Ginger f 0.032 0.5 1 47 1
  1530. 1055 2022-09-27 21:17:00 Doritos Corn Chips Original 170g f 510.00 5.49 2 128 1
  1531. 1056 2022-09-27 21:17:00 Sigol Seaweed Snack Olive Oil 4g 3pk f 12 2.2 2 131 1
  1532. 1057 2022-09-27 21:17:00 CD Premium Beef Mince REDUCED f 0.5 9.62 1 18 1
  1533. 1058 2022-09-27 21:17:00 CD Prime Beef Mince 1kg REDUCED f 2 28.08 1 18 1
  1534. 1061 2022-10-27 21:29:00 Whittakers Block Cocoa Dark 72% 250g f 250 4.75 2 17 2
  1535. 1063 2022-10-27 21:29:00 Avocado. Large Loose f 3 2.07 7 24 2
  1536. 1064 2022-10-27 21:29:00 Capsicum Loose f 3 5.00 7 25 2
  1537. 1065 2022-10-27 21:29:00 Cucumber Telegraph f 2 3.58 7 46 2
  1538. 1067 2022-10-27 21:29:00 Fruzio Mixed Berries 1 kg f 1.00 10.79 1 150 2
  1539. 1072 2022-10-30 22:22:00 Macro FR Chciken Thigh Fillet f 0.639 12.96 1 58 1
  1540. 1073 2022-10-30 22:22:00 CD Chicken Cutlet f 0.986 13.8 1 54 1
  1541. 1409 2023-03-30 23:45:00 Albert's Eggs 12 Pack weighed f 0.873 8.5 1 173 11
  1542. 5 2021-06-17 04:41:00 Ceres Organics tomato paste t 1140 16.20 2 5 1
  1543. 15 2021-06-22 23:31:00 CD Eggs Sz7 6 pk Special x 2 f 744 5.3 2 6 1
  1544. 1410 2023-03-30 23:45:00 Jack Links Jerky Original Beef 25g f 25 3.9 2 186 11
  1545. 24 2021-06-30 08:41:00 Otaika Valley Size 7 12 pack f 744 7 2 6 1
  1546. 26 2021-06-30 23:20:00 Ceres Organic Tomato Paste 190g f 1140 14.94 2 5 2
  1547. 51 2021-08-05 05:33:00 Coulston Hill Eggs Free Range Mixed 12pk x2 f 1164 10.98 2 6 2
  1548. 248 2021-12-19 03:20:00 Bananas Conventional f 0.626 1.87 1 4 13
  1549. 291 2021-11-11 01:02:00 Ceres Organic Tomato Paste 190g t 760.00 9.96 2 5 2
  1550. 462 2022-01-31 23:07:00 Ceres Organic Tomato Paste 190g t 570.00 7.47 2 5 2
  1551. 497 2022-02-22 00:00:00 Bananas Conventional f 1.696 4.9 1 4 2
  1552. 498 2022-02-22 00:00:00 Bananas Conventional f 0.176 0.51 1 4 2
  1553. 578 2022-03-15 00:29:00 Bananas Cavendish f 0.777 2.56 1 4 1
  1554. 626 2022-03-28 22:16:00 Bananas Conventional f 0.765 1.9 1 4 18
  1555. 658 2022-04-17 23:25:00 Bananas Cavendish f 1.152 2.29 1 4 1
  1556. 702 2022-05-10 22:22:00 Bananas Conventional f 1.286 3.72 1 4 2
  1557. 703 2022-05-10 22:22:00 Bananas Conventional f 0.276 0.8 1 4 2
  1558. 723 2022-05-24 21:00:00 Bananas Conventional f 1.2 3.96 1 4 1
  1559. 742 2022-05-31 22:56:00 Onions Brown Loose f 0.397 1.19 1 1 1
  1560. 746 2022-05-31 22:56:00 Bananas Cavendish f 2.677 9.37 1 4 1
  1561. 764 2022-06-21 23:33:00 Bananas Cavendish f 1.272 4.2 1 4 1
  1562. 782 2022-06-16 00:54:00 Bananas Conventional f 0.781 2.26 1 4 2
  1563. 784 2022-06-16 00:54:00 Potatoes White Washed f 1.206 3.36 1 2 2
  1564. 803 2022-06-09 01:39:00 Bananas Conventional f 1.521 4.4 1 4 2
  1565. 1039 2022-10-27 00:20:00 Bananas Cavendish f 0.842 3.24 1 4 1
  1566. 1074 2022-10-30 22:22:00 OSM bars chocolate 6 pieces 480g NET f 6 15.40 7 67 1
  1567. 1076 2022-10-30 22:22:00 CD Prime Beef Mince 1kg f 1 15.41 1 18 1
  1568. 1077 2022-08-29 00:00:00 Albert's Eggs Size J 20pk f 1460 7.9 2 173 11
  1569. 1078 2022-09-07 00:00:00 Albert's Eggs Size J 20pk f 1460 7.9 2 173 11
  1570. 1079 2022-09-12 00:00:00 Albert's Eggs Size J 20pk f 1460 8.5 2 173 11
  1571. 1080 2022-09-20 00:00:00 Albert's Eggs Size J 20pk f 1460 8.5 2 173 11
  1572. 1081 2022-08-19 00:00:00 The Good Oil Sunflower Oil 1L f 1 10 3 187 22
  1573. 1082 2022-11-07 23:00:00 Albert's Eggs Size J 20pk 1430g f 1430 9.5 2 173 11
  1574. 1084 2022-11-06 20:52:00 FOS Olives Pitted Green 30g f 120.00 1.96 2 183 23
  1575. 1085 2022-11-06 20:52:00 FOS Olives Pitted Kalamata Thyme 30g f 120.00 1.96 2 183 23
  1576. 1086 2022-11-06 20:52:00 Tasti Fruit Bars Banana 140g f 280 4 2 188 23
  1577. 1087 2022-11-06 20:52:00 Olly Garlic and Basil Olives 50g f 100 1.78 2 183 23
  1578. 1088 2022-11-06 20:52:00 Green and Black Smooth Dark Mint 90g f 90 2 2 189 23
  1579. 1089 2022-11-06 20:52:00 Tasti Mango Carrot Balls 180g f 1620.00 25.11 2 182 23
  1580. 1091 2022-11-06 20:52:00 Tasti Fruit Balls Banana Spinach 180g f 180 2.79 2 182 23
  1581. 1092 2022-11-06 20:52:00 Key Dairy Organic Whole Milk Powder 900g t 900 10 2 190 23
  1582. 1093 2022-11-06 20:52:00 Arnes Puree Tomatoes 390g f 1170.00 2.97 2 41 23
  1583. 1097 2022-11-13 06:22:00 CD Butter Salted 500g f 500 4.9 2 12 1
  1584. 1098 2022-11-13 06:22:00 Essentials Butter Salted 500g f 500 4.9 2 12 1
  1585. 1099 2022-11-13 06:22:00 Mainland Cheese Vintage 250g f 250 8.5 2 21 1
  1586. 1101 2022-11-06 22:50:00 ETA Ripples Ready Salted 150g f 150 1.5 2 149 2
  1587. 1102 2022-11-06 22:50:00 Kiwi Blue Water 1.5L 4pk f 6.00 3.30 3 55 2
  1588. 1103 2022-11-06 22:50:00 OSM bars chocolate 6 pieces 507g NET f 507.00 15.49 2 67 2
  1589. 1104 2022-11-06 22:50:00 Pams Peach Slices in Juice 820g f 2460.00 9.69 2 104 2
  1590. 1106 2022-11-06 22:50:00 Value Tomatoes Chopped in Juice 400g f 9600.00 16.56 2 41 2
  1591. 1107 2022-11-06 22:50:00 Value Tomatoes Chopped in Juice 400g f 4800.00 8.28 2 41 2
  1592. 1108 2022-11-06 22:50:00 Whittakers Block Cocoa Dark 72% 250g f 500 9.5 2 17 2
  1593. 1110 2022-11-06 22:50:00 NZ Snapper Heads f 0.912 6.37 1 30 2
  1594. 1112 2022-11-06 22:50:00 Avocado. Large Loose f 5 3.95 7 24 2
  1595. 1114 2022-11-06 22:50:00 Cabbage Green Whole f 1 7.99 7 60 2
  1596. 1116 2022-11-06 22:50:00 Cucumber Telegraph f 2 3.58 7 46 2
  1597. 42 2021-07-27 04:29:00 Heyden Farms Free Range Sz 7 18 pk f 1.116 10 1 6 1
  1598. 45 2021-07-27 04:29:00 Countdown Free Range Sz 6 6pk Short Date Sale x 2 f 636 5.84 2 6 1
  1599. 87 2021-08-12 01:33:00 CD Free Range Eggs Size 8 6pk Reduced Price f 1632 10.84 2 6 1
  1600. 89 2021-08-19 01:56:00 Heyden Farms FR Organic Eggs Mixed Grade 10pk t 485 8.99 2 6 2
  1601. 102 2021-08-19 01:08:00 Woodlands Free Range Size 6 10 pk f 530 4.90 2 6 1
  1602. 107 2021-07-19 21:35:00 Countdown Free Range Sz 7 6pk Reduced f 372 2.10 2 6 1
  1603. 108 2021-07-19 21:35:00 Big Paddock Free Range Eggs Mixed 10pk f 485 5 2 6 1
  1604. 112 2021-08-27 05:14:00 Countdown Free Range Sz 7 6pk f 372.00 4.2 2 6 1
  1605. 116 2021-07-14 22:30:00 Otaika Valley Size 7 12 pack Reduced f 1488.00 13.60 2 6 1
  1606. 131 2021-11-15 19:44:00 Woodland Free Range Eggs Sz6 18pk f 954 8.5 2 6 1
  1607. 152 2021-11-23 00:42:00 Countdown Free Range Eggs, Mixed 20 pk f 970 9.50 2 6 1
  1608. 154 2021-11-23 00:42:00 Countdown Free Range Sz 7 12pk f 744 6.9 2 6 1
  1609. 250 2021-12-20 23:18:00 Otaika Valley Size 7 12 pack f 2976.00 27.96 2 6 2
  1610. 285 2021-11-03 23:13:00 Woodland Free Range Eggs Sz6 18pk f 954.00 8.50 2 6 1
  1611. 292 2021-11-11 01:02:00 Otaika Valley Size 7 12 pack f 744 6.99 2 6 2
  1612. 293 2021-11-11 01:02:00 Otaika Valley Sz 8 10pk 675g f 1350.00 12.58 2 6 2
  1613. 816 2022-07-07 23:06:00 Bananas Conventional f 1.051 3.04 1 4 2
  1614. 820 2022-07-07 23:06:00 Onions Brown Loose f 0.271 0.51 1 1 2
  1615. 837 2022-07-08 00:00:00 Potatoes White Washed f 1.107 3.31 1 2 1
  1616. 865 2022-07-29 05:28:00 Bananas Cavendish f 0.837 2.85 1 4 1
  1617. 870 2022-07-19 00:06:00 Bananas Conventional f 1.071 3.1 1 4 2
  1618. 872 2022-07-19 00:06:00 Onions Brown Loose f 0.251 0.5 1 1 2
  1619. 888 2022-08-04 22:14:00 Bananas Dole f 1.14 3 1 4 7
  1620. 889 2022-08-04 22:14:00 Local Spray Free Potatoes f 1.5 5 1 2 7
  1621. 895 2022-08-04 22:14:00 Local Spray Free Onions f 0.386 2 1 1 7
  1622. 1117 2022-11-06 22:50:00 Garlic NZ f 0.137 3.15 1 49 2
  1623. 1118 2022-11-06 22:50:00 Fresh Ginger f 0.201 1.61 1 47 2
  1624. 1120 2022-11-06 22:50:00 Mandarins Loose NZ f 2.316 12.71 1 93 2
  1625. 1123 2022-11-06 22:50:00 The Berry Fix Frozen Blueberries 1.8kg f 1.8 15.99 1 101 2
  1626. 1124 2022-11-22 21:40:00 Paprika Bulk Bin f 0.025 0.75 1 142 4
  1627. 1127 2022-11-22 21:40:00 Organic Tumeric t 300 9.99 2 139 4
  1628. 1129 2022-11-20 03:43:00 Ceres Vegan Garlic Aoli 235g t 0.235 2 1 105 23
  1629. 1130 2022-11-20 03:43:00 Ceres Organic Mayo Vegan 235g t 0.235 2 1 105 23
  1630. 1131 2022-11-20 03:43:00 Tasti Fruit Balls Banana Spinach 180g f 0.180 2.79 1 182 23
  1631. 1132 2022-11-20 03:43:00 Barnicoat Frozen Strawberries 1kg f 1 7.99 1 102 23
  1632. 1431 2023-04-02 04:29:00 Fresh Ginger f 0.127 2.09 1 47 1
  1633. 1133 2022-11-20 03:43:00 SM Blueberries 1 kg f 1 9.99 1 101 23
  1634. 1139 2022-11-14 23:00:00 Albert's Eggs Size J 20pk 1430g f 1.43 9.5000 1 173 11
  1635. 1140 2022-11-20 23:00:00 Albert's Eggs Size J 20pk 1430g f 1430 9.5 2 173 11
  1636. 1141 2022-11-04 23:00:00 Loose Mandarins f 1 4.89 1 93 25
  1637. 1142 2022-10-25 23:00:00 Albert's Eggs Size J 20pk 1430g f 1430 9.5 2 173 11
  1638. 1143 2022-11-27 23:00:00 Albert's Eggs Size J 20pk 1430g f 1430 9.5 2 173 11
  1639. 1147 2022-11-20 21:15:00 Fresh Ginger f 0.067 0.87 1 47 1
  1640. 1148 2022-11-20 21:15:00 Kumara Orange f 0.807 1.78 1 10 1
  1641. 1149 2022-11-20 21:15:00 Bananas Cavendish f 1.227 4.85 1 4 1
  1642. 1150 2022-11-20 21:15:00 Kumara Orange f 0.947 2.08 1 10 1
  1643. 1151 2022-11-20 21:15:00 MV Beef Sausages 9s 580g f 0.58 7 1 116 1
  1644. 1153 2022-11-20 21:15:00 Angus Beef Mince 350g f 1.05 19.77 1 18 1
  1645. 1154 2022-11-20 21:15:00 CD Butter salted 500g f 0.5 5.4 1 12 1
  1646. 1155 2022-11-20 21:15:00 Mckenzies Soup Red Lentils 375g f 0.375 2.7 1 72 1
  1647. 1157 2022-11-20 21:15:00 Essentials Coconut Cream 400 mL f 2000.00 7.50 4 15 1
  1648. 1161 2022-11-20 21:15:00 ETA Ripples Ready Salted 150g f 450.00 4.98 2 149 1
  1649. 1163 2022-11-20 21:15:00 Cucumber Telegraph f 1 2.2 7 46 1
  1650. 1164 2022-11-20 21:15:00 Capsicum Odd Bunch 750g f 750 5 2 25 1
  1651. 1165 2022-12-05 23:00:00 Albert's Eggs Size J 20pk 1430g f 1430 9.5000 2 173 11
  1652. 1166 2022-11-29 20:30:00 Mainland Cheese Vintage 500g f 500 14 2 21 1
  1653. 1432 2023-04-02 04:29:00 Mrs. Higgins Cookie Chnky Choc Chip 100g f 100 2.3 2 222 1
  1654. 1433 2023-04-02 04:29:00 Kapiti Boysenberry 4pk x 105mL f 420 7.5 4 33 1
  1655. 1434 2023-04-02 04:29:00 CD Still Spring Water 1.5L f 1.5 1.1 3 55 1
  1656. 1435 2023-04-02 04:29:00 Alpine Cheese Tasty 1 kg f 1 17.9 1 35 1
  1657. 1436 2023-04-02 04:29:00 Tasti Fruit Balls Apple 207g f 207 5.5 2 182 1
  1658. 1437 2023-04-02 04:29:00 Ceres Salt & Vinegar Multipack 8x2g t 16 5.5 2 131 1
  1659. 1438 2023-04-02 04:29:00 Cucumber Telegraph f 2 4 7 46 1
  1660. 1439 2023-04-02 04:29:00 Wahiki Coconut Boysenberry 480mL f 480 9.5 4 33 1
  1661. 1440 2023-04-02 04:29:00 Mainland Cheese Vintage 250g f 250 8.5 2 21 1
  1662. 1441 2023-04-02 04:29:00 Capsicum Loose f 1 2.49 7 25 1
  1663. 1442 2023-04-02 04:29:00 Verkerks Wagyu Salami 100g f 100.00 9.99 2 162 1
  1664. 1443 2023-04-02 04:29:00 Hansells Mandarin Lime&Bitters 750mL f 750 6.5 4 135 1
  1665. 1444 2023-04-02 04:29:00 Hansells LemonRasbery & Elderberry 750mL f 0.75 6.5 3 135 1
  1666. 1445 2023-04-02 04:29:00 Arnotts Cruskits 250g f 250 6 2 3 1
  1667. 1446 2023-04-02 04:29:00 Chantal Organic Onion Bag 1kg t 1 6.99 1 1 1
  1668. 6 2021-06-22 22:59:00 Pams White Vinegar 2L f 2 3.79 3 8 2
  1669. 7 2021-06-22 22:59:00 NZ Trevally Fillets f 590 14.04 2 7 2
  1670. 8 2021-06-22 22:59:00 Apples Pink Lady Large f 1.201 1.55 1 9 2
  1671. 32 2021-06-30 23:20:00 Hoki Fillets Fresh f 0.768 9.82 1 7 2
  1672. 33 2021-06-30 23:20:00 Apples Braeburn f 0.961 3.55 1 9 2
  1673. 48 2021-07-29 06:26:00 Organic Jazz Apple 1 kg bag t 1 5.50 1 9 1
  1674. 56 2021-08-05 05:33:00 Apples Cripps Pink Lady Medium f 1.136 1.12 1 9 2
  1675. 57 2021-08-05 05:33:00 Apples Fuji f 1.026 0.81 1 9 2
  1676. 92 2021-08-19 01:56:00 Apples Cripps Pink Lady Medium f 1.736 1.72 1 9 2
  1677. 105 2021-07-19 21:35:00 Apples 2kg Odd Bunch f 2 4.30 1 9 1
  1678. 110 2021-08-27 05:14:00 Apple Rose Medium f 0.257 1.16 1 9 1
  1679. 114 2021-07-14 22:30:00 SweeTango loose apples f 1.442 7.93 1 9 1
  1680. 122 2021-07-20 00:18:00 NZ Hoki Fillets f 0.474 6.06 1 7 2
  1681. 128 2021-11-15 19:44:00 Apples Royal Gala f 0.967 4.06 1 9 1
  1682. 138 2021-11-15 20:10:00 Pam's Organic Fuji Apples 1 kg t 1 3.99 1 9 2
  1683. 173 2021-11-29 20:45:00 Apples 2 kg Odd Bunch f 2 4.90 1 9 1
  1684. 180 2021-11-15 23:00:00 Hoki Fillets Fresh f 0.548 10.38 1 7 9
  1685. 214 2021-12-07 23:00:00 No Label Jumbo dozen eggs f 800 5 2 6 11
  1686. 229 2021-12-12 22:19:00 Countdown Free Range Sz 7 12pk f 1488.00 13.80 2 6 1
  1687. 209 2021-12-04 23:11:00 Pam's Organic Fuji Apples 1 kg t 1 3.99 1 9 2
  1688. 223 2021-12-12 22:19:00 Apples Royal Gala f 0.947 4.74 1 9 1
  1689. 310 2021-12-27 03:50:00 Pam's Organic Fuji Apples 1 kg t 1 3.99 1 9 2
  1690. 330 2022-01-11 02:54:00 Apples Braeburn f 1.881 7.13 1 9 2
  1691. 348 2021-10-22 00:02:00 Apples Royal Gala f 1.272 4.45 1 9 1
  1692. 370 2021-10-28 02:33:00 Macro Organic Apple 1 kg bag t 1 4.5 1 9 1
  1693. 375 2021-10-31 01:06:00 Apples Braeburn f 1.436 5.3 1 9 2
  1694. 471 2022-01-31 23:07:00 Apples Royal Gala f 1.016 3.04 1 9 2
  1695. 644 2022-04-12 22:37:00 Apples Royal Gala f 0.952 2.86 1 9 1
  1696. 680 2022-04-20 02:34:00 Apples NZ Queen f 1.206 1.19 1 9 2
  1697. 700 2022-05-10 22:22:00 Apples Dazzle NZ f 1.571 1.56 1 9 2
  1698. 710 2022-05-18 02:05:00 Apple Rose Medium f 0.837 2.93 1 9 1
  1699. 777 2022-06-21 23:33:00 Apples 2 kg Odd Bunch f 2 3 1 9 1
  1700. 908 2022-07-25 03:40:00 Bananas Conventional f 0.712 2.42 1 4 1
  1701. 927 2022-08-11 22:17:00 Onions Brown Loose f 0.306 0.58 1 1 2
  1702. 1168 2022-11-29 20:30:00 Cucumber Telegraph f 1 2.2 7 46 1
  1703. 1172 2022-11-29 20:30:00 CD NZ chicken thigh cutlets f 0.922 12.9 1 54 1
  1704. 1173 2022-11-29 20:30:00 Essentials Coconut Cream 400 mL f 800 3 4 15 1
  1705. 1174 2022-11-29 20:30:00 WW White Sugar 1.5kg f 3 6 1 23 1
  1706. 1175 2022-11-29 20:30:00 Essentials Chocolate Chips Dark 250g f 0.25 1.5 1 19 1
  1707. 1177 2022-11-29 20:30:00 OSM muesli bars chocolate honey 480g 6pk f 480 15.2 2 67 1
  1708. 1178 2022-11-29 20:30:00 Whittakers Block Cocoa Dark 72% 250g f 500 9.6 2 17 1
  1709. 1179 2022-12-01 22:01:00 Ceres Organic Apple Cider Vinegar 750mL t 0.75 6.49 3 27 2
  1710. 1181 2022-12-01 22:01:00 Whittakers Block Cocoa Dark 72% 250g f 250 4.75 2 17 2
  1711. 1182 2022-12-01 22:01:00 Bananas Conventional f 0.715 2.35 1 4 2
  1712. 1183 2022-12-01 22:01:00 Anchor butter 500g f 0.5 5.09 1 12 2
  1713. 1184 2022-12-01 23:00:00 Oats, Jumbo Rolled 2kg bag t 2 3.96 1 164 6
  1714. 1186 2022-12-01 23:00:00 Sultanas, Bulk 2.5 kg bag t 2.50 26.61 1 65 6
  1715. 1187 2022-12-01 23:00:00 Quinoa, White, 3.5 kg bag t 3.5 35.2 1 63 6
  1716. 1188 2022-12-01 23:00:00 Coconut Sugar, Ceres 3kg t 3.00 25.51 1 167 6
  1717. 1189 2022-12-01 23:00:00 Ground Cinnamon, Ceres split 1kg bag t 0.50 12.13 1 165 6
  1718. 1190 2022-12-01 23:00:00 Licorice and Cinnamon Tea, Pukka 20 count box 40g NET t 40.00 15.75 5 76 6
  1719. 1191 2022-12-01 23:00:00 Buckwheat Hulled, 25 kg share bag t 16.5 83.28 1 123 6
  1720. 1196 2022-12-20 20:44:00 Mandarins Afourer f 0.792 5.54 1 93 1
  1721. 1200 2022-12-20 20:44:00 Essentials Coconut Cream 400 mL f 1.6 6 3 15 1
  1722. 1205 2022-12-20 20:44:00 Capsicum Odd Bunch 750g f 0.75 5 1 25 1
  1723. 1208 2022-12-11 22:24:00 Bananas Cavendish f 0.727 2.87 1 4 1
  1724. 1209 2022-12-11 22:24:00 Fresh Ginger f 0.242 3.14 1 47 1
  1725. 1210 2022-12-11 22:24:00 CD Chicken Cutlet Medium f 0.887 12.42 1 54 1
  1726. 1211 2022-12-11 22:24:00 CD Chicken Cutlets Small f 0.638 8.93 1 54 1
  1727. 1212 2022-12-11 22:24:00 Bananas Cavendish f 0.312 1.23 1 4 1
  1728. 1213 2022-12-11 22:24:00 Onions Brown Loose f 0.587 2.34 1 1 1
  1729. 1214 2022-12-11 22:24:00 Cucumber Lebanese f 1 2 7 46 1
  1730. 1215 2022-12-11 22:24:00 WW Crinkle Cut Chips Salted 150g f 300.00 3.4 2 149 1
  1731. 1216 2022-12-11 22:24:00 WW Raisins 375g f 375 3.2 2 65 1
  1732. 1217 2022-12-11 22:24:00 WW Dates Pitted 500g f 500 2.8 2 78 1
  1733. 1218 2022-12-11 22:24:00 Essentials Coconut Cream 400 mL f 1.6 6 3 15 1
  1734. 1219 2022-12-11 22:24:00 Ocean Blue Smoked Salmon 180g f 180 12 2 129 1
  1735. 1221 2022-11-04 00:07:00 Garlic NZ f 0.072 2.88 1 49 1
  1736. 1222 2022-11-04 00:07:00 Mandarins Afourer f 0.872 5.23 1 93 1
  1737. 1224 2022-11-04 00:07:00 Essentials Coconut Cream 400 mL f 1.2 4.5 3 15 1
  1738. 1226 2022-11-04 00:07:00 Whittakers Block Cocoa Dark 72% 250g f 250 5.3 2 17 1
  1739. 1227 2022-11-04 00:07:00 Capsicum Loose f 3 3 7 25 1
  1740. 1228 2022-11-04 00:07:00 Cucumber Lebanese f 1 2.19 7 46 1
  1741. 1229 2022-11-04 00:07:00 Odd Bunch Avocados 1kg f 1 4.5 1 24 1
  1742. 1230 2022-11-04 00:07:00 Apples Pink Kids 1 kg f 1 4 1 9 1
  1743. 1231 2022-11-04 00:07:00 Macro Organic Whole Egg Mayo 440g t 440 6.90 2 105 1
  1744. 1232 2022-12-22 21:43:00 Whittakers Block Cocoa Dark 72% 250g f 500 9.5 2 17 2
  1745. 1233 2022-12-22 21:43:00 Mandarins Afourer f 0.48 2.64 1 93 2
  1746. 1234 2023-01-03 02:19:00 Barnicoat Frozen Strawberries 1kg f 1 7.99 1 102 23
  1747. 1235 2023-01-03 02:19:00 Mexicano Corn Chips Sourcream 170g f 170 1.49 2 56 23
  1748. 1236 2023-01-03 02:02:00 Macro Free Range Chicken Drumsticks f 1.082 11.44 1 79 1
  1749. 1239 2023-01-03 02:02:00 WW Black Sliced Olives 430g f 430 3.4 2 113 1
  1750. 1240 2023-01-03 02:02:00 Essentials Coconut Cream 400 mL f 1.6 6 3 15 1
  1751. 9 2021-06-22 22:59:00 Kumara Orange f 851 2.54 2 10 2
  1752. 37 2021-06-30 23:20:00 Kumara Orange f 1.136 2.83 1 10 2
  1753. 60 2021-08-05 05:33:00 Kumara Orange f 2.211 4.40 1 10 2
  1754. 207 2021-12-04 23:11:00 Kumara Orange f 1.451 2.67 1 10 2
  1755. 263 2021-12-20 23:18:00 Kumara Orange f 1.401 4.19 1 10 2
  1756. 299 2021-11-11 01:02:00 Kumara Orange f 0.61 1.83 1 10 2
  1757. 304 2021-10-25 19:31:00 Apples Braeburn f 0.651 2.6 1 9 13
  1758. 334 2022-01-11 02:54:00 Kumara Orange f 0.661 1.98 1 10 2
  1759. 365 2021-10-28 02:33:00 Kumara Orange f 1.727 5.70 1 10 1
  1760. 406 2022-01-17 20:17:00 Kumara Orange f 0.507 1.77 1 10 1
  1761. 438 2022-01-24 21:21:00 Kumara Orange f 0.967 3.38 1 10 1
  1762. 476 2022-01-31 23:07:00 Kumara Red f 0.661 1.98 1 10 2
  1763. 630 2022-04-05 02:37:00 Apples Royal Gala f 1 1.49 1 9 18
  1764. 706 2022-05-10 22:22:00 Kumara Orange f 1.661 4.97 1 10 2
  1765. 747 2022-05-31 22:56:00 Apples 2kg Odd Bunch f 2 4.99 1 9 1
  1766. 781 2022-06-16 00:54:00 Apples NZ Queen f 1.966 2.54 1 9 2
  1767. 802 2022-06-09 01:39:00 Apples Dazzle NZ f 1.461 1.88 1 9 2
  1768. 829 2022-07-11 23:13:00 Apples Cripps Pink Lady Medium f 0.926 1.19 1 9 2
  1769. 847 2022-07-08 00:00:00 Apples Royal Gala 1.5kg bag f 1.5 5.99 1 9 1
  1770. 854 2022-07-18 23:20:00 Apples 2kg Odd Bunch f 2 4.99 1 9 1
  1771. 864 2022-07-29 05:28:00 Apple Rose Medium f 0.712 2.71 1 9 1
  1772. 875 2022-07-01 00:00:00 Apples Braeburn Organic t 1 4 1 9 1
  1773. 880 2022-07-01 00:00:00 Arnotts Vita-weat Cracked Pepper 250g f 0.25 2.5 1 3 1
  1774. 881 2022-07-01 00:00:00 Countdown Free Range Sz 7 12pk f 0.744 6.9 1 6 1
  1775. 899 2022-08-09 22:45:00 WW Thin Rice Cracker Plain 100g f 0.2 2.4 1 3 1
  1776. 903 2022-08-09 22:45:00 Short date bananas on special f 4 6 1 4 1
  1777. 932 2022-08-04 23:12:00 Apples Braeburn Organic t 2.627 5.25 1 9 1
  1778. 940 2022-08-04 23:12:00 Apples 2kg Odd Bunch f 2 4.99 1 9 1
  1779. 1032 2022-10-21 06:04:00 Apples Royal Gala f 0.787 2.75 1 9 1
  1780. 1062 2022-10-27 21:29:00 Apples Royal Gala f 0.131 0.52 1 9 2
  1781. 1159 2022-11-20 21:15:00 Apples 2 kg Odd Bunch f 2 5.49 1 9 1
  1782. 1170 2022-11-29 20:30:00 Apples 2kg Odd Bunch f 2 3 1 9 1
  1783. 1207 2022-12-11 22:24:00 Apples Cripps Pink Lady f 1.747 6.11 1 9 1
  1784. 1237 2023-01-03 02:02:00 Bananas Cavendish f 0.487 1.92 1 4 1
  1785. 1238 2023-01-03 02:02:00 Arnotts Vita-weat Cracked Pepper 250g f 0.75 9.9 1 3 1
  1786. 1242 2023-01-02 23:00:00 Albert's Eggs Size J 20pk 1430g f 1430 9.9 2 173 11
  1787. 1243 2023-01-01 03:40:00 Tararua Salted Butter 500g f 2 16 1 12 20
  1788. 1244 2023-02-07 21:54:00 Chickpeas Bulk Bin f 1.59 14.15 1 176 4
  1789. 1246 2023-02-07 22:04:00 Cabbage Green Medium f 1 4.99 7 60 26
  1790. 1247 2023-02-07 22:04:00 Capsicum mixed bag f 0.5 4.99 1 25 26
  1791. 1249 2023-02-05 23:00:00 Albert's Eggs Size 7 30pk 1860g f 1.86 14.5 1 173 11
  1792. 1255 2022-12-26 01:58:00 Juicies Wildberry Frozen 10x100mL f 1000.00 6.5 4 181 1
  1793. 1256 2022-12-26 01:58:00 Cookie Time 9 Pack Choc Chip 630g f 630.00 12 2 178 1
  1794. 1257 2022-12-26 01:58:00 CD FR Eggs Sz 7 12 pack f 0.744 8.2 1 6 1
  1795. 1258 2022-12-26 01:58:00 Mexicano Corn Chips Natural 300g f 300 3.5 2 56 1
  1796. 1259 2022-12-26 01:58:00 Essentials Coconut Cream 400 mL f 1.2 4.5 3 15 1
  1797. 1260 2022-12-26 01:58:00 Quick Sale Banana Packs f 4 6 1 4 1
  1798. 1261 2022-12-26 01:58:00 Cabbage Red Whole f 1 6.49 7 60 1
  1799. 1262 2023-02-01 23:00:00 CD Cheese block Tasty 1kg f 1.00 18.9 1 35 1
  1800. 1411 2023-03-23 21:59:00 ETA Ripples Ready Salted 150g f 150 1.85 2 149 2
  1801. 10 2021-06-22 22:59:00 Mushrooms white button f 157 1.73 2 11 2
  1802. 1412 2023-03-23 21:59:00 T/Colledge Vanilla Exract 100 mL FairTrade f 100 8.99 4 28 2
  1803. 1413 2023-03-23 21:59:00 Value Tomatoes Chopped in Juice 400g f 9.60 18.96 1 41 2
  1804. 1414 2023-03-23 21:59:00 Apples NZ Queen f 0.4 0.4 1 9 2
  1805. 38 2021-06-30 23:20:00 Mushrooms White Button Loose f 0.182 2 1 11 2
  1806. 1415 2023-03-23 21:59:00 Capsicum Loose f 2 2.98 7 25 2
  1807. 1416 2023-03-23 21:59:00 Carrots, Loose f 1.29 3.73 1 14 2
  1808. 41 2021-07-27 04:29:00 Mushrooms Button Loose f 0.318 4.13 1 11 1
  1809. 1417 2023-03-23 21:59:00 Cucumber Telegraph f 1 1.49 7 46 2
  1810. 1418 2023-03-23 21:59:00 Lamb Pieces Bone In f 0.882 9.69 1 219 2
  1811. 62 2021-08-05 05:33:00 Mushrooms White Button f 0.162 1.78 1 11 2
  1812. 95 2021-08-19 01:56:00 Mushrooms White Button f 0.192 2.40 1 11 2
  1813. 124 2021-07-20 00:18:00 Mushrooms White Button Loose f 0.192 2.11 1 11 2
  1814. 127 2021-11-15 19:44:00 Mushrooms Button Loose f 0.243 3.16 1 11 1
  1815. 148 2021-11-23 00:42:00 Mushrooms Button Loose f 0.233 3.03 1 11 1
  1816. 162 2021-11-29 20:45:00 Mushrooms Button Loose f 0.223 2.90 1 11 1
  1817. 208 2021-12-04 23:11:00 Mushrooms Button Loose f 0.227 2.72 1 11 2
  1818. 218 2021-12-12 22:19:00 Mushrooms Button Loose f 228 2.96 2 11 1
  1819. 264 2021-12-20 23:18:00 Mushrooms Button Loose f 0.347 4.33 1 11 2
  1820. 288 2021-11-03 23:00:00 Mushrooms Button Loose f 0.207 2.59 1 11 2
  1821. 300 2021-11-11 01:02:00 Mushrooms Button Loose f 0.24 2.06 1 11 2
  1822. 309 2021-12-27 03:50:00 Mushrooms Button Loose f 0.087 1.09 1 11 2
  1823. 318 2022-01-07 01:28:00 Mushrooms Button Loose f 0.293 3.81 1 11 1
  1824. 336 2022-01-11 02:54:00 Mushrooms Button Loose f 0.197 2.46 1 11 2
  1825. 345 2021-10-22 00:02:00 Mushrooms Button Loose f 0.238 3.09 1 11 1
  1826. 389 2021-12-31 03:00:00 Mushrooms Button Loose f 0.21 2.73 1 11 1
  1827. 405 2022-01-17 20:17:00 Mushrooms Button Loose f 0.353 4.94 1 11 1
  1828. 436 2022-01-24 21:21:00 Mushrooms Button Loose f 0.198 2.77 1 11 1
  1829. 477 2022-01-31 23:07:00 Mushrooms Button Loose f 0.262 3.27 1 11 2
  1830. 502 2022-02-22 00:00:00 Mushrooms Button Loose f 0.327 3.92 1 11 2
  1831. 510 2022-02-08 01:03:00 Mushrooms Button Loose f 0.253 3.54 1 11 1
  1832. 523 2022-02-15 01:54:00 Mushrooms Button Loose f 0.128 1.79 1 11 1
  1833. 549 2022-02-28 22:11:00 Mushrooms Button Loose f 0.203 2.84 1 11 1
  1834. 572 2022-03-07 21:11:00 Mushrooms Button Loose f 0.252 3.02 1 11 2
  1835. 608 2022-03-22 22:08:00 Mushrooms Button Loose f 0.252 3.02 1 11 2
  1836. 642 2022-04-12 22:37:00 Mushrooms Button Loose f 0.298 4.17 1 11 1
  1837. 682 2022-04-20 02:34:00 Mushrooms Button Loose f 0.352 3.52 1 11 2
  1838. 707 2022-05-10 22:22:00 Mushrooms Button Loose f 0.177 2.12 1 11 2
  1839. 709 2022-05-18 02:05:00 Mushrooms Button Loose f 0.163 2.28 1 11 1
  1840. 725 2022-05-24 21:00:00 Mushrooms Button Loose f 0.2 2.8 1 11 1
  1841. 897 2022-08-09 22:45:00 Kumara Orange f 0.822 3.29 1 10 1
  1842. 926 2022-08-11 22:17:00 Kumara Orange f 0.961 1.91 1 10 2
  1843. 931 2022-08-04 23:12:00 Kumara Orange f 0.297 1.13 1 10 1
  1844. 954 2022-09-15 22:30:00 Bananas Conventional f 0.8 2.88 1 4 1
  1845. 956 2022-09-15 22:30:00 Kumara Orange f 0.52 1.14 1 10 1
  1846. 957 2022-09-15 22:30:00 Onions Brown Loose f 0.3 0.81 1 1 1
  1847. 958 2022-09-15 22:30:00 Apples 2kg Odd Bunch f 2 3.5 1 9 1
  1848. 12 2021-06-22 22:59:00 Anchor butter 500g f 500 4.80 2 12 2
  1849. 14 2021-06-22 23:31:00 Pumpkin Butternut Whole Ea f 1 3 7 13 1
  1850. 16 2021-06-22 23:31:00 Macro Organic Carrots 1 kg t 1 6 1 14 1
  1851. 1456 2023-04-10 04:38:00 Doritos Corn Chips Original 170g f 340.00 5 2 128 1
  1852. 94 2021-08-19 01:56:00 Carrots, Loose f 0.851 0.84 1 14 2
  1853. 106 2021-07-19 21:35:00 Carrots, 1.5 kg Odd Bunch f 1.5 2 1 14 1
  1854. 1457 2023-04-10 04:38:00 TNCC Frogs Reduced Sugar 220g f 220 2.9 2 225 1
  1855. 1458 2023-04-10 04:38:00 Carrots, 1.5 kg Odd Bunch f 1.5 3.75 1 14 1
  1856. 139 2021-11-15 20:10:00 Anchor butter 500g f 500.00 5.4 2 12 2
  1857. 169 2021-11-29 20:45:00 Anchor butter 500g f 500.00 5.8 2 12 1
  1858. 187 2021-10-30 23:00:00 Local Carrot Bunch f 1 2 6 14 7
  1859. 210 2021-12-04 23:11:00 Anchor butter 500g f 1500.00 11.97 2 12 2
  1860. 261 2021-12-20 23:18:00 Carrots, Loose f 0.626 1.25 1 14 2
  1861. 268 2021-12-20 23:18:00 Anchor butter 500g f 500 4.9 2 12 2
  1862. 315 2021-12-27 03:50:00 Anchor butter 500g f 1000 10 2 12 2
  1863. 340 2022-01-11 02:54:00 Anchor butter 500g f 2000 17.56 2 12 2
  1864. 377 2021-10-31 01:06:00 Pams Butter 500g f 500 4.89 2 12 2
  1865. 574 2022-03-07 21:11:00 Anchor butter 500g f 500 5.39 2 12 2
  1866. 609 2022-03-22 22:08:00 Anchor butter 500g f 500 5.4 2 12 2
  1867. 624 2022-03-28 22:16:00 Mushrooms Button Loose f 0.16 2.08 1 11 18
  1868. 632 2022-04-05 02:37:00 Mushrooms Button Loose f 0.145 1.88 1 11 18
  1869. 639 2022-04-05 02:55:00 CD Butter Salted 500g f 500 5.8 2 12 1
  1870. 655 2022-04-12 22:37:00 CD Butter Salted 500g f 500 5.8 2 12 1
  1871. 683 2022-04-20 02:34:00 Anchor butter 500g f 1000 10.80 2 12 2
  1872. 691 2022-05-10 22:53:00 CD Butter Salted 500g f 1000 11.60 2 12 1
  1873. 719 2022-05-18 02:05:00 CD Butter Salted 500g f 500 5.8 2 12 1
  1874. 722 2022-05-24 21:00:00 CD Butter Salted 500g f 500 5.4 2 12 1
  1875. 766 2022-06-21 23:33:00 Mushrooms Button Loose f 0.218 3.05 1 11 1
  1876. 786 2022-06-16 00:54:00 Pams Butter 500g f 2000.00 19.96 2 12 2
  1877. 787 2022-06-09 23:27:00 Mushrooms Button Loose f 0.15 2.14 1 11 1
  1878. 792 2022-06-09 23:27:00 CD Butter Salted 500g f 500 5.4 2 12 1
  1879. 819 2022-07-07 23:06:00 Mushrooms Button Loose f 0.187 2.24 1 11 2
  1880. 871 2022-07-19 00:06:00 Mushrooms Button Loose f 0.137 1.64 1 11 2
  1881. 877 2022-07-01 00:00:00 Mushrooms Button Loose f 0.2 2.8 1 11 1
  1882. 887 2022-07-18 22:38:00 Tararua Salted Butter 500g f 1.5 14.70 1 12 20
  1883. 898 2022-08-09 22:45:00 Mushrooms Button Loose f 0.188 2.63 1 11 1
  1884. 952 2022-09-15 22:30:00 CD Butter Salted 500g f 0.5 5.4 1 12 1
  1885. 966 2022-09-15 22:23:00 Tararua Salted Butter 500g f 1 7.94 1 12 20
  1886. 979 2022-09-01 23:18:00 Mushrooms Button Loose f 0.162 1.62 1 11 2
  1887. 981 2022-09-01 23:18:00 Rolling Meadow Butter 500g f 1 10.18 1 12 2
  1888. 983 2022-08-31 23:36:00 Kumara Orange f 2.172 4.78 1 10 1
  1889. 984 2022-08-31 23:36:00 Bananas Cavendish f 0.502 1.76 1 4 1
  1890. 155 2021-11-23 00:42:00 Carrots, 1.5 kg Odd Bunch f 1.5 3 1 14 1
  1891. 321 2022-01-07 01:28:00 Carrots, 1.5 kg Odd Bunch f 1.5 3 1 14 1
  1892. 360 2021-10-22 00:02:00 Macro Org Carrots 1kg t 1 6 1 14 1
  1893. 364 2021-10-28 02:33:00 Carrots, Loose f 0.832 2.49 1 14 1
  1894. 451 2022-01-31 23:40:00 Macro Org Carrots 1kg t 1 8 1 14 1
  1895. 532 2022-02-15 01:54:00 Macro Org Carrots 1kg t 1 8 1 14 1
  1896. 570 2022-03-07 21:11:00 Carrots, Loose f 0.601 1.68 1 14 2
  1897. 694 2022-05-10 22:53:00 Carrots, 1.5 kg Odd Bunch f 1.5 3 1 14 1
  1898. 732 2022-05-24 21:00:00 Carrots, 1.5 kg Odd Bunch f 1.5 3 1 14 1
  1899. 788 2022-06-09 23:27:00 Carrots, 1.5 kg Odd Bunch f 1.5 3 1 14 1
  1900. 831 2022-07-11 23:13:00 Carrots, Loose f 0.631 1.44 1 14 2
  1901. 855 2022-07-18 23:20:00 Carrots, 1.5 kg Odd Bunch f 1.5 3 1 14 1
  1902. 878 2022-07-01 00:00:00 Carrots, 1.5 kg Odd Bunch f 1.5 3 1 14 1
  1903. 893 2022-08-04 22:14:00 Local Spray Free Carrots f 0.73 3 1 14 7
  1904. 924 2022-08-11 22:17:00 Carrots, Loose f 0.786 1.8 1 14 2
  1905. 977 2022-09-01 23:18:00 Carrots, Loose f 1.061 2.11 1 14 2
  1906. 1004 2022-09-22 21:12:00 Better Eggs Forest FR Mixed 10pk f 485 4 2 6 2
  1907. 1007 2022-09-22 21:12:00 Apples Cripps Pink Lady f 0.906 1.8 1 9 2
  1908. 1009 2022-09-22 21:12:00 Bananas Conventional f 0.936 2.71 1 4 2
  1909. 1011 2022-09-22 21:12:00 Carrots, Loose f 1.096 2.18 1 14 2
  1910. 1014 2022-09-22 21:12:00 Onions Brown Loose f 0.451 0.81 1 1 2
  1911. 1015 2022-09-22 21:12:00 Onions Brown Loose f 0.466 0.83 1 1 2
  1912. 1020 2022-08-26 00:00:00 Arnotts Vita-weat Cracked Pepper 250g f 250 3.3 2 3 1
  1913. 1100 2022-11-06 22:50:00 Ceres Organic Tomato Paste 190g t 190 2.79 2 5 2
  1914. 1109 2022-11-06 22:50:00 NZ Deep Sea Cod Fillets f 0.432 12.52 1 7 2
  1915. 1111 2022-11-06 22:50:00 Apples Royal Gala f 1.081 4.31 1 9 2
  1916. 1113 2022-11-06 22:50:00 Bananas Conventional f 2.456 7.34 1 4 2
  1917. 1119 2022-11-06 22:50:00 Kumara Orange f 1.446 5.05 1 10 2
  1918. 1121 2022-11-06 22:50:00 Mushrooms White Button f 0.202 2.52 1 11 2
  1919. 1122 2022-11-06 22:50:00 Onions Brown Loose f 1.511 5.27 1 1 2
  1920. 1171 2022-11-29 20:30:00 Carrots, 1.5 kg Odd Bunch f 1.5 3.8 1 14 1
  1921. 1223 2022-11-04 00:07:00 Carrots, 1.5 kg Odd Bunch f 1.5 3.5 1 14 1
  1922. 1263 2023-02-01 23:00:00 Verkerks Wagyu Salami 100g f 100.00 7.99 2 162 1
  1923. 1264 2023-02-01 23:00:00 Apples Royal Gala f 1.1 5.48 1 9 1
  1924. 1265 2023-02-01 23:00:00 Bananas Conventional f 1 3.95 1 4 1
  1925. 1266 2023-02-01 23:00:00 Mushrooms Button Loose f 0.14 2.38 1 11 1
  1926. 1267 2023-02-01 23:00:00 Onions Brown Loose f 0.2 0.8 1 1 1
  1927. 1268 2023-02-01 23:00:00 Carrots, 1.5 kg Odd Bunch f 1.5 4 1 14 1
  1928. 1270 2023-02-01 23:00:00 CD Beef Mince 82% 1kg f 1 16.5 1 18 1
  1929. 1271 2023-02-01 23:00:00 Essentials Coconut Cream 400 mL f 400 1.5 4 15 1
  1930. 1272 2023-02-01 23:00:00 WW Dates Pitted 500g f 500 2.8 2 78 1
  1931. 1274 2023-02-01 23:00:00 Ceres Org Seaweed Snack Nori 11.3g f 11.3 4 2 131 1
  1932. 1275 2023-02-01 23:00:00 Ceres Org Seaweed Multipack 8x2g f 32.00 11 2 131 1
  1933. 1276 2023-02-01 23:00:00 Jack Links Jerky Original Beef 50g f 200.00 17.6 2 186 1
  1934. 1277 2023-02-01 23:00:00 Jack links original beef sticks 12g x 6pk f 72.00 5.5 2 186 1
  1935. 1278 2023-02-01 23:00:00 OSM muesli bars chocolate honey 480g 6pk f 960.00 32.00 2 67 1
  1936. 1279 2023-02-01 23:00:00 Tasti fruit balls black currant 207g f 207 5.5 2 182 1
  1937. 1280 2023-02-01 23:00:00 Tasti smooshed berry cashew 207g f 207 5 2 182 1
  1938. 1281 2023-02-01 23:00:00 Whittakers Block Cocoa Dark 72% 250g f 500 12 2 17 1
  1939. 1283 2023-01-09 22:11:00 Onions Brown Loose f 0.637 2.54 1 1 1
  1940. 1033 2022-10-21 06:04:00 Bananas Cavendish f 1.062 3.88 1 4 1
  1941. 1036 2022-10-21 06:04:00 Bananas Cavendish f 0.152 0.55 1 4 1
  1942. 1046 2022-10-27 00:20:00 WW Thin Rice Cracker Salt&Ving 100g f 100 1.5 2 3 1
  1943. 1167 2022-11-29 20:30:00 Bananas Conventional f 1 3.95 1 4 1
  1944. 1254 2022-12-26 01:58:00 Arnotts Vita-weat Cracked Pepper 250g f 0.25 3.3 1 3 1
  1945. 1284 2023-01-09 22:11:00 Bananas Cavendish f 1.032 4.08 1 4 1
  1946. 1285 2023-01-09 22:11:00 Plums Classic Loose f 0.33 2.31 1 85 1
  1947. 1286 2023-01-09 22:11:00 Kiwifruit Green NZ f 0.157 1.49 1 96 1
  1948. 1287 2023-01-09 22:11:00 Kumara Orange X-large f 1.382 3.04 1 10 1
  1949. 1288 2023-01-09 22:11:00 Fresh Ginger f 0.342 4.61 1 47 1
  1950. 1289 2023-01-09 22:11:00 Bananas Cavendish f 0.622 2.46 1 4 1
  1951. 1290 2023-01-09 22:11:00 Loose Mandarins f 0.172 1.55 1 93 1
  1952. 1291 2023-01-09 22:11:00 Fresh N Fruity Mixed Berry 6pk f 750.00 4.5 2 153 1
  1953. 1292 2023-01-09 22:11:00 CD Beef Mince 82% 1kg f 1 16.5 1 18 1
  1954. 1293 2023-01-09 22:11:00 Juicies Tropical Frozen 10x100mL f 1000.00 6.5 4 181 1
  1955. 1294 2023-01-09 22:11:00 Lisas Hummus Gloriously Garlic 380g f 380.00 6 2 158 1
  1956. 1297 2023-01-09 22:11:00 Odd Bunch Avocados 1kg f 1 6.5 1 24 1
  1957. 1300 2023-01-09 22:11:00 Huntley & Palmers Rosemary Garlic Crackers f 200 3.7 2 3 1
  1958. 1301 2023-01-09 22:11:00 Whittakers Block Cocoa Dark 72% 250g f 250 6 2 17 1
  1959. 1302 2023-01-09 22:11:00 Tostitos Splash of Lime 175g f 175 3 2 56 1
  1960. 1303 2023-01-09 22:11:00 WW Crinkle Cut Chips Ready 150g f 450.00 5.1 2 149 1
  1961. 1306 2023-01-09 22:11:00 Mainland Cheese Tasty 700g f 0.7 18.9 1 35 1
  1962. 1307 2023-01-09 22:11:00 OSM muesli bars chocolate honey 480g 6pk f 960.00 30.4 2 67 1
  1963. 1308 2023-01-09 22:11:00 CD FR Eggs Sz 7 12 pack f 744 8.2 2 6 1
  1964. 1309 2023-01-09 22:11:00 WW Chocolate Drops Dark 200g f 0.2 2.8 1 19 1
  1965. 1311 2023-01-09 22:11:00 WW Black Sliced Olives 430g f 430 3.4 2 113 1
  1966. 1312 2023-01-09 22:11:00 WW White Sugar 1.5kg f 1.5 3.3 1 23 1
  1967. 1313 2023-01-09 22:11:00 Nice Natural Roasted Nut Bar TrailMix 6pk 192g f 192 3 2 92 1
  1968. 1315 2023-01-09 22:11:00 Mckenzies Soup Red Lentils 375g f 0.375 2.7 1 72 1
  1969. 1316 2023-01-12 23:00:00 Albert's Eggs Size 7 30pk 1860g f 1.86 14.50 1 173 11
  1970. 1317 2022-12-22 23:00:00 Fill Your Own Honey f 4.2 42 1 77 16
  1971. 1318 2022-12-12 23:00:00 Albert's Eggs Size J 20pk 1430g f 1.430 9.5 1 173 11
  1972. 1319 2022-12-21 23:00:00 Albert's Eggs Size J 20pk 1430g f 1.43 9.5 1 173 11
  1973. 1320 2022-11-17 23:00:00 Small Spray Free Cabbage f 1 2 7 60 27
  1974. 1321 2022-11-17 23:00:00 Small Spray Free Cucumber f 1 3 7 46 27
  1975. 1322 2022-11-17 23:00:00 Bunch of Spray Free Beetroot f 1 5 6 32 27
  1976. 1323 2023-02-13 23:15:00 CD Chicken Drumsticks Large f 1.49 9.69 1 48 1
  1977. 1324 2023-02-13 23:15:00 Bananas Cavendish f 0.752 2.97 1 4 1
  1978. 1325 2023-02-13 23:15:00 Fresh Ginger f 0.252 3.4 1 47 1
  1979. 1326 2023-02-13 23:15:00 Onions Brown Loose f 0.457 1.82 1 1 1
  1980. 1327 2023-02-13 23:15:00 CD Butter Salted 500g f 1 9.8 1 12 1
  1981. 1328 2023-02-13 23:15:00 Killinchy Gold Choc & Boysen 1L f 1 10 3 33 1
  1982. 1331 2023-02-13 23:15:00 Whittakers Block Cocoa Dark 72% 250g f 250 5.3 2 17 1
  1983. 1332 2023-02-13 23:15:00 Whittakers Block Rum & Raisin 250g f 250 5.3 2 17 1
  1984. 1333 2023-02-13 23:15:00 Quick Sale Mixed Apples f 1.4 3 1 9 1
  1985. 1335 2023-02-13 23:15:00 Arnotts Vita-weat Cracked Pepper 250g f 500 6.6 2 3 1
  1986. 1336 2023-01-09 23:00:00 Huntly Street Seller fresh strawberries f 1.25 10 1 59 28
  1987. 1337 2023-02-19 23:00:00 Albert's Eggs Size 7 30pk 1860g f 1800 17.50 2 173 11
  1988. 1338 2023-02-23 21:58:00 Exotic Foods Red Chilli Whole 190g f 190.00 3.8900 2 184 2
  1989. 1339 2023-02-23 21:58:00 Hoco Coconut Water 1L f 2 7.38 3 53 2
  1990. 1341 2023-02-23 21:58:00 Pams White Vinegar 2L f 2.00 4.1 3 8 2
  1991. 1342 2023-02-23 21:58:00 T/Colledge Vanilla Exract 100 mL FairTrade f 100 9.79 4 28 2
  1992. 1343 2023-02-23 21:58:00 Value Sultanas 400g f 400 2.19 2 65 2
  1993. 1344 2023-02-23 21:58:00 Value Tomatoes Chopped in Juice 400g f 4.80 10.68 1 41 2
  1994. 1345 2023-02-23 21:58:00 Whittakers Block Cocoa Dark 72% 250g f 750 14.25 2 17 2
  1995. 1346 2023-02-23 21:58:00 Hoki Fillets Fresh f 0.442 8.75 1 7 2
  1996. 1347 2023-02-23 21:58:00 NZ Snapper Heads f 0.902 6.32 1 30 2
  1997. 1348 2023-02-23 21:58:00 Apples Royal Gala f 1 3.49 1 9 2
  1998. 1349 2023-02-23 21:58:00 Bananas Conventional f 1.395 4.59 1 4 2
  1999. 1350 2023-02-23 21:58:00 Capsicum Loose f 2 3.00 7 25 2
  2000. 1351 2023-02-23 21:58:00 Carrots, Loose f 1.47 4.4 1 14 2
  2001. 1352 2023-02-23 21:58:00 Fresh Ginger f 0.635 5.71 1 47 2
  2002. 1353 2023-02-23 21:58:00 Mushrooms Button Loose f 0.227 2.27 1 11 2
  2003. 1354 2023-02-23 21:58:00 Onions Brown Loose f 0.935 3.36 1 1 2
  2004. 1355 2023-02-23 21:58:00 Anchor butter 500g f 1 10.18 1 12 2
  2005. 1356 2023-02-23 21:58:00 Bird n Barrow FR Chicken Whole Bag 1.35kg f 1.35 18.49 1 133 2
  2006. 1357 2023-02-23 21:58:00 NZ Beef Mince f 0.720 11.51 1 18 2
  2007. 1358 2023-02-23 21:58:00 NZ Chciken Thighs Bone In with Skin f 0.746 5.59 1 54 2
  2008. 1360 2023-02-02 23:00:00 Bulk Ceres Salt t 1 2.65 1 75 6
  2009. 1361 2023-02-02 23:00:00 Chocolate Chips, SHARE 10 kg bag t 2 56.66 1 19 6
  2010. 1362 2023-02-02 23:00:00 Bulk Adzuki Beans 3.5kg t 3.50 31.7500 1 169 6
  2011. 1363 2023-02-02 23:00:00 Bulk Red Lentils Ceres 3.5 kg bag t 3.5 25.49 1 72 6
  2012. 1364 2023-02-02 23:00:00 Organic Medium Grain Brown Rice, Bulk t 10.5 37.67 1 71 6
  2013. 1365 2023-02-10 04:00:00 Whittakers Block Cocoa Dark 72% 250g f 250 5.29 2 17 13
  2014. 1366 2023-02-10 04:00:00 Fresh Ginger f 0.12 1.56 1 47 13
  2015. 1367 2023-02-13 04:00:00 Apples Royal Gala f 1.1 4.02 1 9 13
  2016. 305 2021-10-25 19:31:00 Banana Sweetio 4 pk f 1 3.49 6 4 13
  2017. 430 2021-08-27 00:00:00 Bananas Conventional f 1 2.57 6 4 15
  2018. 434 2022-01-23 02:54:00 Arnotts Vita-weat Cracked Pepper 250g f 250 2.99 2 3 13
  2019. 622 2022-03-28 22:16:00 Onions Brown Loose f 0.235 0.47 1 1 18
  2020. 629 2022-04-05 02:37:00 Bananas Conventional f 0.615 1.53 1 4 18
  2021. 631 2022-04-05 02:37:00 Onions Brown Loose f 0.2 0.4 1 1 18
  2022. 664 2022-04-27 04:51:00 Bananas Conventional f 1.171 3.85 1 4 13
  2023. 1049 2022-09-27 21:17:00 Onions Brown Loose f 0.152 0.45 1 1 1
  2024. 1052 2022-09-27 21:17:00 Arnotts Vita-weat Cracked Pepper 250g f 500 6.6 2 3 1
  2025. 1054 2022-09-27 21:17:00 WW Thin Rice Cracker Salt&Ving 100g f 100 1.5 2 3 1
  2026. 1066 2022-10-27 21:29:00 Onions Brown Loose f 0.386 1.08 1 1 2
  2027. 1146 2022-11-20 21:15:00 Onions Brown Loose f 0.402 1.6 1 1 1
  2028. 1158 2022-11-20 21:15:00 Arnotts Vita-weat Cracked Pepper 250g f 750 9.9 2 3 1
  2029. 1368 2023-02-13 04:00:00 Pams Finest Dark Chocolate Chunks 200g f 200 3.99 2 19 13
  2030. 1369 2023-02-17 04:00:00 Lisas Hummus Gloriously Garlic 380g f 380.00 4.99 2 158 13
  2031. 1371 2023-03-07 23:24:00 Bananas Cavendish f 0.862 3.19 1 4 1
  2032. 1372 2023-03-07 23:24:00 Onions Brown Loose f 0.967 3.37 1 1 1
  2033. 1375 2023-03-07 23:24:00 WW Black Sliced Olives 430g f 430 3.7 2 113 1
  2034. 1376 2023-03-07 23:24:00 Essentials Coconut Cream 400 mL f 1600.00 6 4 15 1
  2035. 1377 2023-03-07 23:24:00 WW Dates Pitted 500g f 2 8 1 78 1
  2036. 1378 2023-03-07 23:24:00 Arnotts Vita-weat Cracked Pepper 250g f 1 13.2 1 3 1
  2037. 1379 2023-03-07 23:24:00 Cabbage Red Whole f 1.489 5.99 1 60 1
  2038. 1380 2023-03-07 23:24:00 Tasti Fruit Balls Apple 207g f 207 5.5 2 182 1
  2039. 1381 2023-03-07 23:24:00 Ceres Organics Seaweed Nori Snack 5g t 5 2 2 131 1
  2040. 1382 2023-03-07 23:24:00 CD Beef Chuck Diced 340g Reduced f 1.02 18.54 1 51 1
  2041. 1383 2023-03-07 23:24:00 CD Beef Mince 82% 1kg f 1 12.82 1 18 1
  2042. 1386 2023-03-04 22:10:00 CD 9 Thin Beef Sausages 580g f 580 7 2 116 1
  2043. 1387 2023-03-12 23:00:00 Albert's Eggs Size 7 30pk 1860g f 1.86 17.5 1 173 11
  2044. 1388 2023-03-15 20:25:00 CD Chicken Drumsticks Large f 1.514 9.84 1 48 1
  2045. 1389 2023-03-15 20:25:00 Bananas Cavendish f 0.922 3.41 1 4 1
  2046. 1390 2023-03-15 20:25:00 Essentials Coconut Cream 400 mL f 800 3 4 15 1
  2047. 1391 2023-03-15 20:25:00 WW Tomatoes Diced Italian 400g f 400 0.9 2 41 1
  2048. 1392 2023-03-15 20:25:00 WW Black Sliced Olives 430g f 430 3.7 2 113 1
  2049. 1394 2023-03-15 20:25:00 CD Butter Salted 500g f 0.5 6.5 1 12 1
  2050. 1395 2023-03-15 20:25:00 CD Beef Mince 82% 1kg f 1 16.5 1 18 1
  2051. 1396 2023-03-15 20:25:00 Jack links original beef sticks 12g f 192.00 16 2 186 1
  2052. 1397 2023-03-15 20:25:00 WW Crinkle Cut Chips Ready 150g f 300 3.8 2 149 1
  2053. 1398 2023-03-15 20:25:00 Carrots, 1.5 kg Odd Bunch f 1.5 3.2 1 14 1
  2054. 1399 2023-03-15 20:25:00 Onion Odd Bunch 1.5kg f 1.5 3.2 1 1 1
  2055. 1400 2023-03-15 20:25:00 Whittakers Block Cocoa Dark 72% 250g f 500 9.6 2 17 1
  2056. 1401 2023-03-17 03:08:00 Tararua Salted Butter 500g f 2 19.2 1 12 20
  2057. 1402 2023-03-17 04:32:00 Potatoes White Washed f 1.312 5.23 1 2 1
  2058. 1403 2023-03-17 04:32:00 WW Chocolate Drops Dark 200g f 0.4 5.6 1 19 1
  2059. 1404 2023-03-17 04:32:00 Chelsea Molasses Black Strap 500g f 500.00 4.1 2 175 1
  2060. 1405 2023-03-17 04:32:00 Hansells Mandarin Lime&Bitters 750mL f 750 6.5 4 135 1
  2061. 1406 2023-03-17 04:32:00 Whittakers Block Cocoa Dark 72% 250g f 250 4.8 2 17 1
  2062. 17 2021-06-22 23:31:00 Essentials Coconut Cream 400 mL f 800 2.60 4 15 1
  2063. 43 2021-07-27 04:29:00 Essentials Coconut Cream 400 mL f 1200 3.9 4 15 1
  2064. 81 2021-08-12 01:33:00 Essentials Coconut Cream 400 mL f 1200 3.90 4 15 1
  2065. 118 2021-07-14 22:30:00 Essentials Coconut Cream 400 mL f 400 1.3 4 15 1
  2066. 156 2021-11-23 00:42:00 Essentials Coconut Cream 400 mL f 2400.00 7.2 4 15 1
  2067. 167 2021-11-29 20:45:00 Essentials Coconut Cream 400 mL f 400 2.4 4 15 1
  2068. 230 2021-12-12 22:19:00 Essentials Coconut Cream 400 mL f 400 1.2 4 15 1
  2069. 275 2021-11-10 23:48:00 Essentials Coconut Cream 400 mL f 800.00 2.4 4 15 1
  2070. 394 2021-12-31 03:00:00 Essentials Coconut Cream 400 mL f 1600.00 4.8 4 15 1
  2071. 449 2022-01-31 23:40:00 Essentials Coconut Cream 400 mL f 3200.00 9.60 4 15 1
  2072. 511 2022-02-08 01:03:00 Essentials Coconut Cream 400 mL f 2000.00 6.00 4 15 1
  2073. 557 2022-02-28 22:11:00 Essentials Coconut Cream 400 mL f 3200.00 9.60 4 15 1
  2074. 598 2022-03-22 21:45:00 Essentials Coconut Cream 400 mL f 1200 3.6 4 15 1
  2075. 621 2022-03-28 22:16:00 Carrots, Loose f 0.225 0.61 1 14 18
  2076. 634 2022-04-05 02:37:00 Carrots, Loose f 1 1.89 1 14 18
  2077. 649 2022-04-12 22:37:00 Essentials Coconut Cream 400 mL f 2400.00 8.4 4 15 1
  2078. 672 2022-04-20 01:03:00 Essentials Coconut Cream 400 mL f 1600.00 5.60 4 15 1
  2079. 714 2022-05-18 02:05:00 Essentials Coconut Cream 400 mL f 2400.00 8.4 4 15 1
  2080. 1037 2022-10-21 06:04:00 Carrots, 1.5 kg Odd Bunch f 1.5 3.50 1 14 1
  2081. 1068 2022-10-30 22:22:00 Kumara Orange f 0.862 3.28 1 10 1
  2082. 1070 2022-10-30 22:22:00 Onions Brown Loose f 0.137 0.41 1 1 1
  2083. 1071 2022-10-30 22:22:00 Bananas Cavendish f 0.962 3.7 1 4 1
  2084. 1083 2022-11-06 20:52:00 Tribe Organic Crackers Multipack 6 x 20g t 120 1.79 2 3 23
  2085. 1090 2022-11-06 20:52:00 Westgold Unsalted Butter 400g f 400 4.99 2 12 23
  2086. 1094 2022-11-06 06:41:00 CD FR Eggs Sz 7 12 pack f 744 8.2 2 6 1
  2087. 1192 2022-12-20 20:44:00 Kumara Orange X-large f 3.022 6.65 1 10 1
  2088. 1193 2022-12-20 20:44:00 Onions Brown Loose f 0.707 2.82 1 1 1
  2089. 1195 2022-12-20 20:44:00 Bananas Cavendish f 1.512 5.97 1 4 1
  2090. 1201 2022-12-20 20:44:00 Huntley & Palmers Rosemary Garlic Crackers f 200 3.7 2 3 1
  2091. 1203 2022-12-20 20:44:00 Carrots, 1.5 kg Odd Bunch f 1.5 3.8 1 14 1
  2092. 1204 2022-12-20 20:44:00 Apples 2kg Odd Bunch f 2 5.99 1 9 1
  2093. 1248 2023-02-07 22:04:00 Onions Brown Loose f 0.55 2.19 1 1 26
  2094. 18 2021-06-22 23:31:00 Essentials French Whole Bean 200g f 200 5 2 16 1
  2095. 20 2021-06-22 23:31:00 Whittakers Block Dark Ghana 250g f 250 4.7 2 17 1
  2096. 25 2021-06-30 08:40:00 Whittakers Blk Dark Almond 62% 250g f 250 4.70 2 17 1
  2097. 1459 2023-04-04 09:11:00 Whittakers Block Cocoa Dark 72% 250g f 250 5.49 2 17 2
  2098. 1460 2023-04-04 09:11:00 Bananas Conventional f 0.695 2.29 1 4 2
  2099. 44 2021-07-27 04:29:00 Whittakers Block Dark Almond 62% 250g f 250 4.3 2 17 1
  2100. 47 2021-07-29 06:26:00 Whittakers Block Cocoa Dark 72% 250g f 750 12.90 2 17 1
  2101. 83 2021-08-12 01:33:00 Macro Organic Fairtrade Medium Beans 200g f 200 6.50 2 16 1
  2102. 21 2021-06-22 23:31:00 Beef Value Mince 82% 1 kg f 1 10.90 1 18 1
  2103. 22 2021-06-30 08:39:00 WW Chocolate Chips Dark 200g f 0.2 2.5 1 19 1
  2104. 23 2021-06-30 08:40:00 Mainland Cheese Vintage 500g f 0.5 10.5 1 21 1
  2105. 27 2021-06-30 23:20:00 Pams Flour Wholemeal 1.5 kg f 1.5 1.98 1 22 2
  2106. 28 2021-06-16 00:00:00 Tulsi Tumeric Ginger Tea f 25 0 7 20 3
  2107. 29 2021-06-16 00:00:00 Tulsi Orginal Loose Leaf Tea f 100 16.40 2 20 3
  2108. 30 2021-06-16 00:00:00 Tulsi Licorice Spice Tea f 25 9.50 7 20 3
  2109. 46 2021-07-29 06:26:00 Mainland Cheese Vintage f 500 10.50 2 21 1
  2110. 52 2021-08-05 05:33:00 Pams Flour Wholemeal 1.5 kg f 1.5 1.98 1 22 2
  2111. 68 2021-08-05 05:33:00 NZ Beef Mince Special f 0.865 8.65 1 18 2
  2112. 84 2021-08-12 01:33:00 Mainland Cheese Vintage 500g f 500 10.50 2 21 1
  2113. 86 2021-08-12 01:33:00 CD Beef Mince 82% 1kg Price Reduced by $5.50 f 1 10.27 1 18 1
  2114. 143 2021-07-02 00:00:00 Organic Beef Mince 90/10 t 0.4 10 1 18 8
  2115. 1419 2023-03-27 22:25:00 Bulk Tapioca Flour f 0.134 1.00 1 208 4
  2116. 1420 2023-03-27 22:25:00 Bin Inn Bagged Cryst Ginger 500g f 0.5 8.5 1 112 4
  2117. 1421 2023-03-27 22:25:00 Organic Chickpeas 1kg bag t 1 9.9 1 176 4
  2118. 1422 2023-03-27 22:25:00 Ground Ginger Bulk Bin f 0.026 1.17 1 141 4
  2119. 1423 2023-03-27 22:25:00 Down to Earth Organic Cayenne Pepper 60g t 0.06 4.99 1 220 4
  2120. 31 2021-06-30 23:20:00 Pams White Sugar 3 kg f 3 4.89 1 23 2
  2121. 34 2021-06-30 23:20:00 Avocado Small f 4 5 7 24 2
  2122. 35 2021-06-30 23:20:00 Capsicum Red NZ f 1 2.99 7 25 2
  2123. 36 2021-06-30 23:20:00 Carrots Loose f 1.261 2 1 25 2
  2124. 93 2021-08-19 01:56:00 Capsicum Yellow f 3 5 7 25 2
  2125. 103 2021-08-19 01:08:00 Avocado Loose f 2 2.50 7 24 1
  2126. 113 2021-08-27 05:14:00 Loose Avocado f 2 2.3 7 24 1
  2127. 134 2021-11-15 19:44:00 Capsicum Odd Bunch 750g f 750 5 2 25 1
  2128. 174 2021-11-29 20:45:00 Avocado Loose f 2 2.50 7 24 1
  2129. 175 2021-11-29 20:45:00 Capsicum Odd Bunch 750g f 750 5 2 25 1
  2130. 191 2021-10-30 23:00:00 Local Avocado f 1 1.5 7 24 7
  2131. 204 2021-12-04 23:11:00 Pams Flour Wholemeal 1.5 kg f 1.50 1.98 1 22 2
  2132. 232 2021-12-12 22:19:00 Capsicum Odd Bunch 750g f 750 5 2 25 1
  2133. 258 2021-12-20 23:18:00 Avocado Small f 4 2 7 24 2
  2134. 49 2021-07-29 06:26:00 Pumpkin Butternut Whole Organic t 1 3.50 7 26 1
  2135. 50 2021-08-05 05:33:00 Ceres Organic Apple Cider Vinegar 750mL t 750 7.89 4 27 2
  2136. 53 2021-08-05 05:33:00 T/Colledge Vanilla Exract 100 mL FairTrade t 100 8.99 4 28 2
  2137. 54 2021-08-05 05:33:00 NZ Parore (Black Snapper) Whole f 1.076 9.46 1 29 2
  2138. 55 2021-08-05 05:33:00 NZ Snapper Heads f 0.652 4.56 1 30 2
  2139. 59 2021-08-05 05:33:00 Beetroot Conventional f 0.276 0.96 1 32 2
  2140. 1461 2023-04-10 04:02:00 Arnotts Cruskits Crispbread Low Fat 250g f 250 5.69 2 226 13
  2141. 61 2021-08-05 05:33:00 Mango Mexico Large f 1 1.89 7 31 2
  2142. 1462 2023-04-10 04:02:00 Bananas Conventional f 0.38 1.42 1 4 13
  2143. 64 2021-08-05 05:33:00 Ben N Jerrys Choc Chip Cookie Dough Ice Cream 458mL f 458 5 4 33 2
  2144. 91 2021-08-19 01:56:00 NZ Snapper Heads x2 f 0.430 3.01 1 30 2
  2145. 179 2021-11-22 23:01:00 NZ Snapper Heads f 1.17 5.27 1 30 9
  2146. 181 2021-11-15 23:00:00 NZ Snapper Heads f 1.322 5.95 1 30 9
  2147. 185 2021-11-10 23:00:00 NZ Snapper Heads f 1 4.5 1 30 9
  2148. 203 2021-12-04 23:11:00 Ceres Organic Apple Cider Vinegar 750mL t 1500 10 4 27 2
  2149. 213 2021-12-12 23:00:00 NZ Snapper Heads x2 f 1.59 7.16 1 30 9
  2150. 220 2021-12-12 22:19:00 Beetroot Conventional f 0.117 0.560 1 32 1
  2151. 253 2021-12-20 23:18:00 T/Colledge Vanilla Exract 100 mL FairTrade t 100.00 8.99 4 28 2
  2152. 256 2021-12-20 23:18:00 Whole Snapper Leigh, 1.225 kg after gutted f 1.456 23.28 1 29 2
  2153. 260 2021-12-20 23:18:00 Beetroot Conventional f 0.296 1.27 1 32 2
  2154. 316 2022-01-07 01:28:00 Beetroot Conventional f 0.172 0.83 1 32 1
  2155. 329 2022-01-11 02:54:00 NZ Snapper Heads f 0.836 5.84 1 30 2
  2156. 335 2022-01-11 02:54:00 Mango Peru f 3 5 7 31 2
  2157. 347 2021-10-22 00:02:00 Beetroot Conventional f 0.617 3.09 1 32 1
  2158. 373 2021-10-31 01:06:00 T/Colledge Vanilla Exract 100 mL FairTrade t 100.00 8.99 4 28 2
  2159. 382 2021-12-31 03:00:00 Beetroot Conventional f 0.356 1.95 1 32 1
  2160. 470 2022-01-31 23:07:00 NZ Snapper Heads f 1.344 9.39 1 30 2
  2161. 494 2022-02-22 00:00:00 NZ Snapper Heads f 1.042 7.28 1 30 2
  2162. 499 2022-02-22 00:00:00 Beetroot Conventional f 0.386 1.66 1 32 2
  2163. 501 2022-02-22 00:00:00 Mango Peru f 3 4.5 7 31 2
  2164. 571 2022-03-07 21:11:00 Mango Peru f 1 1.89 7 31 2
  2165. 636 2022-04-05 02:37:00 Beetroot Conventional f 0.255 1.27 1 32 18
  2166. 679 2022-04-20 02:34:00 NZ Snapper Heads f 0.994 6.95 1 30 2
  2167. 697 2022-05-10 22:22:00 T/Colledge Vanilla Exract 100 mL FairTrade t 200 19.18 4 28 2
  2168. 65 2021-08-05 05:33:00 Pams Frozen Peas, Garden 1kg f 1 2.69 1 34 2
  2169. 66 2021-08-05 05:33:00 Eclipse Cheese Tasty 1 kg f 1 11.99 1 35 2
  2170. 67 2021-08-05 05:33:00 Bird N Barrow Free Range Chicken Whole Short Date Special f 1.7 10.19 1 36 2
  2171. 69 2021-06-21 00:00:00 Dreamview Raw Milk 1L f 2 6 3 37 5
  2172. 70 2021-06-28 00:00:00 Dreamview Raw Milk 1L f 2 6 3 37 5
  2173. 71 2021-07-05 00:00:00 Dreamview Raw Milk 1L f 2 6 3 37 5
  2174. 72 2021-07-12 00:00:00 Dreamview Raw Milk 1L f 2 6 3 37 5
  2175. 73 2021-07-19 00:00:00 Dreamview Raw Milk 1L f 2 6 3 37 5
  2176. 74 2021-07-26 00:00:00 Dreamview Raw Milk 1L f 2 6 3 37 5
  2177. 75 2021-07-28 00:00:00 Dreamview Cream 500mL f 0.5 6 3 38 5
  2178. 76 2021-08-02 00:00:00 Dreamview Raw Milk 1L f 2 6 3 37 5
  2179. 79 2021-08-11 23:07:00 Good Bugs Ginger Ninja Kimchi f 500 16 2 39 7
  2180. 80 2021-08-11 23:07:00 Local Spray Free Parsnips f 460 3 2 40 7
  2181. 82 2021-08-12 01:33:00 Macro Organic Tomatoes Diced NAS 400g t 2000 7.50 2 41 1
  2182. 101 2021-08-19 01:08:00 Macro Organic Tomatoes Diced NAS 400g t 1600 6 2 41 1
  2183. 85 2021-08-12 01:33:00 Mainland Cheese Organic 500g t 1 21.00 1 42 1
  2184. 1424 2023-03-25 22:07:00 Mexicano Corn Chips Sourcream 170g f 170 2.69 2 56 13
  2185. 90 2021-08-19 01:56:00 NZ Salmon Frames (t/p) x1 f 0.498 4.98 1 43 2
  2186. 97 2021-08-19 01:56:00 Mainland Cheese Organic 500g t 500 10.39 2 42 2
  2187. 98 2021-08-19 01:56:00 NZ Organic Chicken Butterfly Bostocks Reduced t 1.19 12.48 1 44 2
  2188. 117 2021-07-14 22:30:00 Exotic Food Panang Curry Paste f 200 3.95 2 45 1
  2189. 121 2021-08-25 23:34:00 Cucumber Green f 1 4.49 7 46 1
  2190. 123 2021-07-20 00:18:00 Fresh Ginger f 0.251 3.76 1 47 2
  2191. 1447 2023-04-18 00:00:00 Albert's Eggs Size J 20pk f 1.445 16.5 1 173 11
  2192. 141 2021-11-15 20:10:00 Hoco Coconut Water 1L f 1 2.99 3 53 2
  2193. 144 2021-07-02 00:00:00 Organic Beef Chuck t 0.4 10 1 51 8
  2194. 145 2021-07-02 00:00:00 Organic Beef Blade Steak t 0.8 20 1 52 8
  2195. 177 2021-11-22 23:00:00 Organic Beef Blade Steak t 0.4 11 1 52 8
  2196. 178 2021-11-22 23:00:00 Organic Beef Chuck t 0.40 11 1 51 8
  2197. 183 2021-11-10 23:00:00 Organic Beef Chuck t 0.40 11.40 1 51 8
  2198. 193 2021-08-05 00:00:00 Organic Beef Blade Steak t 0.4 11 1 52 8
  2199. 194 2021-08-05 00:00:00 Organic Beef Chuck t 0.40 11 1 51 8
  2200. 273 2021-11-10 23:48:00 WW Coconut Water 1L f 3 10.5 3 53 1
  2201. 279 2021-11-03 23:13:00 WW Coconut Water 1L f 3 10.50 3 53 1
  2202. 352 2021-10-22 00:02:00 Delmaine Sliced Jalapenos 280g f 280 3 2 50 1
  2203. 398 2021-12-31 03:00:00 WW Coconut Water 1L f 4 14 3 53 1
  2204. 431 2021-12-21 23:00:00 Organic Beef Chuck t 0.8 24 1 51 8
  2205. 458 2022-02-01 00:24:00 Organic Beef Chuck 400g t 0.8 21.60 1 51 8
  2206. 486 2022-02-22 00:35:00 WW Coconut Water 1L f 1 3.5 3 53 1
  2207. 491 2022-02-22 00:00:00 Hoco Coconut Water 1L f 1 3.69 3 53 2
  2208. 558 2022-02-28 22:11:00 WW Coconut Water 1L f 1 3.5 3 53 1
  2209. 623 2022-03-28 22:16:00 Garlic NZ f 0.08 2.4 1 49 18
  2210. 628 2022-04-05 01:06:00 Organic Beef Chuck 400g t 0.8 24 1 51 8
  2211. 665 2022-04-20 00:00:00 Beef Chuck from Freezer t 0.4 10.64 1 51 8
  2212. 666 2022-04-20 00:00:00 Spray Free Local Garlic f 0.037 2 1 49 8
  2213. 730 2022-05-24 21:00:00 WW Coconut Water 1L f 2 4 3 53 1
  2214. 825 2022-07-07 23:06:00 NZ Beef Chuck Steak Reduced f 0.63 9.82 1 51 2
  2215. 1016 2022-08-26 00:00:00 Garlic NZ f 0.06 2.4 1 49 1
  2216. 1026 2022-09-03 00:00:00 Spray Free Local Garlic f 3 6 7 49 8
  2217. 1027 2022-09-03 00:00:00 Organic Beef Chuck 400g t 0.8 24 1 51 8
  2218. 1069 2022-10-30 22:22:00 Garlic NZ f 0.022 0.88 1 49 1
  2219. 1144 2022-11-20 21:15:00 CD Beef Chuck Steak Reduced f 0.683 12.62 1 51 1
  2220. 1169 2022-11-29 20:30:00 Garlic NZ f 0.055 2.2 1 49 1
  2221. 1194 2022-12-20 20:44:00 Garlic NZ f 0.102 4.89 1 49 1
  2222. 1199 2022-12-20 20:44:00 CD Beef Chuck Steak Reduced f 0.613 10.90 1 51 1
  2223. 1220 2022-12-11 22:24:00 CD Beef Chuck Diced 340g Reduced f 1.02 20.25 1 51 1
  2224. 1253 2022-12-26 01:58:00 Garlic NZ f 0.047 2.26 1 49 1
  2225. 129 2021-11-15 19:44:00 Chicken Thighs, Conventional, Reduced f 0.889 7.46 1 54 1
  2226. 133 2021-11-15 19:44:00 Tongariro Natural Spring Water 5L f 5 3.90 3 55 1
  2227. 137 2021-11-15 19:44:00 Mexicano Corn Chips Natural 300g f 600 4.90 2 56 1
  2228. 149 2021-11-23 00:42:00 Waitoa Free Range Chicken Thigh Fillet, Reduced f 0.532 8.78 1 58 1
  2229. 150 2021-11-23 00:42:00 Waitoa Free Range Chicken Thigh Fillet, Reduced f 0.546 9.01 1 58 1
  2230. 151 2021-11-23 00:42:00 Waitoa Free Range Chicken Thigh Fillet, Reduced f 0.542 8.94 1 58 1
  2231. 158 2021-11-23 00:42:00 WW Tuna Lemon Pepper 95 g f 95 1.3 2 57 1
  2232. 159 2021-11-23 00:42:00 WW Tuna in Springwater 95 g f 570.00 7.8 2 57 1
  2233. 164 2021-11-29 20:45:00 Macro Free Range Chicken Thigh Fillet, Reduced f 0.49 6.49 1 58 1
  2234. 165 2021-11-29 20:45:00 Macro Free Range Chicken Thigh Fillet, Reduced f 0.546 7.47 1 58 1
  2235. 166 2021-11-29 20:45:00 Macro Free Range Chicken Thigh Fillet, Reduced f 0.474 6.36 1 58 1
  2236. 1425 2023-03-29 02:45:00 ETA Ripples Ready Salted 150g f 450.00 6 2 149 13
  2237. 1448 2023-04-03 00:00:00 TOFS Shoulder Chops 450g t 0.95 32 1 200 8
  2238. 202 2021-07-21 00:00:00 Brewer's Yeast, from Bulk Bin f 109 5.44 2 61 4
  2239. 211 2021-12-04 23:11:00 OSM bars chocolate 6 pieces 507g NET f 12 25.78 7 67 2
  2240. 225 2021-12-12 22:19:00 Raglan Coconut Yoghurt Vanilla 700g t 700 12 2 69 1
  2241. 226 2021-12-12 22:19:00 CD Flour Plain 1.5 kg f 1.5 2 1 70 1
  2242. 231 2021-12-12 22:19:00 Ceres Organic Brown Rice Basmati 500 g t 500 5.79 2 71 1
  2243. 1449 2023-04-03 00:00:00 TOFS Neck Chops t 0.618 17.3 1 223 8
  2244. 1450 2023-04-03 00:00:00 Organic Beef Chuck 400g t 0.4 12.5 1 51 8
  2245. 235 2021-10-09 23:00:00 Almonds, Transitional, 2.5 kg bag f 2.5 56.66 1 62 6
  2246. 236 2021-10-09 23:00:00 Quinoa, Tricolor, bulk 3 kg bag t 3 28.53 1 63 6
  2247. 240 2021-10-09 23:00:00 Hemp Hearts, stock t 1 23.86 1 66 6
  2248. 270 2021-11-10 23:48:00 Macro Free Range Chicken Drumsticks f 0.957 9.47 1 79 1
  2249. 283 2021-11-03 23:13:00 Macro Free Range Chicken Mince Reduced f 450 7 2 80 1
  2250. 303 2021-11-11 01:02:00 Chicken Mince, reduced f 0.518 7.99 1 81 2
  2251. 311 2021-12-27 03:50:00 Peaches Yellow Flesh f 0.46 2.76 1 82 2
  2252. 325 2022-01-11 02:54:00 John West Pink Salmon Canned 210g f 420.00 5 2 83 2
  2253. 397 2021-12-31 03:00:00 Doritos corn chips original 170g f 340.00 4 2 128 1
  2254. 419 2022-01-17 20:17:00 Eggplant Odd Bunch 500g f 500 2.99 2 106 1
  2255. 421 2022-01-17 20:17:00 M&Ms Minis Tube 35g f 35 1.49 2 107 1
  2256. 423 2022-01-17 20:17:00 Doritos corn chips original 170g f 170 2 2 128 1
  2257. 1426 2023-04-02 03:51:00 Red Seal Lemon and Lime 20pk f 20 1.49 7 221 23
  2258. 1427 2023-04-02 03:51:00 Red Seal Peach & Pineapple Tea 20pk f 20.00 1.4900 7 221 23
  2259. 592 2022-03-15 00:29:00 Sigol Seaweed Snack Olive Oil 4g 3pk f 12.00 2.2 2 131 1
  2260. 610 2022-03-22 22:08:00 Bird n Barrow FR Chicken Whole Bag 1.7kg f 1.7 16.99 1 133 2
  2261. 612 2022-03-28 21:49:00 CD Chicken Nibbles Med Reduced f 1.1 9.74 1 134 1
  2262. 860 2022-06-08 00:00:00 French Green Lentils 3.5kg t 3.5 29.15 1 168 6
  2263. 862 2022-06-08 00:00:00 Bulk Adzuki Beans 3.5kg t 3.5 31.75 1 169 6
  2264. 906 2022-08-09 22:45:00 Macro Free Range Chicken Stir Fry 450g f 0.45 9.63 1 170 1
  2265. 911 2022-07-25 03:40:00 WW Canned Beetroot Baby Whole 450g f 450 2 2 171 1
  2266. 925 2022-08-11 22:17:00 Half Celery Reduced f 0.5 2.49 7 172 2
  2267. 945 2022-06-22 00:00:00 Organic Brown Linseeds Chantal 1 kg t 1 10 1 174 6
  2268. 959 2022-09-15 22:30:00 Chelsea Molasses Black Strap 500g f 500 4.7 2 175 1
  2269. 988 2022-08-31 23:36:00 Macro Org Olive Oil Spanish Extra Virgin 500mL t 1 14 3 177 1
  2270. 990 2022-08-31 23:36:00 Cookie Time 9 Pack Choc Chip 630g f 630 11 2 178 1
  2271. 1003 2022-09-24 23:03:00 WW Frozen Cherries 500g f 0.5 6 1 179 1
  2272. 1031 2022-10-23 04:34:00 Red Seal VitaFizz Magnesium 13s f 13 7 7 180 1
  2273. 1038 2022-10-21 06:04:00 Cookie Time 9 Pack Choc Chip 630g f 630.00 11.0000 2 178 1
  2274. 1044 2022-10-27 00:20:00 Juicies Tropical Frozen 10x100mL f 1000 6.9 4 181 1
  2275. 1048 2022-10-27 00:20:00 Tasti Strawberry & Beet Balls 207g f 207 5.5 2 182 1
  2276. 1053 2022-09-27 21:17:00 Fragata Marinated Olive 120g f 120 4 2 183 1
  2277. 1059 2022-10-27 21:29:00 Exotic Foods Green Chilli Whole 190g f 190 3.89 2 184 2
  2278. 1060 2022-10-27 21:29:00 Tasti Ready to Eat Figs 250g f 250 6.49 2 185 2
  2279. 1075 2022-10-30 22:22:00 Jack Links Jerky Teriyaki Beef 50g f 50 4.4 2 186 1
  2280. 1095 2022-11-13 06:22:00 Bitemeat Origianl Biltong 50g f 50.00 5.3 2 186 1
  2281. 1096 2022-11-13 06:22:00 Jack Links Jerky Original Beef 50g f 50.00 5.3 2 186 1
  2282. 1105 2022-11-06 22:50:00 Value Apricot Halves Syrup 410g f 1230.00 3.57 2 191 2
  2283. 1115 2022-11-06 22:50:00 Courgettes Green f 0.301 2.56 1 192 2
  2284. 1463 2023-04-27 06:40:00 Fresh Ginger f 0.327 5.39 1 47 1
  2285. 1125 2022-11-22 21:40:00 Chickpeas Organic 1 kg t 1 8.49 1 176 4
  2286. 1464 2023-04-27 06:40:00 Apples Royal Gala f 0.147 0.66 1 9 1
  2287. 1465 2023-04-27 06:40:00 Essentials Coconut Cream 400 mL f 1.60 6 3 15 1
  2288. 1466 2023-04-27 06:40:00 Kapiti Ice Cream Triple Chocolate 1L f 1 10.5 3 33 1
  2289. 1467 2023-04-27 06:40:00 CD rice crackers salt and vinegar 100g f 100 1.5 2 196 1
  2290. 1126 2022-11-22 21:40:00 Urja Kassori Methi 50g f 50 3.5 2 193 4
  2291. 1128 2022-11-22 21:40:00 Chickpeas Bulk Bin f 0.345 2.12 1 176 4
  2292. 1152 2022-11-20 21:15:00 Red Seal VitaFizz Magnesium 13s f 78.00 45 7 180 1
  2293. 1156 2022-11-20 21:15:00 Jack Links Jerky Original Beef 50g f 100 8.8 2 186 1
  2294. 1160 2022-11-20 21:15:00 Watties Sliced Beetroot 450g f 450.00 1.8 2 171 1
  2295. 1176 2022-11-29 20:30:00 Jack Links Jerky Original Beef 50g f 100 8 2 186 1
  2296. 1180 2022-12-01 22:01:00 Jack Links Jerky Original Beef 50g f 100 7 2 186 2
  2297. 1185 2022-12-01 23:00:00 French Green Lentils 3.5kg t 3.50 29.1500 1 168 6
  2298. 1202 2022-12-20 20:44:00 Cookie Time 9 Pack Choc Chip 630g f 630.00 12 2 178 1
  2299. 1134 2022-11-20 03:43:00 Walnut Halves 140g f 140 3.79 2 194 23
  2300. 1135 2022-11-20 03:43:00 Nature Valley Crunchy Peanutbutter bars 6pk twin f 252 2.5 2 195 23
  2301. 1136 2022-11-20 03:43:00 Tribe Organics Sweet Chilli Crackers 100g t 100 1.29 2 196 23
  2302. 1137 2022-11-20 03:43:00 Tribe Organics Rice Crackers 100g t 200 2.58 2 196 23
  2303. 1138 2022-11-12 23:00:00 Amilo Ryecorn unmillled 25kg t 25 72.5 1 197 24
  2304. 1145 2022-11-20 21:15:00 CD Beef Topside Steak reduced f 0.526 11 1 198 1
  2305. 1162 2022-11-20 21:15:00 WW Chunky Salsa Mild 375g f 375 4 2 199 1
  2306. 1197 2022-12-20 20:44:00 Lamb Shoulder Chips 2 piece REDUCED f 0.351 5.21 1 200 1
  2307. 1198 2022-12-20 20:44:00 Lamb Shoulder Chips 2 piece REDUCED f 0.408 6.06 1 200 1
  2308. 1206 2022-12-20 20:44:00 Bouton D Or Feta Garlic Cumin 150g f 150 4 2 201 1
  2309. 1225 2022-11-04 00:07:00 WW Peanuts Salted 500g f 0.5 4.4 1 202 1
  2310. 1241 2023-01-03 02:02:00 CD Lamb Shoulder Chops Reduced f 0.779 12.7 1 200 1
  2311. 1245 2023-02-07 21:54:00 Rice Pops bulk bin f 0.068 0.67 1 203 4
  2312. 1250 2022-12-26 01:58:00 CD Chicken Tenderloins Small f 0.668 10.23 1 204 1
  2313. 1251 2022-12-26 01:58:00 CD Chicken Tenderloins Small f 0.618 9.47 1 204 1
  2314. 1252 2022-12-26 01:58:00 CD Chicken Tenderloins Small f 0.619 9.49 1 204 1
  2315. 1269 2023-02-01 23:00:00 CD Corned Silverside grass fed nz beef 64%beef f 1.537 16.75 1 205 1
  2316. 1273 2023-02-01 23:00:00 CD rice crackers salt and vinegar 100g f 100 1.5 2 196 1
  2317. 1282 2023-01-09 22:11:00 CD Lamb Shoulder Chops 4 piece f 0.886 14.48 1 200 1
  2318. 1295 2023-01-09 22:11:00 Sunsweet Prunes 400g f 0.4 8.29 1 206 1
  2319. 1296 2023-01-09 22:11:00 Keri Premium Orange Juice 1L f 2 5.5 3 207 1
  2320. 1298 2023-01-09 22:11:00 Ward Mckenzie Arrowroot Pwdr 175g f 175 3.6 2 208 1
  2321. 1299 2023-01-09 22:11:00 CD rice crackers salt and vinegar 100g f 200 3 2 196 1
  2322. 1304 2023-01-09 22:11:00 CD Roasted Salted Mixed Nuts 400g f 400 11 2 209 1
  2323. 1305 2023-01-09 22:11:00 ME Cashews Roasted & Salted 400g f 400 10 2 210 1
  2324. 1310 2023-01-09 22:11:00 WholeEarth Monkfruit Sweetener Gran 200g f 200 10.5 2 211 1
  2325. 1314 2023-01-09 22:11:00 Meadow Fresh Milk Standard 600 mL f 0.6 2.38 3 212 1
  2326. 1329 2023-02-13 23:15:00 Chelsea Soft Brown Sugar 500g f 0.5 2 1 213 1
  2327. 1330 2023-02-13 23:15:00 WW Peanuts Salted 200g f 0.2 2 1 202 1
  2328. 1334 2023-02-13 23:15:00 Macro Organic White Med Grain Rice 1kg t 1 5.5 1 214 1
  2329. 1340 2023-02-23 21:58:00 Pams Rice Snaps 460g f 0.46 3.59 1 203 2
  2330. 1359 2023-02-23 21:58:00 NZ Mutton Leg Chops f 0.854 10.25 1 215 2
  2331. 1370 2023-02-17 04:00:00 McCains Frozen Baby Green Beans f 0.5 3.19 1 216 13
  2332. 1373 2023-03-07 23:24:00 CD Corned Silverside grass fed nz beef 64%beef f 1.264 15.04 1 205 1
  2333. 1374 2023-03-07 23:24:00 CD Lamb Shoulder Chops Reduced f 0.748 9.14 1 200 1
  2334. 1384 2023-03-04 22:10:00 Macs Ginger Beer 4pk f 4 5.99 7 217 1
  2335. 1385 2023-03-04 22:10:00 Value Salad Green 120g f 120 4.3 2 218 1
  2336. 1393 2023-03-15 20:25:00 WW Thin Rice Cracker BBQ 100g f 100 1.3 2 196 1
  2337. 1428 2023-02-27 23:00:00 Albert's Eggs Size 7 30pk 1860g f 1860 17.50 2 173 11
  2338. \.
  2339. --
  2340. -- Data for Name: units; Type: TABLE DATA; Schema: public; Owner: das
  2341. --
  2342. COPY public.units (id, name) FROM stdin;
  2343. 1 kg
  2344. 2 g
  2345. 3 L
  2346. 4 mL
  2347. 7 Pieces
  2348. 6 Bunches
  2349. 5 Bags
  2350. \.
  2351. --
  2352. -- Name: categories categories_name_key; Type: CONSTRAINT; Schema: public; Owner: das
  2353. --
  2354. ALTER TABLE ONLY public.categories
  2355. ADD CONSTRAINT categories_name_key UNIQUE (name);
  2356. --
  2357. -- Name: categories categories_pkey; Type: CONSTRAINT; Schema: public; Owner: das
  2358. --
  2359. ALTER TABLE ONLY public.categories
  2360. ADD CONSTRAINT categories_pkey PRIMARY KEY (id);
  2361. --
  2362. -- Name: conversions conversion_check; Type: CHECK CONSTRAINT; Schema: public; Owner: das
  2363. --
  2364. ALTER TABLE public.conversions
  2365. ADD CONSTRAINT conversion_check CHECK ((id = public.szudzik_encode(_from, _to))) NOT VALID;
  2366. --
  2367. -- Name: conversions_complex conversions_complex_check; Type: CHECK CONSTRAINT; Schema: public; Owner: das
  2368. --
  2369. ALTER TABLE public.conversions_complex
  2370. ADD CONSTRAINT conversions_complex_check CHECK ((id = public.szudzik_encode(_from, _to))) NOT VALID;
  2371. --
  2372. -- Name: conversions_complex conversions_complex_pkey; Type: CONSTRAINT; Schema: public; Owner: das
  2373. --
  2374. ALTER TABLE ONLY public.conversions_complex
  2375. ADD CONSTRAINT conversions_complex_pkey PRIMARY KEY (id, product_id);
  2376. --
  2377. -- Name: conversions conversions_pkey; Type: CONSTRAINT; Schema: public; Owner: das
  2378. --
  2379. ALTER TABLE ONLY public.conversions
  2380. ADD CONSTRAINT conversions_pkey PRIMARY KEY (id);
  2381. --
  2382. -- Name: groups groups_name_key; Type: CONSTRAINT; Schema: public; Owner: das
  2383. --
  2384. ALTER TABLE ONLY public.groups
  2385. ADD CONSTRAINT groups_name_key UNIQUE (name);
  2386. --
  2387. -- Name: groups groups_pkey; Type: CONSTRAINT; Schema: public; Owner: das
  2388. --
  2389. ALTER TABLE ONLY public.groups
  2390. ADD CONSTRAINT groups_pkey PRIMARY KEY (id);
  2391. --
  2392. -- Name: products products_name_key; Type: CONSTRAINT; Schema: public; Owner: das
  2393. --
  2394. ALTER TABLE ONLY public.products
  2395. ADD CONSTRAINT products_name_key UNIQUE (name);
  2396. --
  2397. -- Name: products products_pkey; Type: CONSTRAINT; Schema: public; Owner: das
  2398. --
  2399. ALTER TABLE ONLY public.products
  2400. ADD CONSTRAINT products_pkey PRIMARY KEY (id);
  2401. --
  2402. -- Name: stores stores_name_key; Type: CONSTRAINT; Schema: public; Owner: das
  2403. --
  2404. ALTER TABLE ONLY public.stores
  2405. ADD CONSTRAINT stores_name_key UNIQUE (name);
  2406. --
  2407. -- Name: stores stores_pkey; Type: CONSTRAINT; Schema: public; Owner: das
  2408. --
  2409. ALTER TABLE ONLY public.stores
  2410. ADD CONSTRAINT stores_pkey PRIMARY KEY (id);
  2411. --
  2412. -- Name: tags_map tags_map_unique; Type: CONSTRAINT; Schema: public; Owner: das
  2413. --
  2414. ALTER TABLE ONLY public.tags_map
  2415. ADD CONSTRAINT tags_map_unique UNIQUE (tag_id, transaction_id);
  2416. --
  2417. -- Name: tags tags_name_key; Type: CONSTRAINT; Schema: public; Owner: das
  2418. --
  2419. ALTER TABLE ONLY public.tags
  2420. ADD CONSTRAINT tags_name_key UNIQUE (name);
  2421. --
  2422. -- Name: tags tags_pkey; Type: CONSTRAINT; Schema: public; Owner: das
  2423. --
  2424. ALTER TABLE ONLY public.tags
  2425. ADD CONSTRAINT tags_pkey PRIMARY KEY (id);
  2426. --
  2427. -- Name: transactions transactions_pkey; Type: CONSTRAINT; Schema: public; Owner: das
  2428. --
  2429. ALTER TABLE ONLY public.transactions
  2430. ADD CONSTRAINT transactions_pkey PRIMARY KEY (id);
  2431. --
  2432. -- Name: units units_pkey; Type: CONSTRAINT; Schema: public; Owner: das
  2433. --
  2434. ALTER TABLE ONLY public.units
  2435. ADD CONSTRAINT units_pkey PRIMARY KEY (id);
  2436. --
  2437. -- Name: units units_unique_name; Type: CONSTRAINT; Schema: public; Owner: das
  2438. --
  2439. ALTER TABLE ONLY public.units
  2440. ADD CONSTRAINT units_unique_name UNIQUE (name);
  2441. --
  2442. -- Name: transactions_idx_product_id; Type: INDEX; Schema: public; Owner: das
  2443. --
  2444. CREATE INDEX transactions_idx_product_id ON public.transactions USING btree (product_id);
  2445. --
  2446. -- Name: transactions_idx_store_id; Type: INDEX; Schema: public; Owner: das
  2447. --
  2448. CREATE INDEX transactions_idx_store_id ON public.transactions USING btree (store_id);
  2449. --
  2450. -- Name: transactions_idx_unit_id; Type: INDEX; Schema: public; Owner: das
  2451. --
  2452. CREATE INDEX transactions_idx_unit_id ON public.transactions USING btree (unit_id);
  2453. --
  2454. -- Name: products fk_category_id; Type: FK CONSTRAINT; Schema: public; Owner: das
  2455. --
  2456. ALTER TABLE ONLY public.products
  2457. ADD CONSTRAINT fk_category_id FOREIGN KEY (category_id) REFERENCES public.categories(id);
  2458. --
  2459. -- Name: conversions fk_from; Type: FK CONSTRAINT; Schema: public; Owner: das
  2460. --
  2461. ALTER TABLE ONLY public.conversions
  2462. ADD CONSTRAINT fk_from FOREIGN KEY (_from) REFERENCES public.units(id);
  2463. --
  2464. -- Name: conversions_complex fk_from; Type: FK CONSTRAINT; Schema: public; Owner: das
  2465. --
  2466. ALTER TABLE ONLY public.conversions_complex
  2467. ADD CONSTRAINT fk_from FOREIGN KEY (_from) REFERENCES public.units(id);
  2468. --
  2469. -- Name: categories fk_group_id; Type: FK CONSTRAINT; Schema: public; Owner: das
  2470. --
  2471. ALTER TABLE ONLY public.categories
  2472. ADD CONSTRAINT fk_group_id FOREIGN KEY (group_id) REFERENCES public.groups(id);
  2473. --
  2474. -- Name: transactions fk_product_id; Type: FK CONSTRAINT; Schema: public; Owner: das
  2475. --
  2476. ALTER TABLE ONLY public.transactions
  2477. ADD CONSTRAINT fk_product_id FOREIGN KEY (product_id) REFERENCES public.products(id);
  2478. --
  2479. -- Name: conversions_complex fk_product_id; Type: FK CONSTRAINT; Schema: public; Owner: das
  2480. --
  2481. ALTER TABLE ONLY public.conversions_complex
  2482. ADD CONSTRAINT fk_product_id FOREIGN KEY (product_id) REFERENCES public.products(id);
  2483. --
  2484. -- Name: transactions fk_store_id; Type: FK CONSTRAINT; Schema: public; Owner: das
  2485. --
  2486. ALTER TABLE ONLY public.transactions
  2487. ADD CONSTRAINT fk_store_id FOREIGN KEY (store_id) REFERENCES public.products(id);
  2488. --
  2489. -- Name: tags_map fk_tag_id; Type: FK CONSTRAINT; Schema: public; Owner: das
  2490. --
  2491. ALTER TABLE ONLY public.tags_map
  2492. ADD CONSTRAINT fk_tag_id FOREIGN KEY (tag_id) REFERENCES public.tags(id);
  2493. --
  2494. -- Name: conversions fk_to; Type: FK CONSTRAINT; Schema: public; Owner: das
  2495. --
  2496. ALTER TABLE ONLY public.conversions
  2497. ADD CONSTRAINT fk_to FOREIGN KEY (_to) REFERENCES public.units(id);
  2498. --
  2499. -- Name: conversions_complex fk_to; Type: FK CONSTRAINT; Schema: public; Owner: das
  2500. --
  2501. ALTER TABLE ONLY public.conversions_complex
  2502. ADD CONSTRAINT fk_to FOREIGN KEY (_to) REFERENCES public.units(id);
  2503. --
  2504. -- Name: tags_map fk_transaction_id; Type: FK CONSTRAINT; Schema: public; Owner: das
  2505. --
  2506. ALTER TABLE ONLY public.tags_map
  2507. ADD CONSTRAINT fk_transaction_id FOREIGN KEY (transaction_id) REFERENCES public.transactions(id);
  2508. --
  2509. -- Name: transactions fk_unit_id; Type: FK CONSTRAINT; Schema: public; Owner: das
  2510. --
  2511. ALTER TABLE ONLY public.transactions
  2512. ADD CONSTRAINT fk_unit_id FOREIGN KEY (unit_id) REFERENCES public.units(id);
  2513. --
  2514. -- PostgreSQL database dump complete
  2515. --